From owner-freebsd-questions Sun Oct 15 0: 5:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 0F92637B66D for ; Sun, 15 Oct 2000 00:05:17 -0700 (PDT) Received: from d.tracker ([216.191.73.50]) by www3.pacific-pages.com (8.8.5) id BAA03785; Sun, 15 Oct 2000 01:04:55 -0600 (MDT) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id DAA10013; Sun, 15 Oct 2000 03:00:55 GMT (envelope-from david) Date: Sun, 15 Oct 2000 02:43:05 +0000 From: David Banning To: media@mail1.nai.net Cc: Kent Stewart , questions@FreeBSD.ORG Subject: Re: print plain text with apsfilter Message-ID: <20001015024304.A9935@www3.pacific-pages.com> Reply-To: David Banning References: <39E79870.1D880A8F@urx.com>; <200010131856.SAA18493@d.tracker> <39E79870.1D880A8F@urx.com> <20001014022644.A5980@www3.pacific-pages.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from media@ct1.nai.net on Sat, Oct 14, 2000 at 04:09:50PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > My problem is that gostscript won't run. Apparently it is looking for > libXaw.so.6 in usr/libexec/ld-elf.so.1 , but it's in > usr/compat/linux/usr/i486-linux-libc5/lib , and I don't know how to make it > look there instead. Any ideas?? couldn't you just # ldconfig -m /usr/compat/linux/usr/i486-linux-libc5/lib and for reboot enter /usr/compat/linux/usr/i486-linux-libc5/lib in rc.conf in the ldconfig section? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 0:34:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 818E737B503 for ; Sun, 15 Oct 2000 00:34:14 -0700 (PDT) Received: (qmail 1695 invoked by uid 100); 15 Oct 2000 07:34:13 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14825.24053.455214.811803@guru.mired.org> Date: Sun, 15 Oct 2000 02:34:13 -0500 (CDT) To: questions@freebsd.org Subject: Dynamic DNS server on freebsd? X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, the web site didn't turn up anything. I'd like to set up a dynamic DNS server on a FreeBSD box. If you're not familiar with the concept, A machine that boots with a dynamic IP addresses runs a client whenever the IP address changes, thus causing the DNS server to change it's records so that the name for that machine now maps to the new ip address. Any pointers - especially to software - greatly appreciated. Thanx, ; Sun, 15 Oct 2000 00:36:41 -0700 (PDT) Message-ID: <20001015073641.15276.qmail@web6304.mail.yahoo.com> Received: from [64.161.130.86] by web6304.mail.yahoo.com; Sun, 15 Oct 2000 00:36:41 PDT Date: Sun, 15 Oct 2000 00:36:41 -0700 (PDT) From: Christian Lacunza Subject: Re: How to compile and link a lib for use with dlopen() ? To: Nicolai Petri Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi Nicolai. try this code: -------------------- test.cpp -------------------- #include class A { }; extern "C" { A* GetNewA() /* This function I want exported */ { cout << "returning a new A" << endl; return new A; } }; -------------------- use.cpp -------------------- #include class A; typedef A* (func_t)(); int main() { void* h = dlopen( "./test.so.1", RTLD_NOW ); func_t* GetA = (func_t*) dlsym( h, "GetNewA" ); A* test = GetA(); }; with these commands: $ CC -fPIC -c test.cpp $ CC -shared -o test.so.1 test.o $ CC -o use use.cpp $ ./use returning a new A $ -- christian. > I`m porting some software from Windows (I know it....) and it is using > external dll`s that`s dynamic loaded with LoadModule() and GetProcAddr(). > The Unix equivalent i think is dlopen() and dlsym(). > > My question is how to compile and link the following 2 pieces of code to > make it work. > > The code is just out of the head written and just as an example... It can`t > compile, > > I`ve tried some different compiler settings... But `nm` does not list my > exported functions... ?? Please help. > > ----------- utility.cpp ----------- This should be in test.so.1 lib. > #include > > class A > { > public: > int GetValue(); > void SetValue(int); > }; > > extern "C" > { > A* GetNewA() /* This function I want exported */ > { > return new A; > } > }; > > ------ use.cpp ---------- > #include > > typedef (A*)(EntryFunc*)(); > > int main() > { > int h = dlopen("test.so.1"); > EntryFunc GetA=dlsym(h,"GetNewA"); > A* test = GetA(); > /* Do other stuff */ > }; > > > Thanx for any help you can give me :o). > > --- > Nicolai Petri __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 15 0:41:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 1A03B37B66E for ; Sun, 15 Oct 2000 00:41:50 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 2DB616A901 for ; Sun, 15 Oct 2000 09:41:49 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id A0E17A870086; Sun, 15 Oct 2000 09:46:41 +0200 Message-Id: <5.0.0.25.0.20001015094038.03a683b0@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 15 Oct 2000 09:42:09 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: Dynamic DNS server on freebsd? In-Reply-To: <14825.24053.455214.811803@guru.mired.org> 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 >Well, the web site didn't turn up anything. I'd like to set up a >dynamic DNS server on a FreeBSD box. If you're not familiar with the >concept, A machine that boots with a dynamic IP addresses runs a >client whenever the IP address changes, thus causing the DNS server to >change it's records so that the name for that machine now maps to the >new ip address. BIND8 and apparently better in BIND9. www.ISC.org for the source code. or maybe BIND 9.0 is in the fbsd ports by now. Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 installable binary for NT4 http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 1:20:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 2357137B503 for ; Sun, 15 Oct 2000 01:20:28 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id BC1DB1F20; Sun, 15 Oct 2000 01:20:27 -0700 (PDT) Subject: Re: Dynamic DNS server on freebsd? In-Reply-To: <14825.24053.455214.811803@guru.mired.org> "from Mike Meyer at Oct 15, 2000 02:34:13 am" To: Mike Meyer Date: Sun, 15 Oct 2000 01:20:27 -0700 (PDT) Cc: questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001015082027.BC1DB1F20@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Well, the web site didn't turn up anything. I'd like to set up a > dynamic DNS server on a FreeBSD box. If you're not familiar with the > concept, A machine that boots with a dynamic IP addresses runs a > client whenever the IP address changes, thus causing the DNS server to > change it's records so that the name for that machine now maps to the > new ip address. Basically, you need a dynamic zone, then you need the machine with the dynamic IP address to ask your server to update it. To make a dynamic zone (and you probably shouldn't do this with yourdomain.com, but rather something like dyn.yourdomain.com) you need to specify an allow-update option in the zone. Something like zone "dyn.yourdomain.com" { type master; file "db.dyn.yourdomain.com"; allow-update { some.address.com.; }; }; should work. There might be some other flag, but if there is, I can't remember it right now. As someone already mentioned, check www.isc.org for the manual. some.address.com. is the host which is allowed to submit updates. Updates are submitted using the nsupdate utility. The manual page is fairly comprehensive and includes many examples. The one problem here is that since the client has a dynamic IP address, you can't list it in allow-update. It may be possible to list the entire network, but that's not such a good idea. A better solution would be to allow updates from localhost, then have the client establish an ssh session to the server and call nsupdate. This is, of course, the Poor Man's(tm) solution to dynamic DNS. It's far from perfect. Among others, the problems include: 1) The ssh and nsupdate method isn't good if your server has untrusted users on it since they'd be able to update the zone, too. 2) If the client is a Windows machine, you need a command-line based ssh client. Depending on your situation, this may or may not work for you. I'm sure if anybody knows any better solutions they'll let you know. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "It's been said that there is no problem that cannot be solved by a suitable application of high explosives. Now if I can only figure out how to send them via e-mail ..." -- Vince Sabio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 2: 5:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id CFE3837B502 for ; Sun, 15 Oct 2000 02:05:46 -0700 (PDT) Received: from jayk3 (user-2ini8b8.dialup.mindspring.com [165.121.33.104]) by blount.mail.mindspring.net (8.9.3/8.8.5) with SMTP id FAA02671 for ; Sun, 15 Oct 2000 05:05:42 -0400 (EDT) From: jay.krell@cornell.edu Message-ID: <001001c03686$e697a7b0$8001a8c0@jayk3> Reply-To: To: Subject: FreeBSD 3.x->4.1, my experience, Samba, dhcpd, ppp, nat, dns, named Date: Sun, 15 Oct 2000 02:04:17 -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 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So.. I'm afraid this is mostly whining, but maybe someone can figure out some appropriate fixes maybe someone will search the mailing list archives and gain help, since I at least provide resolutions partly specific to my configuration About a year ago I had FreeBSD 3.4, 3.3, and I think 3.2 setup about how I wanted them. I don't remember if I started with 3.3 or 3.2, but this was by "upgrading" either with cvsup and rebuild or reinstall and copy over files from /etc, etc. This was on one or two machines. FreeBSD paniced a lot on the second machine, it was suggested it was a hardware problem, so I mostly gave up on FreeBSD and that machine for a while, not wanting to give up NT4 on my main machine.. So now it's a while later, I have a new secondary machine, and FreeBSD 4.1 is probably the version to use. The configuration I was after, at least: two machines dialup ppp to an isp FreeBSD is the, in Microsoft terms, "internet connection provider" -- the other machine is running NT and whenever it or the FreeBSD machine needs internet access, the FreeBSD machine dials its modem; they are networked via ethernet, of course. The NT machine has no hardcoded network configuration. It uses "dhcp". The FreeBSD machine provides dhcp and dns. The FreeBSD machine is also a Samba server. It's still unclear which among ppp, dhcpd, samba, named is providing dns, but it works. I think it is named providing dns and ppp just writes into /etc/resolve.conf. Anyway, most of this I vaguely figured out enough in the 3.x timeframe.. Ok.. so, I'm not a good story teller. The problems I ran into were: getting Samba/smb/nmb to start getting dhcpd to start and work getting my keyboard to work the resolutions were Samba -------- There is conflicting information here. 1) Samba installs /usr/local/etc/rc.d/samba.sh.sample, with the implication that you just cp /usr/local/etc/rc.d/samba.sh.sample /usr/local/etc/rc.d/samba.sh 2) /etc/inetd.conf has two lines commented out referring to smbd and nmbd and a comment saying to uncomment them to enable Samba "within inetd". Maybe #2 works and I screwed it up otherwise. This is what I did in the 3.x timeframe. My experience is that the comment in /etc/inetd.conf should be modified something like, add: # For some versions of Samba you should uncomment these lines. Others install /usr/local/etc/rc.d/samba.sh.sample. If your version includes samba.sh.sample, make a copy of it in the same directory without "sample" in the name, and leave these lines alone. Its possible that people starting from scratch just find docs referring to samba.sh.sample and never notice inetd.conf, that I'm just unusual in that I searched out the wrong/different answer due to past experience. But I also usually miss various messages installing ports/packages because I leave them to install unattended. Dhcp server ---------------- This wasn't easy in the 3.x timeframe. First, at that time there was the isc-dhcp and wide-dhcp ports. I arbitrarily tried the isc one and got it to work. On the 4.1 CD, isc is marked broken due to security problems (I think only the client), so I tried wide. I was unable to configure wide to work. step 1) get a current ports.tar.gz; it has a no longer broken isc-dhcpd; don't use wide-dhcpd unless you can figure out how to configure it Ok, now there's isc-dhcpd2 and isc-dhcp3. I was unable to get isc-dhcp3 to work, with my configuration file from FreeBSD 3.x. I think the difference I observed is that isc3 started allocating from the high end of its range and 2 from the low end. Maybe it's a bug in the NT4 dhcp client. I don't know. step 2) all other things being equal, use isc-dhcpd2, not isc-dhcp3 (and, again, not wide-dhcp) step 3) In the 3.x timeframe, this is what I did to get isc-dhcp to start up at boot: add to /etc/rc.conf: -- /etc/rc.conf -- # Dhcp enables clients to not need hardcoded ip addresses. # This requires setting up /etc/rc.local (is there a better way?) # and installing /usr/ports/net/isc-dhcp. dhcpd_enable="YES" dhcpd_flags="-q" # don't print the verbose splash messsage/copyright -- rc.conf -- rc.conf is all nice and magic, if something else honors it; in this case you need to supply the magic. You need an /etc/rc.local that looks like -- /etc/rc.local -- #!/bin/sh ## This part is boilerplate, per the comment in /etc/rc # If there is a global system configuration file, suck it in. # if [ -f /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf # This next line was not needed in 3.x but is needed in 4.x source_rc_confs elif [ -f /etc/rc.conf ]; then . /etc/rc.conf fi ## This the dhcp server specific part. # Start Dynamic Host Configuration Protocol Daemon, so # that other machines on the local net don't need # hardcoded IP address or DNS server addresses or anything. if [ "X${dhcpd_enable}" = X"YES" ]; then echo -n ' dhcpd' ${dhcpd_program-"/usr/local/sbin/dhcpd"} ${dhcpd_flags} fi -- /etc/rc.local -- Ok well, the answer is embedded in there. The boilerplate for /etc/rc.local apparently changed between 3.x and 4.x. Upgrading requires updating it, adding the "source_rc_confs" line. A better solution might be copy the last part of rc.local to something like /usr/local/etc/rc.d/dhcpd.sh. I don't know. This works for me. Keyboard ------------ The machines are on a KVM (keyboard, video, mouse) switchbox. I had problems with the mouse part of that long ago, so they have their own mice, but share the keyboard and video. If the switchbox is switched away from FreeBSD 4.x upon boot, the keyboard doesn't work with it. The solution here is to reconfigure and rebuild your kernel. GENERIC: device atkbd0 at atkbdc? irq 1 flags 0x1 LINT tells us: # `flags' for atkbd: # 0x01 Force detection of keyboard, else we always assume a keyboard # 0x02 Don't reset keyboard, useful for some newer ThinkPads # 0x04 Old-style (XT) keyboard support, useful for older ThinkPads Works, remove the flags: device atkbd0 at atkbdc? irq 1 Several times I had to su and reboot using the mouse to paste characters from the motd (message of the day, printed at the end of the boot message), since I had networking problems too. This is probably specific to not using USB. One more networking thing ------------------------------------ Since I'm on dialup ppp, I don't really, at least in my ignorant mind, have a domain. I wanted the FreeBSD hostname to just be "jayk2". This seems to cause problems, with Apache and/or Samba. I recommend you invent a domain too, like use "jayk2.jaykhome". And probably make sure /etc/rc.conf and /etc/hosts agree. The named and ppp configurations migrated fine, modulo the change require going to 3.4+ < authname #jaykrell > authname "#jaykrell" I can provide more /etc exracts if anyone needs. The main ones are -- /etc/rc.conf -- named_enable="YES" # next line for 4.x to run it more securely, not an option I think in 3.x named_flags="-u bind -g bind" ppp_enable="YES" # next line is machine specific ppp_profile="netcom" ppp_nat="YES" # Have ppp provide the gateway/nat functionality. -- /etc/rc.conf -- -- /etc/ppp/ppp.conf --- make sure "enable dns" is not commented out make the timeout value higher, it's too low by default, so the modem doesn't hangup and redial so much -- /etc/ppp/ppp.conf --- -- /etc/namedb/named.conf -- edit this part // If you've got a DNS server around at your upstream provider, enter // its IP address here, and enable the line below. This will make you // benefit from its cache, thus reduce overall DNS traffic in the Internet. forwarders { # the next line is specific to your isp, but maybe ppp updating the resolve.conf file is sufficient? 207.69.188.185; 207.69.188.186; 207.69.188.187; }; -- /etc/namedb/named.conf -- dhcpd.conf This is particular to your local configuration. 192.168.1.1 is the hardcoded (it has to be) address of the FreeBSD machine This file says to allocate addresses in the range 192.168.1.128 to 192.168.1.255. Your address is set in /etc/rc.conf with a line like ifconfig_fxp0="inet 192.168.1.1 netmask 255.255.255.0" where "fxp" is specific to what type of network card you have. -- /etc/local/etc/dhcpd.conf -- subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.128 192.168.1.255; option routers 192.168.1.1; option domain-name-servers 192.168.1.1; } -- /etc/local/etc/dhcpd.conf -- Given that FreeBSD includes the isc-dhcp client, why not the server? This functionality is all _vastly_ easier to get working in Windows 2000 Pro, taking under an hour vs. days. The biggest problem I had there was having to "unconfigure" the client, to stop using hardcoded IP addresses, which you have to do for FreeBSD too. In the pre Win2k timeframe though, I don't think you could do this with NT4 Workstation, and I've never configured NT4 Server to do this. I want the FreeBSD machine around too for other reasons. - Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 2:20:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zeus.its-my.net (zeus.its-my.net [216.162.96.100]) by hub.freebsd.org (Postfix) with ESMTP id 9FEA337B66D for ; Sun, 15 Oct 2000 02:20:33 -0700 (PDT) Received: from localhost (jstanley@localhost) by zeus.its-my.net (8.11.0/8.11.0/Debian 8.11.0-1) with ESMTP id e9F9cNc07220 for ; Sun, 15 Oct 2000 04:38:23 -0500 Date: Sun, 15 Oct 2000 04:38:23 -0500 (CDT) From: Jon Stanley X-Sender: jstanley@zeus.its-my.net To: freebsd-questions@freebsd.org Subject: FreeBSD 4.1.1-RELEASE and Microsoft Intellimouse 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 attempting to use a Microsoft Intellimouse optical (not very concerned about all five buttons working or anything like that. Just a generic mouse would do fine for me right now). The mouse is very erattic on the screen to the point that nothing can be accomplished with it. It is a USB mouse that is converted to PS/2 with the little adapter thingy that came with it. If this is any help it's also going into a Belkin KVM switch. When I was running Red Hat (on the same hardware with the same switch) it worked fine. So I know that there is something that I am missing to get this to work. Any suggestions? -- kernel panic: cannot read from /dev/caffeine. "As if you could kill time without injuring eternity" -- Henry David Thoereau To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 2:40:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from morpheus.krush.net (morpheus.krush.net [195.158.35.33]) by hub.freebsd.org (Postfix) with ESMTP id CEA1537B66E for ; Sun, 15 Oct 2000 02:40:48 -0700 (PDT) Received: from lucifer.krush.net (basty@lucifer.krush.net [195.158.35.35]) by morpheus.krush.net (8.10.2/8.9.2) with ESMTP id e9FBhbR06854 for ; Sun, 15 Oct 2000 11:43:50 GMT Date: Sun, 15 Oct 2000 11:40:40 +0200 (CEST) From: Bastian Marmetschke X-Sender: basty@lucifer.krush.net To: freebsd-questions@FreeBSD.ORG Subject: Macintosh support ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Is there any way to mount a Macintosh Floppy to FreeBSD 3.5-Stable ? >> Thanks ! --basty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 2:47: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id 356DF37B503 for ; Sun, 15 Oct 2000 02:47:04 -0700 (PDT) Received: (qmail 27692 invoked by uid 0); 15 Oct 2000 09:47:02 -0000 Received: from h-62.96.151.26.user.addcom.de (HELO highlander) (62.96.151.26) by mail.gmx.net with SMTP; 15 Oct 2000 09:47:02 -0000 From: "Mc Claude" To: Subject: Date: Sun, 15 Oct 2000 11:47:26 +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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey Guys ! When I try to install this FreeBSD4.1 the install program always stops at a special point ! I've set all the important things: 1. I've chosen the kernel config There I've deleted all mistakes 2. I've set a FreeBSD partition 3. I've set the default labels 4. I've set what I want to install 5. I've set the install media 6. I've started the install And then before the copying step the install has an Fault 11 ! What can I do ?????????????????????????? I want a BSD. I'm tired of all the linux distributions because they aren't so good! A BSD is really better! And so I really want this FreeBSD! PLEASE 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 Oct 15 2:48:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9207.mail.yahoo.com (web9207.mail.yahoo.com [216.136.129.40]) by hub.freebsd.org (Postfix) with SMTP id 0A98B37B66D for ; Sun, 15 Oct 2000 02:48:34 -0700 (PDT) Message-ID: <20001015093533.80353.qmail@web9207.mail.yahoo.com> Received: from [63.27.75.121] by web9207.mail.yahoo.com; Sun, 15 Oct 2000 02:35:33 PDT Date: Sun, 15 Oct 2000 02:35:33 -0700 (PDT) From: Charles Thompson Subject: why should root access have such a common user name 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 This may soud somewhat asinine, but I cant help but ask. Is it possible to have the system not use root as a user for root access. To me if knowing the user name is half the battle. __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 15 3: 5:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from iaehv.iae.nl (iaehv.IAE.nl [194.151.64.2]) by hub.freebsd.org (Postfix) with ESMTP id F3FB637B66C for ; Sun, 15 Oct 2000 03:05:51 -0700 (PDT) Received: by iaehv.iae.nl (Postfix, from userid 4786) id 2A6B07EAE; Sun, 15 Oct 2000 12:05:51 +0200 (CEST) From: "Martin Bartelds" To: "cjclark@alum.mit.edu" , "Crist J . Clark" Cc: "freebsd-questions@FreeBSD.ORG" Date: Sun, 15 Oct 2000 12:05:32 +0200 (CDT) Reply-To: "Martin Bartelds" X-Mailer: PMMail 2.10.2010 for OS/2 Warp 4.00 In-Reply-To: <20001014175127.D25121@149.211.6.64.reflexcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: Double reverse lookup: OFF !!!! Message-Id: <20001015100551.2A6B07EAE@iaehv.iae.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Crist, Yep, it's the first rule, however the comment in the files say's: first match goes and be warned: "with the standard configuration, it's completely open". I installed the (changed) tcpd wrapper for ftpd, however do still get the verify declines. Maybe that's because I didn't install it for the IP6 ftpd line. Otherwise, it's maybe ftpd who still does the checking, after tcpd did skip it. How did the tcp_wrappers enter ftpd (libraries) ? Martin. On Sat, 14 Oct 2000 17:51:27 -0700, Crist J . Clark wrote: >On Sun, Oct 15, 2000 at 01:11:12AM +0200, MB wrote: >> > On Sat, Oct 14, 2000 at 09:39:50PM +0200, Martin Bartelds wrote: >> > > Some of my customers can't connect to my 4.1 system with anonymous ftp. >> > > >> > > When it happens, I do get an error message on the console: >> > > "Can't verify hostname: getaddrinfo(....., AF_INET) failed." >> > > >> > > As far as I know, this is the paranoid double reverse lookup which fails to >> > > match the IP-number with the hostname. >> > > >> > > I do not want to let my customers stumble on this. >> > > How can I turn this off ? I did have a look in the ftpd & inetd >> > > daemon-sources, but did not find anything about it. >> > > >> > > >> > > Any Idea ? >> > >> > It's the TCP wrapper. If you want to find the source, look in >> > /usr/src/contrib/tcp_wrappers. What's in your /etc/hosts.{allow,deny}? >> >> host.allow does have: >> ALL:ALL:allow >> >> So I'm pretty much surprised, the connections get declined. > >That is the first rule, right? > >If you still have problems, you might consider running ftpd(8) as an >independent daemon outside of inetd(8). >-- >Crist J. Clark cjclark@alum.mit.edu > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > ----------------------------------------------------------------------- M.G.N. Bartelds BTSoftware European Shareware Registration & Distribution http://www.btsoftware.com ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 3:23:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailf.telia.com (mailf.telia.com [194.22.194.25]) by hub.freebsd.org (Postfix) with ESMTP id C022A37B502 for ; Sun, 15 Oct 2000 03:23:09 -0700 (PDT) Received: from ents02 (t2o90p6.telia.com [195.67.216.126]) by mailf.telia.com (8.9.3/8.9.3) with SMTP id MAA15592; Sun, 15 Oct 2000 12:23:04 +0200 (CEST) From: "James A Wilde" To: "Mc Claude" , Subject: RE: Date: Sun, 15 Oct 2000 12:23:40 +0200 Message-ID: <000f01c03691$fc94c560$8208a8c0@iqunlimited.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Fault 11 or signal 11? There was a known bug in sysinstall for version 3.something but I would be surprised if it isn't fixed by this time. Signal 11 is very often associated with hardware problems, particularly memory problems, and remember, as someone pointed out to me, there is more memory than system memory in your machine, for example on the graphics adapter. Somewhere at work I have a URL to a site dealing with system 11 problems so, if you can wait, and no-one else posts it first... Otherwise search the mailing list archives at http://www.se.freebsd.org/search/search.html#mailinglists mvh/regards James > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Mc Claude > Sent: Sunday, October 15, 2000 11:47 > To: freebsd-questions@FreeBSD.ORG > Subject: > > And then before the copying step the install has an Fault 11 ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 3:48:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id DF87137B670 for ; Sun, 15 Oct 2000 03:48:49 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id AAA25935; Sun, 15 Oct 2000 00:48:37 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 15 Oct 2000 00:48:36 -1000 (HST) From: Vincent Poy To: Rick Hamell Cc: "Deakle, Jeff H." , "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Best DSL Router? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 13 Oct 2000, Rick Hamell wrote: > > > I am about to go DSL. I run a small web sever, about 5000 hits a week. > > Does anyone have any suggestions on which would be the best router for the > > money(of course one that has been successfully used with FBSD)? My price > > range is around $300-$500. > > I and everyone I know recommends a Cisco 675... you can pick up > new or barely used ones on Ebay in the $200 range. :) I'm using one right > now and plan on picking up another one soon. Is this compatible with PacBell's DSL and does it do PPPoE and how many ports can you map for NAT and does it have traffic shaping? Somehow I think FreeBSD will still be the ultimate router :) Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 4:13:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id E356637B66E for ; Sun, 15 Oct 2000 04:13:04 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 337DF6A901 for ; Sun, 15 Oct 2000 13:13:03 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id A2639F800086; Sun, 15 Oct 2000 13:17:55 +0200 Message-Id: <5.0.0.25.0.20001015125534.054e8690@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 15 Oct 2000 13:13:21 +0200 To: freebsd-questions@FreeBSD.ORG From: Len Conrad Subject: Re: Best DSL Router? In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > I am about to go DSL. I run a small web sever, about 5000 hits a week. > > > Does anyone have any suggestions on which would be the best > router for the > > > money(of course one that has been successfully used with FBSD)? My price > > > range is around $300-$500. > > > > I and everyone I know recommends a Cisco 675... you can pick up > > new or barely used ones on Ebay in the $200 range. :) I'm using one right > > now and plan on picking up another one soon. > > Is this compatible with PacBell's DSL and does it do PPPoE and how >many ports can you map for NAT and does it have traffic shaping? Somehow >I think FreeBSD will still be the ultimate router :) We think the flexibility of being able to add more ethernet interfaces for DMZ or whatever public/private subnetting we get drawn into, IDS and monitoring with SNORT, AIDE, logsurfer, protection with ipfilter/ipnat is better than a simple, low-end DSL router, and VPN IPsec. And then there is DSL bandwidth allocation with dummynet or etinc bw-mgr. We don't plan to put DSL into the FreeBSD box, but have the DSL provider deliver the cheapest "DSL-to-Ethernet" bridge they support for their DSLAM. We figure there are already too many providers involved the DSL link (telco, DSL operator/wholesaler, DSL reseller) so we prefer to let the DSLAM operator terminate the DSL line with his own DSLAM-compatible bridge. This FreeBSD/DSL approach also allows us to use the same FreeBSD config behind "ISDN-to-Ethernet" bridges. ie, we take the WAN i/f's out of FreeBSD. However, we do put the WAN i/f in FreeBSD for unchannelized leased lines. Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 installable binary for NT4 http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 4:15:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sentry.granch.com (sentry.granch.com [212.109.197.55]) by hub.freebsd.org (Postfix) with ESMTP id 1C18A37B66E for ; Sun, 15 Oct 2000 04:15:45 -0700 (PDT) Received: from sentry.granch.ru (IDENT:shelton@localhost [127.0.0.1]) by sentry.granch.com (8.9.3/8.9.3) with ESMTP id SAA16023 for ; Sun, 15 Oct 2000 18:13:23 +0700 (NOVST) Message-ID: <39E99153.A726025F@sentry.granch.ru> Date: Sun, 15 Oct 2000 18:13:23 +0700 From: "Rashid N. Achilov" Reply-To: achilov@granch.ru Organization: Granch Ltd. X-Mailer: Mozilla 4.74 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Probably stupid question Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Probably stupid question: After install Wine I'll be able to execute Windoze binaries directly? If yes, which complication? Office-like or Notepad-like? -- With Best Regards. Rashid N. Achilov (RNA1-RIPE), Brainbench ID: 28514 Granch Ltd. lead engineer, e-mail: achilov@granch.ru tel/fax (383-2) 24-2363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 4:19:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 2A33537B502 for ; Sun, 15 Oct 2000 04:19:34 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id BAA26124; Sun, 15 Oct 2000 01:19:14 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 15 Oct 2000 01:19:14 -1000 (HST) From: Vincent Poy To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Best DSL Router? In-Reply-To: <5.0.0.25.0.20001015125534.054e8690@mail.Go2France.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 Oct 2000, Len Conrad wrote: > > > > > I am about to go DSL. I run a small web sever, about 5000 hits a week. > > > > Does anyone have any suggestions on which would be the best > > router for the > > > > money(of course one that has been successfully used with FBSD)? My price > > > > range is around $300-$500. > > > > > > I and everyone I know recommends a Cisco 675... you can pick up > > > new or barely used ones on Ebay in the $200 range. :) I'm using one right > > > now and plan on picking up another one soon. > > > > Is this compatible with PacBell's DSL and does it do PPPoE and how > >many ports can you map for NAT and does it have traffic shaping? Somehow > >I think FreeBSD will still be the ultimate router :) > > We think the flexibility of being able to add more ethernet > interfaces for DMZ or whatever public/private subnetting we get drawn > into, IDS and monitoring with SNORT, AIDE, logsurfer, protection with > ipfilter/ipnat is better than a simple, low-end DSL router, and VPN > IPsec. And then there is DSL bandwidth allocation with dummynet or > etinc bw-mgr. Yep, that's true. That's why a ETINC Router Card with FreeBSD is a good cost effective solution compared to a Cisco Router for even tradional leased line connections. > We don't plan to put DSL into the FreeBSD box, but have the DSL > provider deliver the cheapest "DSL-to-Ethernet" bridge they support > for their DSLAM. We figure there are already too many providers > involved the DSL link (telco, DSL operator/wholesaler, DSL reseller) > so we prefer to let the DSLAM operator terminate the DSL line with > his own DSLAM-compatible bridge. > > This FreeBSD/DSL approach also allows us to use the same FreeBSD > config behind "ISDN-to-Ethernet" bridges. ie, we take the WAN i/f's > out of FreeBSD. However, we do put the WAN i/f in FreeBSD for > unchannelized leased lines. I'm just wondering if FreeBSD as a router has any traffic shaping features since most ADSL is faster downstream than upstream and when one is uploading tradionally, it will choke the download speeds because the uploading would take all the bandwidth for the upload pipe that it can't get the acknowledgement packets out for the downloaded data at the same time. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 4:50:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 508FC37B503 for ; Sun, 15 Oct 2000 04:50:11 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 05DA66A901 for ; Sun, 15 Oct 2000 13:50:09 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id AB15A5AE0086; Sun, 15 Oct 2000 13:55:01 +0200 Message-Id: <5.0.0.25.0.20001015134404.06dc9710@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 15 Oct 2000 13:50:28 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: Best DSL Router? In-Reply-To: References: <5.0.0.25.0.20001015125534.054e8690@mail.Go2France.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >I'm just wondering if FreeBSD as a router has any traffic shaping >features dummynet or etinc bw-mgr >since most ADSL is faster downstream than upstream and when one >is uploading tradionally, it will choke the download speeds because the >uploading would take all the bandwidth for the upload pipe that it can't >get the acknowledgement packets out for the downloaded data at the same >time. ??? ADSL is full duplex. up channel does not rob/share bandwidth from down channel. You should be able to get 128 up while getting 512 down, or whatever your signalling rates are. Paradyne MVL does share 768 kbits/sec between the two channels but that is afaik unique to MVL, which isn't typical xDSL. Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 installable binary for NT4 http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 5: 1:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 9325F37B671 for ; Sun, 15 Oct 2000 05:01:35 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id CAA26528; Sun, 15 Oct 2000 02:01:29 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 15 Oct 2000 02:01:29 -1000 (HST) From: Vincent Poy To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Best DSL Router? In-Reply-To: <5.0.0.25.0.20001015134404.06dc9710@mail.Go2France.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 Oct 2000, Len Conrad wrote: > >I'm just wondering if FreeBSD as a router has any traffic shaping > >features > > dummynet or etinc bw-mgr I completely forgot about etinc's bw-mgr. I never really knew what dummynet was used for until now. > >since most ADSL is faster downstream than upstream and when one > >is uploading tradionally, it will choke the download speeds because the > >uploading would take all the bandwidth for the upload pipe that it can't > >get the acknowledgement packets out for the downloaded data at the same > >time. > > ??? ADSL is full duplex. up channel does not rob/share bandwidth > from down channel. You should be able to get 128 up while getting 512 > down, or whatever your signalling rates are. ADSL is not full duplex. ADSL is Assymetrical DSL. SDSL is Full Duplex. With PacBell ADSL, the upstream 128k is shared with the downstream 1.5Mbps on a standard phone line connected to a Alcatel DSLAM. If one was downloading only, one does get 150kbytes/sec which 193kbytes/sec is the max for a 1.544Mbps connection. If you were uploading, it would be 13kbytes/sec up and the downloads would slow down to 30kbytes/sec. This is only a problem if you do both simultaneously since it's a known issue as discussed on the ba.internet newsgroup because of the way TCP/IP is designed and what happens is the uploads will take up the entire 128kbps so there is no room for the Acknowledgement packets to be sent back for the received packets. That's one reason why I mentioned traffic shaping as that seems to be the only solution. > Paradyne MVL does share 768 kbits/sec between the two channels but > that is afaik unique to MVL, which isn't typical xDSL. Yes, but are you uploading and downloading at the same time. That's a different issue altogether. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 5:30:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 0275137B671 for ; Sun, 15 Oct 2000 05:30:30 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13kmvr-0000LY-02; Sun, 15 Oct 2000 14:30:27 +0200 Received: (from daemon@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9FBmd870919 for freebsd-questions@freebsd.org; Sun, 15 Oct 2000 13:48:39 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: why should root access have such a common user name Date: Sun, 15 Oct 2000 11:48:39 +0000 (UTC) Message-ID: <8sc5in$24qu$2@kemoauc.mips.inka.de> References: <20001015093533.80353.qmail@web9207.mail.yahoo.com> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Charles Thompson wrote: > This may soud somewhat asinine, but I cant help but > ask. Is it possible to have the system not use root as > a user for root access. Absolutely. vipw(8), and rename "root" to something else. There are zillions of scripts and Makefiles that are hardcoded to assume that root is a valid name for the superuser, and that you will consequently need to fix, but "root" is merely a convention. Of course, if you need to ask, you'll probably hang yourself with it. > To me if knowing the user name is half the battle. Yeah. Whatever. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 6: 8:21 2000 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 6BE0B37B66D for ; Sun, 15 Oct 2000 06:08:19 -0700 (PDT) Received: from rac2.wam.umd.edu (IDENT:root@rac2.wam.umd.edu [128.8.10.142]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA18422 for ; Sun, 15 Oct 2000 09:08:17 -0400 (EDT) Received: from rac2.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac2.wam.umd.edu (8.9.3/8.9.3) with SMTP id JAA12383 for ; Sun, 15 Oct 2000 09:08:17 -0400 (EDT) Received: from localhost (culverk@localhost) by rac2.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA12379 for ; Sun, 15 Oct 2000 09:08:17 -0400 (EDT) X-Authentication-Warning: rac2.wam.umd.edu: culverk owned process doing -bs Date: Sun, 15 Oct 2000 09:08:17 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-questions@freebsd.org Subject: kde2 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 compiled KDE2rc2 recently, and I have some problems with it. Mainly certain things like trying to make the logout window pop up and trying to type a URL into Konquerer don't work. These same problems occur when I tried to make it work in linux. Anyway, has anyone gotten KDE2 to work without any problems on FreeBSD or Linux? Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 6:50: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id CB06C37B66C for ; Sun, 15 Oct 2000 06:50:03 -0700 (PDT) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.1/8.11.1) with ESMTP id e9FDpea11569 for ; Sun, 15 Oct 2000 15:51:41 +0200 (CEST) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Sun, 15 Oct 2000 15:51:40 +0200 (CEST) From: "O. Hartmann" To: freebsd-questions@freebsd.org Subject: KDE and DES-password encryption failure Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sirs. I recently installed FreeBSD 4.1.1-STABLE on a box. After configuring and finetunig the system I installed KDE 1.1.2 as the GUI. But I ran into problems! The encryption scheme for the system is DES, not MD5. KDE allows to lock screen, but I can not type in any kind of password, it is not accepted. Only for those users with a MD5 stylish password in the password database access is granted. I installed KDE from the ports database. It seems that this is mainly compiled against MD5 encryption scheme. I do not want myself to compile the whole KDE on the installed machine, because it is an older Pentium 200 system and it is not very fast. Can anybody tell me how I can figure KDE to accept DES styl passowrds? Maybe it is only the screen-lock facility, but I do not know so I want to ask before trying myself to get rid of the problem and likely destroying the installed system again. Thanks in advance, - MfG O. Hartmann ------------------------------------------------------------------- ohartman@ipamzlx.physik.uni-mainz.de Klimadatenserver-Abteilung des IPA IT Netz- und Systembetreuung Johannes Gutenberg-Universitaet Mainz Becherweg 21 D-55099 Mainz BRD/Germany Tel: +496131/3924662 FAX: +496131/3923235 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 7: 1:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from luke.immure.com (luke.immure.com [207.8.42.74]) by hub.freebsd.org (Postfix) with ESMTP id 0518C37B66D for ; Sun, 15 Oct 2000 07:01:17 -0700 (PDT) Received: (from bob@localhost) by luke.immure.com (8.11.0/8.9.3) id e9FE1Gx06149 for freebsd-questions@freebsd.org; Sun, 15 Oct 2000 09:01:16 -0500 (CDT) (envelope-from bob) Date: Sun, 15 Oct 2000 09:01:16 -0500 From: Bob Willcox To: questions list Subject: Problem with vi recover Message-ID: <20001015090115.A35837@luke.immure.com> Reply-To: Bob Willcox Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My system crashed while I had a number of unsaved changes to a file and unfortunately "vi -r myfile" fails for me. When I try it I get: +=+=+=+=+=+=+=+ There are other files for you to recover; gipmain.c: modified: line 1. Error: unable to retrieve line 39; Error: unable to retrieve line 40. Error: unable to retrieve line 41; Error: unable to retrieve line 42. Error: unable to retrieve line 43; Error: unable to retrieve line 44. Error: unable to retrieve line 45; Error: unable to retrieve line 46. Error: unable to retrieve line 47; Error: unable to retrieve line 48. Error: unable to retrieve line 49; Error: unable to retrieve line 50. Error: unable to retrieve line 39; Error: unable to retrieve line 40. Error: unable to retrieve line 41; Error: unable to retrieve line 42. Error: unable to retrieve line 43; Error: unable to retrieve line 44. Error: unable to retrieve line 45; Error: unable to retrieve line 46. Error: unable to retrieve line 47; Error: unable to retrieve line 48. Error: unable to retrieve line 49; Error: unable to retrieve line 50 errors repeated over and over and the vi process hangs (after allocating 258MB of memory). Does "vi -r" work for others? Is it possible that I just have some kind of configuration error on my system? Any help would be greatly appreciated...I really don't want to have to recreate my changes! :-( Thanks, Bob -- Bob Willcox Have the courage to take your own thoughts bob@VIEO.com seriously, for they will shape you. Austin, TX -- Albert Einstein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 7:35:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.springwoodsys.com (ns1.springwoodsys.com [12.38.17.16]) by hub.freebsd.org (Postfix) with ESMTP id B481C37B66D for ; Sun, 15 Oct 2000 07:35:44 -0700 (PDT) Received: from hq4.hq.springwoodsys.com (springwoodsys.erols.com [208.58.154.69]) by ns1.springwoodsys.com (8.9.3/8.9.3) with ESMTP id KAA19778; Sun, 15 Oct 2000 10:53:01 -0400 (EDT) (envelope-from bill@springwoodsys.com) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Sun, 15 Oct 2000 10:35:39 -0400 (EDT) From: "Bill O'Connell" To: "Bill O'Connell" , freebsd-questions@freebsd.org Subject: RE: Problems with IPSEC Cc: fabrizzio.batista@lojasobino.com.br Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > IPSEC is in my Kernel. > > options IPSEC > options IPSEC_ESP > > All configurations looks like OK for me. When I execute setkey -f > /ect/ipsec.conf, nothing happens. I think thatīs everything is OK > but > when I try to access the other subnet ... Using netstat -sn, ipsec > have in all lines the zero value. My FreeBSD version is 4.1 in both > sides. > > Do you help me ???? > > Thanks in advance, > > Fabrizzio > > > File IPSEC.CONF: > > flush; > spdflush; > spdadd 192.168.1.0/24 128.1.1.0/24 any -P out ipsec > ah/tunnel/200.248.27.134-200.248.27.150/require; > spdadd 128.1.1.0/24 192.168.1.0/24 any -P in ipsec > ah/tunnel/200.248.27.150-200.248.27.134/require; > add 200.248.27.134 200.248.27.150 ah-old 0x10003 -m any -A > keyed-md5 > "this is the test"; > add 200.248.27.150 200.248.27.134 ah-old 0x10004 -m any -A > keyed-md5 > "this is the test"; What do the actual SAD and SPD entries look like, i.e. what does setkey -D and setkey -DP show? Need to see this on the other machine as well. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 7:39:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 2E71037B66D for ; Sun, 15 Oct 2000 07:39:43 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id DB30E6A901 for ; Sun, 15 Oct 2000 16:39:41 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id A2D1C34C0086; Sun, 15 Oct 2000 16:44:33 +0200 Message-Id: <5.0.0.25.0.20001015142252.04506b30@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 15 Oct 2000 16:40:08 +0200 To: freebsd-questions@FreeBSD.ORG From: Len Conrad Subject: Re: Best DSL Router? In-Reply-To: References: <5.0.0.25.0.20001015134404.06dc9710@mail.Go2France.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >ADSL is not full duplex. Then what is it? half duplex? simplex? No, xDSL is full duplex at stated rate(s) on two unconditioned wires. "ADSL (asymmetric digital subscriber line) is called "asymmetric" because most of its two-way or duplex bandwidth is devoted to the downstream direction, sending data to the user. Only a small portion of bandwidth is available for upstream. Published by : Computer Reseller News Date : Monday, September 04, 2000" >ADSL is Assymetrical DSL. SDSL is Full Duplex. You're mixing your terms. xDSL is full duplex. (A)symmetric refers only to the relative values of the up and down signalling rates, not to the media access scheme. Full duplex refers to the simultaneous send and receive, half duplex is only one party sending at a time. This is a one-sender-at-time media access scheme, just like 10BaseT Ethernet or Token Ring or ARCnet. In xDSL, two frequency bands are used to provide two independent "media" so each sender can send simultaneously. >With PacBell ADSL, the upstream 128k is shared with the >downstream 1.5Mbps on a standard phone line connected to a Alcatel DSLAM. There's no band sharing going on. The 128 kbits upchannel has its frequency band and simultanously the 1.5 Mb/s channel has a separate frequency band. They can both send simultaneously, aka "full duplex". >If one was downloading only, one does get 150kbytes/sec which >193kbytes/sec is the max for a 1.544Mbps connection. If you were >uploading, it would be 13kbytes/sec up and the downloads would slow down >to 30kbytes/sec. If there is simultaneous transmission in both directions, as you say there is on the BA DSL (at whatever effective signalling rate), then the xDSL line is full duplex. >This is only a problem if you do both simultaneously Which is a the most common requirement. If you can do both simultaneously, then the channel or service is full duplex. A classic T1/E1 is full duplex but on 4 wires (each pair is simplex), and it can be replaced with xDSL 2 wires, of same speed which is also full duplex. >and what happens is the uploads will take up >the entire 128kbps of course, there's nobody else on the line to share that 128 with, but that's only one channel of the two available. The 128 up channel does not occupy the full up/down bandwidith, only the up bandwith. The down channel is a separate channel and frequency band. Now if BA lines cannot really support full 1.5/128 signalling rates, then that's not an xDSL issue. I've seen some DSL provisoning web sites quote a residential address only 144 kb/sec up and down due to line quality and line length issues. >so there is no room for the Acknowledgement packets to >be sent back for the received packets. yes, there is, the separate down channel is available, in theory, on the full-duplex xDSL line. If in practice, line conditions are so poor that effective operation appears to be half-duplex (ie, sending up destroys sending down), then that's a line issue, and still doesn't mean xDSL is not full duplex. >That's one reason why I mentioned traffic shaping as that seems to >be the only solution. If 128 kb/sec up transmission destroys the capacity of the 1.5 mb/sec down channel such that tcp ACK packets can't be sent down, then there's no effective bandwidth to manage. > > Paradyne MVL does share 768 kbits/sec between the two channels but > > that is afaik unique to MVL, which isn't typical xDSL. > > Yes, but are you uploading and downloading at the same >time. That's a different issue altogether. xDSL is full duplex, period, as you say the Bell Atlantic ADSL is, with asymmetric signalling rates. If the line quality + available CO bandwidth don't allow full duplex data transmission at max (asymmetric) signalling rates, that's not xDSL's pb. "Full duplex" and "(a)symmetric signalling rate" refer to two diffent, independent characteristics. Here's very readable reference work: http://www.paradyne.com/sourcebook_offer/index.html Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 installable binary for NT4 http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 7:47: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 86ABD37B503 for ; Sun, 15 Oct 2000 07:47:04 -0700 (PDT) Received: from freebsd.org ([62.253.8.200]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with SMTP id <20001015144703.BBGW16640.mta01-svc.ntlworld.com@freebsd.org> for ; Sun, 15 Oct 2000 15:47:03 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=200010151521=" To: questions@freebsd.org From: robert@robertjohnston.co.uk X-Mailer: 4AA7E628.3F2536D4.356f1e5179497d76e3a0f82a0b4ad170 Subject: The Tint File - Probably the best CMYK Color Communication Tool Ever Organization: robertjohnston.co.uk Message-Id: <20001015144703.BBGW16640.mta01-svc.ntlworld.com@freebsd.org> Date: Sun, 15 Oct 2000 15:47:03 +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --=200010151521= Content-Type: text/plain;charset=US-ASCII From a friend: robert johnston Don't throw this email away, File it, Keep it Safe, Even if you don't need this CMYK Guide TODAY... You could NEED it in the Future...!!! Check out "The Tint File" at...... http://www.thetintfile.co.uk/special.html While I was surfing the Internet I came across this totally cool "CMYK Colour Specifying & Communication Tool & Reference Guide" website and thought you should check it out next time you are on the Web. It's one of the best products I have ever seen, and is a must for anyone involved in the graphic design and printing industry. If you think this brilliant product is as fantastic as I do you can recommend it to all your Friends at http://www.thetintfile.co.uk/email.html Talk to you soon! Robert. --=200010151521=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 7:49:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.iol.ie (mail2.mail.iol.ie [194.125.2.193]) by hub.freebsd.org (Postfix) with ESMTP id 1E2F737B66D for ; Sun, 15 Oct 2000 07:49:45 -0700 (PDT) Received: from homework (b-airlock074.esatclear.ie [194.145.131.74]) by mail.iol.ie Sendmail (v8.9.3) with SMTP id PAA47718 for ; Sun, 15 Oct 2000 15:49:42 +0100 (IST) Message-ID: <001c01c036b7$ae1a5410$4a8391c2@homework> From: "Dermot Kirk" To: Subject: Install probelm Date: Sun, 15 Oct 2000 15:53:26 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0019_01C036C0.0E453050" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0019_01C036C0.0E453050 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I ahve a 486 66mhz Gateway I am trying to install FreeBSD on it. I d/l = all the files and burned them to a CD for install (/bin directory). The = problem I am having is: A) my cd-rom is not detected. It is a NEC 2X on IDE. I had (have?) the = DOs drivers for it and it was working fine then. B) When I boot the machine now I get: No /boot/loader (etc..) No /kernel FreeBSD (etc...) Default: 0:ad(0,a)/kernal Any ideas? I did stop the installexpecting it to detect my cd-rom when = it re-booted. Please if you have any ideas could youmail themon. BTW: If I have sent this to the wrong mail addy pls forward to correct = and I'll know from there on in Thanks in advance, Dermot. boot: ------=_NextPart_000_0019_01C036C0.0E453050 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I ahve a 486 66mhz Gateway I am trying = to install=20 FreeBSD on it.  I d/l all the files and burned them to a CD for = install=20 (/bin directory).  The problem I am having is:
 
A) my cd-rom is not detected.  It = is a NEC 2X=20 on IDE.  I had (have?) the DOs drivers for it and it was working = fine=20 then.
 
B)  When I boot the machine now I=20 get:
    No = /boot/loader
    (etc..)
 
    No = /kernel
 
    FreeBSD = (etc...)
    Default:=20 0:ad(0,a)/kernal
 
 
Any ideas?  I did stop the = installexpecting it=20 to detect my cd-rom when it re-booted.
 
Please if you have any ideas could = youmail=20 themon.
 
BTW: If I have sent this to the wrong = mail addy pls=20 forward to correct and I'll know from there on in
 
Thanks in advance,
 
Dermot.
    = boot:
------=_NextPart_000_0019_01C036C0.0E453050-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 8:13: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boco.fee.vutbr.cz (boco.fee.vutbr.cz [147.229.9.11]) by hub.freebsd.org (Postfix) with ESMTP id 2135237B502 for ; Sun, 15 Oct 2000 08:13:04 -0700 (PDT) Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by boco.fee.vutbr.cz (8.11.1/8.11.1) with ESMTP id e9FFCus00122 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK) for ; Sun, 15 Oct 2000 17:12:57 +0200 (CEST) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.0/8.11.0) id e9FFCuN77674 for questions@FreeBSD.ORG; Sun, 15 Oct 2000 17:12:56 +0200 (CEST) Date: Sun, 15 Oct 2000 17:12:56 +0200 From: Cejka Rudolf To: questions@FreeBSD.ORG Subject: Re: 4.1.1 and DES? Message-ID: <20001015171256.A77606@dcse.fee.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from henrich@sigbus.com on Fri, Oct 13, 2000 at 11:29:55AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Charles Henrich wrote (2000/10/13): > What happened to the DES install options in 4.1.1? How do I enable DES > passwords w/ 4.1.1? Just add passwd_format=des into /etc/login.conf. -- Rudolf Cejka (cejkar@dcse.fee.vutbr.cz; http://www.fee.vutbr.cz/~cejkar) Brno University of Technology, Faculty of El. Engineering and Comp. Science Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 8:43:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id B59A737B670 for ; Sun, 15 Oct 2000 08:43:19 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id dtnraaaa for ; Mon, 16 Oct 2000 02:47:02 +1000 Message-ID: <39E9D0AE.7D2941D8@quake.com.au> Date: Mon, 16 Oct 2000 01:43:42 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: X Hotline Client for FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am wondering if anyone knows of a X Hotline client that will compile on FreeBSD... I havent been able to find one, there are plenty of linux clients but they all fail to compile, most need glibc... Fidelio or something named like that is the best linux client I had before I changed over the FreeBSD... Someone HAS to have ported a hotline client right? Thanks for any suggestions :) Kal. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 9: 6:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.42.130.87]) by hub.freebsd.org (Postfix) with ESMTP id DE12B37B66C for ; Sun, 15 Oct 2000 09:06:00 -0700 (PDT) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.10.1/8.9.2) with SMTP id e9FG5oD16861; Sun, 15 Oct 2000 12:05:54 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <002e01c036c1$defbdd10$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: Cc: References: <001001c03686$e697a7b0$8001a8c0@jayk3> Subject: Re: FreeBSD 3.x->4.1, my experience, Samba, dhcpd, ppp, nat, dns, named Date: Sun, 15 Oct 2000 12:06:21 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > The configuration I was after, at least: > two machines > dialup ppp to an isp > FreeBSD is the, in Microsoft terms, "internet connection provider" -- the > other machine is running NT and whenever it or the FreeBSD machine needs > internet access, the FreeBSD machine dials its modem; they are networked via > ethernet, of course. The NT machine has no hardcoded network configuration. > It uses "dhcp". > The FreeBSD machine provides dhcp and dns. The FreeBSD machine is also a > Samba server. It's still unclear which among ppp, dhcpd, samba, named is > providing dns, but it works. I think it is named providing dns and ppp just > writes into /etc/resolve.conf. Anyway, most of this I vaguely figured out > enough in the 3.x timeframe.. > > the resolutions were > Samba > -------- > There is conflicting information here. > 1) Samba installs /usr/local/etc/rc.d/samba.sh.sample, with the > implication that you just > cp /usr/local/etc/rc.d/samba.sh.sample /usr/local/etc/rc.d/samba.sh > 2) /etc/inetd.conf has two lines commented out referring to smbd and > nmbd and a comment saying to uncomment them to enable Samba "within inetd". There are two ways to run servers in the UNIX world. They can run standalone (always ready and waiting), or they can run on-demand. The first way is accomplished by running the samba.sh script when the server boots, as it starts smbd and nmbd which then respond to SMB queries. The second way is done by running them from inetd. In the case of Samba, Inetd will listen for connections on ports 137-139, and when requests come in inetd will start smbd/nmbd and pass off the requests to Samba, but will terminate smbd/nmbd once the request has been completed. In the case of Samba, the first method is much better performance-wise, which is why the installation installs the sample startup script and doesn't mention anything about inetd. > Dhcp server > ---------------- > This wasn't easy in the 3.x timeframe. First, at that time there was the > isc-dhcp and wide-dhcp ports. I arbitrarily tried the isc one and got it to > work. On the 4.1 CD, isc is marked broken due to security problems (I think > only the client), so I tried wide. I was unable to configure wide to work. As you mentioned, isc-dhcpd2 is the way to go. > Ok well, the answer is embedded in there. The boilerplate for /etc/rc.local > apparently changed between 3.x and 4.x. Upgrading requires updating it, > adding the "source_rc_confs" line. A better solution might be copy the last > part of rc.local to something like /usr/local/etc/rc.d/dhcpd.sh. I don't > know. This works for me. As for starting it at boot, you don't need an rc.local script for it. (In fact, rc.local has been obsolete for some a long time - it's denoted as obsolete on my 3.1-REL machine.) All you need to do is write a little boot script and stick it in /usr/local/etc/rc.d, just like samba did. This will make dhcpd start upon boot. > Given that FreeBSD includes the isc-dhcp client, why not the server? I think it might have something to do with ISC's policy on distribution. For the longest time dhclient was not included in FreeBSD. Perhaps it's just time until dhcpd is available in the base distribution, although it's not a huge deal to grab it from the ports in the meantime. > This functionality is all _vastly_ easier to get working in Windows 2000 > Pro, taking under an hour vs. days. The biggest problem I had there was > having to "unconfigure" the client, to stop using hardcoded IP addresses, > which you have to do for FreeBSD too. In the pre Win2k timeframe though, I > don't think you could do this with NT4 Workstation, and I've never > configured NT4 Server to do this. I want the FreeBSD machine around too for > other reasons. As for "hours vs days", it's all a matter of background knowledge. The FreeBSD setup you describe is only an "afternoon job" by my standards, but I've been using FreeBSD for ~4 years now. I recently had to do a massive upgrade/reconfigure effort an NT4 network (2 physical locations, 50 clients) after a change in ISP at one location. I never had touched NT4 Server before. It took me three days to get the PDC and BDC all synch'd up and DHCP and WINS working properly. (Had it been a FreeBSD setup with DHCPd and Samba, it would have only taken a few hours.) Regardless, I'm glad to see that you're sharing your results and findings with the FreeBSD community. We're happy to see that you've taken the time to learn and figure things out, instead of being a l4m3r and saying "I can't make it work, FreeBsd sux, Linux r00lz!" -- Matthew Emmerton GSI Computer Services +1 (800) 217 5409 (Canada) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:18:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 0545137B66C for ; Sun, 15 Oct 2000 10:18:11 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9FHI9P03015; Sun, 15 Oct 2000 10:18:09 -0700 (PDT) Date: Sun, 15 Oct 2000 10:18:09 -0700 From: Alfred Perlstein To: Charles Thompson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: why should root access have such a common user name Message-ID: <20001015101809.C272@fw.wintelcom.net> References: <20001015093533.80353.qmail@web9207.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001015093533.80353.qmail@web9207.mail.yahoo.com>; from c_gulll@yahoo.com on Sun, Oct 15, 2000 at 02:35:33AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Charles Thompson [001015 02:48] wrote: > This may soud somewhat asinine, but I cant help but > ask. Is it possible to have the system not use root as > a user for root access. To me if knowing the user name > is half the battle. There's an interesting story that was posted to a.s.r where some PHB demanded the root password. The admin was a bit worried until he realized he could just make root's uid == nobody and keep toor around for himself. :) -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:20:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 784DC37B670 for ; Sun, 15 Oct 2000 10:20:37 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9FHKVV03148; Sun, 15 Oct 2000 10:20:31 -0700 (PDT) Date: Sun, 15 Oct 2000 10:20:31 -0700 From: Alfred Perlstein To: achilov@granch.ru Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Probably stupid question Message-ID: <20001015102031.D272@fw.wintelcom.net> References: <39E99153.A726025F@sentry.granch.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39E99153.A726025F@sentry.granch.ru>; from shelton@sentry.granch.ru on Sun, Oct 15, 2000 at 06:13:23PM +0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Rashid N. Achilov [001015 04:16] wrote: > Probably stupid question: After install Wine I'll be able to execute > Windoze binaries directly? No, check the wine documentation. > If yes, which complication? Office-like or > Notepad-like? Depends, supposedly wine is getting very good lately and may be able to execute some pretty complex apps: http://www.winehq.com/Apps/query.cgi -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:22:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 009F437B503 for ; Sun, 15 Oct 2000 10:22:23 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9FHMLb03171; Sun, 15 Oct 2000 10:22:21 -0700 (PDT) Date: Sun, 15 Oct 2000 10:22:21 -0700 From: Alfred Perlstein To: Kenneth Wayne Culver Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kde2 Message-ID: <20001015102221.E272@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from culverk@wam.umd.edu on Sun, Oct 15, 2000 at 09:08:17AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Kenneth Wayne Culver [001015 06:08] wrote: > I compiled KDE2rc2 recently, and I have some problems with it. Mainly > certain things like trying to make the logout window pop up and trying to > type a URL into Konquerer don't work. These same problems occur when I > tried to make it work in linux. Anyway, has anyone gotten KDE2 to work > without any problems on FreeBSD or Linux? If the problem is on both FreeBSD and Linux then these questions and bug reports really belong on the KDE mailing lists. It would be a lot better if you reported the problems to them directly especially since they plan on making a release really soon. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:25:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 0ADA137B503 for ; Sun, 15 Oct 2000 10:25:10 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9FHP5v03227; Sun, 15 Oct 2000 10:25:05 -0700 (PDT) Date: Sun, 15 Oct 2000 10:25:05 -0700 From: Alfred Perlstein To: Kal Torak Cc: freebsd-questions@FreeBSD.ORG Subject: Re: X Hotline Client for FreeBSD Message-ID: <20001015102505.F272@fw.wintelcom.net> References: <39E9D0AE.7D2941D8@quake.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39E9D0AE.7D2941D8@quake.com.au>; from kaltorak@quake.com.au on Mon, Oct 16, 2000 at 01:43:42AM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Kal Torak [001015 08:43] wrote: > Hi, > I am wondering if anyone knows of a X Hotline client that will > compile on FreeBSD... I havent been able to find one, there > are plenty of linux clients but they all fail to compile, most > need glibc... > > Fidelio or something named like that is the best linux client > I had before I changed over the FreeBSD... > Someone HAS to have ported a hotline client right? > > Thanks for any suggestions :) Can you give a URL as to where someone might find these apps? -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:36:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id A009D37B66E for ; Sun, 15 Oct 2000 10:36:47 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 30A161078B; Sun, 15 Oct 2000 17:27:52 +0000 (GMT) Date: Sun, 15 Oct 2000 17:27:52 GMT From: mike johnson To: Alfred Perlstein , Kal Torak Cc: freebsd-questions@FreeBSD.ORG Subject: Re: X Hotline Client for FreeBSD Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001015172752.30A161078B@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG http://fidelio.sourceforge.net/sources.php On Sun, 15 Oct 2000, Alfred Perlstein wrote: > Date: Sun, 15 Oct 2000 10:25:05 -0700 > To: Kal Torak > From: Alfred Perlstein > Subject: Re: X Hotline Client for FreeBSD > > * Kal Torak [001015 08:43] wrote: > > Hi, > > I am wondering if anyone knows of a X Hotline client that will > > compile on FreeBSD... I havent been able to find one, there > > are plenty of linux clients but they all fail to compile, most > > need glibc... > > > > Fidelio or something named like that is the best linux client > > I had before I changed over the FreeBSD... > > Someone HAS to have ported a hotline client right? > > > > Thanks for any suggestions :) > > Can you give a URL as to where someone might find these apps? > > -- > -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] > "I have the heart of a child; I keep it in a jar on my desk." > > > 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 Oct 15 10:50: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 1403137B503 for ; Sun, 15 Oct 2000 10:49:59 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id KAA04468; Sun, 15 Oct 2000 10:49:37 -0700 Message-ID: <39E9EE30.872E2EE9@urx.com> Date: Sun, 15 Oct 2000 10:49:36 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Bob Willcox Cc: questions list Subject: Re: Problem with vi recover References: <20001015090115.A35837@luke.immure.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bob Willcox wrote: > > My system crashed while I had a number of unsaved changes to a file and > unfortunately "vi -r myfile" fails for me. When I try it I get: > > +=+=+=+=+=+=+=+ > There are other files for you to recover; gipmain.c: modified: line 1. > Error: unable to retrieve line 39; Error: unable to retrieve line 40. > Error: unable to retrieve line 41; Error: unable to retrieve line 42. > Error: unable to retrieve line 43; Error: unable to retrieve line 44. > Error: unable to retrieve line 45; Error: unable to retrieve line 46. > Error: unable to retrieve line 47; Error: unable to retrieve line 48. > Error: unable to retrieve line 49; Error: unable to retrieve line 50. > Error: unable to retrieve line 39; Error: unable to retrieve line 40. > Error: unable to retrieve line 41; Error: unable to retrieve line 42. > Error: unable to retrieve line 43; Error: unable to retrieve line 44. > Error: unable to retrieve line 45; Error: unable to retrieve line 46. > Error: unable to retrieve line 47; Error: unable to retrieve line 48. > Error: unable to retrieve line 49; Error: unable to retrieve line 50 > > errors repeated over and over and the vi process hangs (after allocating > 258MB of memory). > > Does "vi -r" work for others? Is it possible that I just have some > kind of configuration error on my system? Any help would be greatly > appreciated...I really don't want to have to recreate my changes! :-( I've used vi -r on many occasions. One of my most memorable was trying to edit a 50MB file on a Cray XM/P. One historical problem with vi is that it can fill /tmp and if you don't catch it, nasty things will happen. Could you have had an edit change get away from you and create lines the system can't load because you have filled the filesystem where vi is keeping its temp space. Kent > > Thanks, > Bob > > -- > Bob Willcox Have the courage to take your own thoughts > bob@VIEO.com seriously, for they will shape you. > Austin, TX -- Albert Einstein > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:57:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id 3CFE937B502 for ; Sun, 15 Oct 2000 10:57:57 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id CCC8E1078B for ; Sun, 15 Oct 2000 13:49:06 -0400 (EDT) Date: Sun, 15 Oct 2000 13:49:06 EDT From: mike johnson To: questions@freebsd.org Subject: modular kernel? Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001015174906.CCC8E1078B@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey , Since freebsd has a modular kernel now and it builds stuff like /modules/msdos.ko , and usb.ko. I can take out some of that in the kernel and load it when needed? I cant find any doc's on it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 10:58: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zmamail04.zma.compaq.com (zmamail04.zma.compaq.com [161.114.64.104]) by hub.freebsd.org (Postfix) with ESMTP id 698B037B502 for ; Sun, 15 Oct 2000 10:58:01 -0700 (PDT) Received: by zmamail04.zma.compaq.com (Postfix, from userid 12345) id AB7D830C; Sun, 15 Oct 2000 13:57:55 -0400 (EDT) Received: from exccup-gh02.cac.cpqcorp.net (exccup-gh02.cac.cpqcorp.net [16.105.248.61]) by zmamail04.zma.compaq.com (Postfix) with ESMTP id 67D941D0 for ; Sun, 15 Oct 2000 13:57:55 -0400 (EDT) Received: by exccup-gh02.cac.cpqcorp.net with Internet Mail Service (5.5.2650.21) id <459PMWYT>; Sun, 15 Oct 2000 10:57:54 -0700 Message-ID: <2BAEE918EF6CD1118FA800805F57F12E09041B8D@excaus-aus01.txn.cpqcorp.net> From: "Mullen, Adam" To: "'freebsd-questions@FreeBSD.ORG'" Cc: "Mullen, Adam" Subject: Netgear FA312 10/100 Ethernet Nic Date: Sun, 15 Oct 2000 10:57:45 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I recently bought a Netgear FA312 Nic based off of the fact that they claimed it ran under Linux. Well, not quite that simple. It runs under Linux under the kernel they developed it for. To say the least, I've thrown Linux out the door and am now running FreeBSD. I can't get this card to work here either. I've found that under OpenBSD they suggest useing the sis drivers. I've tried compiling the sis code into the kernel but no such luck. My latest escapade was to compile all of the network drivers into the kernel and see what happens. When I do an ifconfig -a, nothing shows up besides the nomal loopback. When I do dmesg | grep -i inet, nothing shows up. Has anyone else made attempts to use the FA312 Nic and does anyone know if this is even possible? Cheers, Adam Adam D. Mullen Compaq Premier Support Compaq Corp., Austin TX Phone: (800) 255-5010 Email adam.mullen@compaq.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11: 4:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thelab.hub.org (CDR8-44.accesscable.net [24.138.8.44]) by hub.freebsd.org (Postfix) with ESMTP id 80CA737B502 for ; Sun, 15 Oct 2000 11:04:41 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id e9FI2e288163; Sun, 15 Oct 2000 15:02:40 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sun, 15 Oct 2000 15:02:40 -0300 (ADT) From: The Hermit Hacker To: mike johnson Cc: questions@FreeBSD.ORG Subject: Re: modular kernel? In-Reply-To: <20001015174906.CCC8E1078B@baddog.yi.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 15 Oct 2000, mike johnson wrote: > > Hey , > Since freebsd has a modular kernel now and it builds stuff like > /modules/msdos.ko , and usb.ko. I can take out some of that in the kernel > and load it when needed? I cant find any doc's on it definitely ... about the only thing, off the top of my head, that you have to tell the kernel to load is the random module ... so far, in my cases, the rest have auto-loaded quite nicely ... procfs, my ethernet cards that are supposed in modules, etc ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:11:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 5561A37B502 for ; Sun, 15 Oct 2000 11:11:52 -0700 (PDT) Received: from jayk3 (user-2ini8bs.dialup.mindspring.com [165.121.33.124]) by smtp6.mindspring.com (8.9.3/8.8.5) with SMTP id OAA09164; Sun, 15 Oct 2000 14:11:17 -0400 (EDT) From: jay.krell@cornell.edu Message-ID: <004701c036d3$269c49f0$8001a8c0@jayk3> Reply-To: To: "Matthew Emmerton" Cc: Subject: Re: FreeBSD 3.x->4.1, my experience, Samba, dhcpd, ppp, nat, dns, named Date: Sun, 15 Oct 2000 11:09:45 -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 4.72.3612.1700 x-mimeole: Produced By Microsoft MimeOLE V4.72.3612.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > it's all a matter of background knowledge Yes, I agree somewhat. I have a big background setting up NT clients. I have never done large scale NT deployment, I only know in my little two machine network that Win2k was easy. I still take issue with how hard lone Unix systems are to get working. The book "Phil and Alex's Guide to Web Publishing" describes it well I think. Unix being really awful to setup and configure, but n machines being no harder than one machine. > /etc/rc.local vs. /usr/local/etc/rc.d/dhcpd.sh ?so the right thing to do here is basically rm /etc/rc.local -- /usr/local/etc/rc.d/dhcpd.sh -- #!/bin/sh # # For example, in /etc/rc.conf put # dhcpd_enable="YES" # and optionally # dhcpd_flags="-q" # to not print out the verbose copyright message. # # Start Dynamic Host Configuration Protocol Daemon, so # that other machines on the local net don't need # hardcoded IP address or DNS server addresses or anything. # if [ "X${dhcpd_enable}" = X"YES" ]; then echo -n ' dhcpd' ${dhcpd_program-"/usr/local/sbin/dhcpd"} ${dhcpd_flags} fi -- /usr/local/etc/rc.d/dhcpd.sh -- I'll try that. I knew rc.local was obsolete but at the time it seemed the easiest thing. I noticed NetBSD includes isc dhcpd and they have a document up describing very close to what I was after. They have a more complicated dhcpd.conf, but still pretty sample. The wide-dhcp docs were talking about "relay agents" and setting up two .conf files, I had no clue.. > starting Samba I kind of thought perf was better in general running stuff under inetd, fewer processes, but maybe that's only until the service is used. There's a more general problem of installing ports/packages reporting a lot of stuff you don't need to know, a little that you do need, and the scrollback on the console being tiny, installing multiple things, etc.. I always set the scrollback to 9999 on NT, should look into how that might be on on FreeBSD, or use X and some xterm clone, or tee.. Some of my attempts at starting smbd and nmbd resulted in a bunch of nmbd processes, like until problems set in, but I didn't bother to characterize what I'd done. - Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:14:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from raq.tabernae.com (raq.gashalot.com [208.197.146.18]) by hub.freebsd.org (Postfix) with ESMTP id 7791637B503 for ; Sun, 15 Oct 2000 11:14:49 -0700 (PDT) Received: from localhost (systemuser@localhost [127.0.0.1]) by raq.tabernae.com (8.9.3/8.8.8) with ESMTP id OAA24746 for ; Sun, 15 Oct 2000 14:13:31 -0400 Date: Sun, 15 Oct 2000 14:13:29 -0400 (EDT) From: Robert Gash X-Sender: gashalot@raq.tabernae.com To: freebsd-questions@freebsd.org Subject: ATAPI CD Errors when ripping music Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK guys, I'm using the "grip" utility to rip most of my CDs to MP3 so I don't have to fumble around with those stupid CDs anymore, and so I can take my collection back home where it's relatively safe from the theiving hands of the dorm hall-wanderers. For those of you who don't know, grip just makes the ripping process simpler by interfacing between cdda2wav, lame, and cddb so you don't have to fumble with naming, etc. However, when cdda2wav is running, some CDs generate this error when cdda2wav is grabbing the audio from them: acd0: READ_CD - ILLEGAL REQUEST asc=64 ascq=00 error=04 This message is repeated hundreds and hundreds of times on some discs, always on the last few tracks. However, some CDs don't generate this error at all, and I haven't been able to figgure out why (the same thing happens on my burner on the same IDE chain). Does anyone know how to fix this? Here's the output you probably want concerning my IDE setup (from a 4.1-STABLE kernel I built specifically for this machine): Sep 24 21:14:14 jamesbrown /kernel: atapci0: port 0xf000-0xf00f at device 7.1 on pci0 Sep 24 21:14:14 jamesbrown /kernel: ata0: at 0x1f0 irq 14 on atapci0 Sep 24 21:14:14 jamesbrown /kernel: ata1: at 0x170 irq 15 on atapci0 Sep 24 21:14:14 jamesbrown /kernel: ad0: 58623MB [119108/16/63] at ata0-master using UDMA3 Sep 24 21:14:14 jamesbrown /kernel: acd0: CDROM at ata1-master using PIO4 Sep 24 21:14:14 jamesbrown /kernel: acd1: CD-RW at ata1-slave using PIO4 -R -- Robert Gash - CS Major \ gashalot@gashalot.com - gte393u@prism Georgia Tech - Atlanta GA \ www.gashalot.com - www.techwreck.net "I can't complain, but sometimes I still do." -Joe Walsh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:14:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from raq.tabernae.com (raq.gashalot.com [208.197.146.18]) by hub.freebsd.org (Postfix) with ESMTP id 2844F37B502 for ; Sun, 15 Oct 2000 11:14:48 -0700 (PDT) Received: from localhost (systemuser@localhost [127.0.0.1]) by raq.tabernae.com (8.9.3/8.8.8) with ESMTP id OAA24746 for ; Sun, 15 Oct 2000 14:13:31 -0400 Date: Sun, 15 Oct 2000 14:13:29 -0400 (EDT) From: Robert Gash X-Sender: gashalot@raq.tabernae.com To: freebsd-questions@freebsd.org Subject: ATAPI CD Errors when ripping music Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK guys, I'm using the "grip" utility to rip most of my CDs to MP3 so I don't have to fumble around with those stupid CDs anymore, and so I can take my collection back home where it's relatively safe from the theiving hands of the dorm hall-wanderers. For those of you who don't know, grip just makes the ripping process simpler by interfacing between cdda2wav, lame, and cddb so you don't have to fumble with naming, etc. However, when cdda2wav is running, some CDs generate this error when cdda2wav is grabbing the audio from them: acd0: READ_CD - ILLEGAL REQUEST asc=64 ascq=00 error=04 This message is repeated hundreds and hundreds of times on some discs, always on the last few tracks. However, some CDs don't generate this error at all, and I haven't been able to figgure out why (the same thing happens on my burner on the same IDE chain). Does anyone know how to fix this? Here's the output you probably want concerning my IDE setup (from a 4.1-STABLE kernel I built specifically for this machine): Sep 24 21:14:14 jamesbrown /kernel: atapci0: port 0xf000-0xf00f at device 7.1 on pci0 Sep 24 21:14:14 jamesbrown /kernel: ata0: at 0x1f0 irq 14 on atapci0 Sep 24 21:14:14 jamesbrown /kernel: ata1: at 0x170 irq 15 on atapci0 Sep 24 21:14:14 jamesbrown /kernel: ad0: 58623MB [119108/16/63] at ata0-master using UDMA3 Sep 24 21:14:14 jamesbrown /kernel: acd0: CDROM at ata1-master using PIO4 Sep 24 21:14:14 jamesbrown /kernel: acd1: CD-RW at ata1-slave using PIO4 -R -- Robert Gash - CS Major \ gashalot@gashalot.com - gte393u@prism Georgia Tech - Atlanta GA \ www.gashalot.com - www.techwreck.net "I can't complain, but sometimes I still do." -Joe Walsh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:21:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fusion.unixfreak.org (cx272244-b.orng1.occa.home.com [24.1.179.34]) by hub.freebsd.org (Postfix) with ESMTP id 60A1937B503 for ; Sun, 15 Oct 2000 11:21:50 -0700 (PDT) Received: (from bhishan@localhost) by fusion.unixfreak.org (8.10.2/8.10.2) id e9FILn032095 for freebsd-questions@freebsd.org; Sun, 15 Oct 2000 11:21:49 -0700 (PDT) From: Bhishan Hemrajani Message-Id: <200010151821.e9FILn032095@fusion.unixfreak.org> Subject: problem mount cd w/matcd driver To: freebsd-questions@freebsd.org Date: Sun, 15 Oct 2000 11:21:48 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a soundblaster cd-rom drive that was made to be plugged into a soundblaster audio card. I successfully got the drive to be recognized, created the proper entries in /dev, and added this line to /etc/fstab: /dev/matcd0c /cdrom cd9660 ro,noauto 0 0 However, when I try to mount the cd rom with: # mount /cdrom I get this error: cd9660: Input/output error I also encounter these messages on the console: Oct 15 11:16:49 fusion /kernel: matcd0: Illegal data mode for this track while reading block 64 Oct 15 11:16:49 fusion last message repeated 5 times This is the output from dmesg: matcd - Matsushita (Panasonic) CD-ROM Driver by FDIV, Version 1(26) 18-Oct-95 matcdc0 at 0x230-0x233 on isa matcdc0 Host interface type 0 matcd0: [CR-5630.75] What am I doing wrong? --bhishan -- Bhishan Hemrajani / bhishan@fusion.unixfreak.org / PGP: 0xFAC75561 Finger bhishan@fusion.unixfreak.org for more information. UNIX *is* user friendly, it's just picky about its friends. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:44:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from n5ial.gnt.com (n5ial.gnt.com [204.49.69.6]) by hub.freebsd.org (Postfix) with ESMTP id 146D937B66E for ; Sun, 15 Oct 2000 11:44:33 -0700 (PDT) Received: (from jim@localhost) by n5ial.gnt.com (8.7.5/8.7.3) id NAA03311 for freebsd-questions@FreeBSD.ORG; Sun, 15 Oct 2000 13:38:44 -0500 Date: Sun, 15 Oct 2000 13:38:44 -0500 From: Jim Graham To: freebsd-questions@FreeBSD.ORG Subject: ftp: "500 Illegal PORT range rejected." Message-ID: <20001015133844.A3245@n5ial.gnt.net> Mail-Followup-To: freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i X-PGP: see http://www.gnt.net/~n5ial for PGP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm having trouble with ftp from my new FreeBSD system...need some help. When I try to ftp to (more or less) any site, with ncftp I'm able to use cd, but everything else (ls, dir, get, etc.) results in: Error: connect failed. Reason: Connection refused So, hoping to get a more verbose error message, I tried plain old /usr/bin/ftp, and got the following when attempting an ls, dir, or get: ftp> ls 500 Illegal PORT range rejected. ftp> ls -l 500 Illegal PORT range rejected. 425 Can't build data connection: Connection refused. ftp> get README local: README remote: README 500 Illegal PORT range rejected. ftp> Anyone have any idea what's going on here? Thanks, --jim -- 73 DE N5IAL (/4) MiSTie #49997 < Running Linux 2.2.12 > jim@n5ial.gnt.net || j.graham@ieee.org ICBM / Hurricane: 30.39735N 86.60439W Down, not across. --alt.sysadmin.recovery motto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:49:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 7AFF637B66E for ; Sun, 15 Oct 2000 11:49:17 -0700 (PDT) Received: from jayk3 (user-2ini8bs.dialup.mindspring.com [165.121.33.124]) by smtp6.mindspring.com (8.9.3/8.8.5) with SMTP id OAA08970 for ; Sun, 15 Oct 2000 14:49:10 -0400 (EDT) From: jay.krell@cornell.edu Message-ID: <005801c036d8$6a8aa1c0$8001a8c0@jayk3> Reply-To: To: Subject: debuggable ports? Date: Sun, 15 Oct 2000 11:47:40 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3612.1700 x-mimeole: Produced By Microsoft MimeOLE V4.72.3612.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So..I think one of the points of the (potential) open/free (yes, I know the definitions) software is not just having the source to read, but having the source to step into with a debugger. Is there any chance of an easy to use mode of the ports where everything keeps symbols? I tried "make install STRIP=" since it seemed that if I set it to empty on the command line, the use of install wouldn't strip the binaries. But the first thing I tried this with /usr/ports/lang/python15, got stripped anyway, possibly due to stuff in its "native" install, maybe this is just a bug in the Python port...no, I just tried debugging the built-not-installed binary and XFree86-4 too, no symbols. I guess these weren't built with -g. I think in Unix people tie the notions of having debug symbols and not being optimized?, but these are definitely seperateable, just that generating accurate symbols for optimized code is harder and Visual C++ for example does a poor job at it. The symbols can still easily be better than nothing. Is there any notion in Unix of puting symbols in a seperate file or a parallel directory tree? On Windows NT/2k, symbols are rarely in the .exe/.dll and sometimes not in the same directory. I admit this is highly debatable, splitting off the symbols leads to a huge problem of findinding/installing symbols, but usually when you build everything on the local machine it works with a minimum of problems. - Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:50: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from server3.lojasobino.com.br (server3.lojasobino.com.br [200.248.23.160]) by hub.freebsd.org (Postfix) with ESMTP id 06C4937B66C for ; Sun, 15 Oct 2000 11:49:58 -0700 (PDT) Received: from pc2 (server1.lojasobino.com.br [200.248.23.150]) by server3.lojasobino.com.br (8.9.3/8.9.3) with SMTP id QAA49755 for ; Sun, 15 Oct 2000 16:49:32 -0200 (EDT) (envelope-from Fabrizzio.Batista@lojasobino.com.br) Message-ID: <00ca01c036d7$ff8a5be0$65010180@lojasobino.com.br> From: "Fabrizzio Batista" To: Subject: Re: Problems with IPSEC Date: Sun, 15 Oct 2000 16:44:49 -0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 Thanks for help me, Iīm very lost. Do you make IPSEC works ??? So, see the configuration and setkey output. * LAN A - Subnet 192.168.1.0/24 -> IP: 200.248.23.134 IPSEC.CONF: flush; spdflush; spdadd 192.168.1.0/24 128.1.1.0/24 any -P out ipsec ah/tunnel/200.248.23.134-200.248.23.150/require; spdadd 128.1.1.0/24 192.168.1.0/24 any -P in ipsec ah/tunnel/200.248.23.150-200.248.23.134/require; add 200.248.23.134 200.248.23.150 ah-old 0xd10003 -m any -A keyed-md5 "this is the test"; add 200.248.23.150 200.248.23.134 ah-old 0xd10004 -m any -A keyed-md5 "this is the test"; setkey -D: 200.248.23.150 200.248.23.134 ah mode=any spi=13697028(0x00d10004) reqid=0(0x00000000) A: md5 74686973 20697320 74686520 74657374 replay=0 flags=0x00000041 state=mature seq=1 pid=390 created: Oct 15 16:26:57 2000 current: Oct 15 16:33:30 2000 diff: 393(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 refcnt=1 200.248.23.134 200.248.23.150 ah mode=any spi=13697027(0x00d10003) reqid=0(0x00000000) A: md5 74686973 20697320 74686520 74657374 replay=0 flags=0x00000041 state=mature seq=0 pid=390 created: Oct 15 16:26:57 2000 current: Oct 15 16:33:30 2000 diff: 393(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 refcnt=1 setkey -DP: 128.1.1.0/24[any] 192.168.1.0/24[any] any in ipsec ah/tunnel/200.248.23.150-200.248.23.134/require spid=4 seq=1 pid=389 refcnt=1 192.168.1.0/24[any] 128.1.1.0/24[any] any out ipsec ah/tunnel/200.248.23.134-200.248.23.150/require spid=3 seq=0 pid=389 refcnt=1 * LAN B - Subnet 128.1.1.0/24 -> IP: 200.248.23.150 IPSEC.CONF: flush; spdflush; spdadd 128.1.1.0/24 192.168.1.0/24 any -P out ipsec ah/tunnel/200.248.23.150-200.248.23.134/require; spdadd 192.168.1.0/24 128.1.1.0/24 any -P in ipsec ah/tunnel/200.248.23.134-200.248.23.150/require; add 200.248.23.134 200.248.23.150 ah-old 0xd10003 -m any -A keyed-md5 "this is the test"; add 200.248.23.150 200.248.23.134 ah-old 0xd10004 -m any -A keyed-md5 "this is the test"; setkey -D: 200.248.23.150 200.248.23.134 ah mode=any spi=13697028(0x00d10004) reqid=0(0x00000000) A: md5 74686973 20697320 74686520 74657374 replay=0 flags=0x00000041 state=mature seq=1 pid=1404 created: Oct 15 18:21:18 2000 current: Oct 15 18:36:19 2000 diff: 901(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 refcnt=1 200.248.23.134 200.248.23.150 ah mode=any spi=13697027(0x00d10003) reqid=0(0x00000000) A: md5 74686973 20697320 74686520 74657374 replay=0 flags=0x00000041 state=mature seq=0 pid=1404 created: Oct 15 18:21:18 2000 current: Oct 15 18:36:19 2000 diff: 901(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 refcnt=1 setkey -DP: 192.168.1.0/24[any] 128.1.1.0/24[any] any in ipsec ah/tunnel/200.248.23.134-200.248.23.150/require spid=5 seq=1 pid=1405 refcnt=1 128.1.1.0/24[any] 192.168.1.0/24[any] any out ipsec ah/tunnel/200.248.23.150-200.248.23.134/require spid=4 seq=0 pid=1405 refcnt=1 Thanks for all !!! > > What do the actual SAD and SPD entries look like, i.e. what does > setkey -D and setkey -DP show? Need to see this on the other machine > as well. > > > Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 11:53: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailb.telia.com (mailb.telia.com [194.22.194.6]) by hub.freebsd.org (Postfix) with ESMTP id 1AB2137B66F for ; Sun, 15 Oct 2000 11:53:00 -0700 (PDT) Received: from ents02 (t3o90p32.telia.com [195.67.217.32]) by mailb.telia.com (8.9.3/8.9.3) with SMTP id UAA14750; Sun, 15 Oct 2000 20:52:54 +0200 (CEST) From: "James A Wilde" To: "Mc Claude" , Subject: RE: Date: Sun, 15 Oct 2000 20:53:30 +0200 Message-ID: <000201c036d9$35df6590$8208a8c0@iqunlimited.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My limited experience indicates that Unix is much more damanding of the hardware than, say, Windows. You may have 192 Mb ram, but if 64 Mb of it is shaky from the Unix point of view you can get signal 11 and still be able to run Windows with just the occasional GPF, which makes you curse and reboot. Try taking out your RAM chips one at a time and see how you get on. If you find that install continues when, say, chip 2 is removed, try and sell that one to a Windows user and get yourself a new one. If I'm on the wrong track, hopefully someone will come in on this thread and correct me. mvh/regards James > -----Original Message----- > From: Mc Claude [mailto:privat-mc@gmx.de] > Sent: Sunday, October 15, 2000 12:43 > To: james.wilde@telia.com > Subject: > > > Hello! > > Yes it isn't Fault 11, it is Signal 11! But I think I can full fill all > hardware requirements! > 192 MB RAM, enough space on HD! I've downloaded the FreeBSD from server as > ISO then I burned it on a CD but this CD can't be loaded after BIOS > sequence! So I've made boot disks! And then I've did all which > you have read > in the last e-mail! So I hope you help me! > > CU! > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 12: 1:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with SMTP id E7A6937B503 for ; Sun, 15 Oct 2000 12:01:36 -0700 (PDT) Received: (qmail 48474 invoked by uid 1001); 15 Oct 2000 19:01:28 -0000 Message-ID: <20001015190128.48473.qmail@gray.westgate.gr> From: "Giorgos Keramidas" Date: Sun, 15 Oct 2000 22:01:28 +0300 To: Charles Thompson Cc: freebsd-questions@FreeBSD.org Subject: Re: why should root access have such a common user name References: <20001015093533.80353.qmail@web9207.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001015093533.80353.qmail@web9207.mail.yahoo.com>; from c_gulll@yahoo.com on Sun, Oct 15, 2000 at 02:35:33AM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Oct 15, 2000 at 02:35:33AM -0700, Charles Thompson wrote: > This may soud somewhat asinine, but I cant help but > ask. Is it possible to have the system not use root as > a user for root access. To me if knowing the user name > is half the battle. Unless you are prepared to heavily edit /etc/mtree/* files, you should not change the name of the `root' account. A lot of these files include lines like: # cd /etc # find ./mtree -type f | xargs grep root | head -1 ./mtree/BSD.include.dist:/set type=dir uname=root gname=wheel mode=0755 and that is the *first* line only that matches :-))) -- Giorgos Keramidas, For my public pgp2 key: finger -l keramida@diogenis.ceid.upatras.gr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 12:19:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id DFBD637B502 for ; Sun, 15 Oct 2000 12:19:21 -0700 (PDT) Received: from list1.xs4all.nl (list1.xs4all.nl [194.109.6.52]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id VAA15358 for ; Sun, 15 Oct 2000 21:19:18 +0200 (CEST) Received: (from root@localhost) by list1.xs4all.nl (8.9.3/8.9.3) id VAA05630; Sun, 15 Oct 2000 21:19:18 +0200 (CEST) From: Luuk van Dijk To: freebsd-questions@freebsd.org X-Via: imploder /usr/local/lib/mail/news2mail/news2mail at list1.xs4all.nl Subject: how to set ata disk spindown timeout Date: Sun, 15 Oct 2000 21:17:32 +0200 Organization: Mind/Matter Message-ID: <39EA02CC.1C749D2@xs4all.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG LS. Is it possible in freebsd to set spindown timeouts on ata drives. I have a machine that is only a dialup router, and does not need its disk after a while. in linux I can say hdparm -S 12 /dev/hda to make it stop rotating (andmaking noise) Is there an equivalent in FreeBSD. Thanks, L. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 12:21:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ruby.he.net (ruby.he.net [216.218.187.2]) by hub.freebsd.org (Postfix) with ESMTP id C020037B66D for ; Sun, 15 Oct 2000 12:21:56 -0700 (PDT) Received: from corten5.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by ruby.he.net (8.8.6/8.8.2) with ESMTP id MAA27414; Sun, 15 Oct 2000 12:21:47 -0700 Date: Sun, 15 Oct 2000 12:19:25 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten5 To: jay.krell@cornell.edu Cc: questions@FreeBSD.ORG Subject: Re: FreeBSD 3.x->4.1, my experience, Samba, dhcpd, ppp, nat, dns, named In-Reply-To: <001001c03686$e697a7b0$8001a8c0@jayk3> 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 At Sun, 15 Oct 2000 it looks like jay.krell@cornell.edu composed: -->-- /etc/rc.local -- --> -->Ok well, the answer is embedded in there. The boilerplate for /etc/rc.local -->apparently changed between 3.x and 4.x. Upgrading requires updating it, -->adding the "source_rc_confs" line. A better solution might be copy the last -->part of rc.local to something like /usr/local/etc/rc.d/dhcpd.sh. I don't -->know. This works for me. My utmost thanks for the full email you sent, I am using *BSD's in my house and work now in conjunction to the existing Linux machines and when I went looking for the (Linux) /etc/rc.d/rc.local all I came up with was rc.conf. Your mention of /etc/rc.local made me read the manpage for rc.conf and I have to ask if you mean the file /etc/rc.local or as the manpage states, /etc/rc.conf.local ? (A) Is there a difference ? (B) Is it used as a "last chance" file to add stuff as has been the /etc/rc.d/rc.local in Linux ? (which causes big debates). -- Bill Schoolcraft http://wiliweld.com PO Box 210076 San Francisco, CA 94121 " saevis tranquillus in undis " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 12:48: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 4CC4437B66D for ; Sun, 15 Oct 2000 12:48:06 -0700 (PDT) Received: (qmail 1275 invoked by uid 100); 15 Oct 2000 19:48:05 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14826.2549.212035.934524@guru.mired.org> Date: Sun, 15 Oct 2000 14:48:05 -0500 (CDT) To: media@ct1.nai.net Cc: questions@freebsd.org Subject: Re: changing root shell?? In-Reply-To: <28250796@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG media@ct1.nai.net writes: > >> I've been entering commands with sh syntax all along. I haven't > >> received any syntax errors. Does this mean I could have trashed my > >> system without knowing it?? > >The odds are very very slim, especially considering that you received > >no syntax errors that you have damaged your system at all. > Whew!! Thanx :) It still amazes me that I haven't received any syntax > errors, since afaik, sh and csh use very different syntax. I've also > noticed some scripts are written in sh and some are written in csh -- how > does the system know what to do?? First, the only syntax difference you're liable to run into doing simple command lines is redirecting standard error. If you tend to set shell variables at the keyboard, that will get you. Second, if you try invoking csh on an sh script (or vice versa), you will almost certainly get errors. After all, you set variables with a different syntax between the two shells. However, the two are just interpreters to the system. It distinguishes them the same way it distinguishes perl, python, tcl or ruby scripts. > Actually, _The Complete FreeBSD_ and _The FreeBSD handbook_ do make that > clear. Even sysinstall suggests creating another account besides root for > regular use. Regardless, I am doing sys admin duties (eg. trying to get my > printer to work). What I think FreeBSD should make clear, is which shell > is being used by root when you first install it. The welcome message > should say "Listen you clueless newbie, root starts with the csh shell even > though every other Unix system in your life has started with sh unless you > changed it" or something similar :) Well, you could equally well wonder why other Unix variants don't say the same thing about their shells. The answer is that you should have two kinds of people doing things as root: first time sysadmins, who should know they don't know what's going on and check things like that, and experienced sysadmins, who should be cluefull enough to realize that they've just changed systems, and check for such differences. > >You've got bash and relatives right. You might note that the actual > >sequence for many things is VISUAL (if set), the EDITOR. This is true > >for vipw, even though the man page doesn't mention it. The idea was > >that you would get VISUAL if your termain could support a visual > >editor, otherwise EDITOR. For bash, you can add that .profile, and > >other things will inherit it. > I don't understand. What is VISUAL?? A shell variable, just like EDITOR. > How do I remake the password db?? Use the standard tools for editing the password file - passwd, vipw, chsh, adduser, etc. - and they will do it for you before they exit. > >> My tcsh is in /usr/local/bin/tcsh, which wouldn't work in > >>single user mode. > >That's bad. All files that are integral to the system (ie, required > >for the system to boot in single user mode for rescue, recovery, > >etc) should be in the root filesystem. > sh and csh are in /bin and part of the FreeBSD install. I added tcsh and > bash on my own, so they are in /usr/local/bin The change to tcsh (as /bin/csh) is recent; older systems won't do that. > >Edit /etc/passwd and change the /bin/sh or /bin/csh or what-have-you to > >whatever you want your shell to be. > I used chsh -s to change my root to sh, and myself as user (the guy who > reads the man pages :) as bash. This is the better way. > >vi is a superior editor, it just takes some getting used to. Once you > >master the commands, editing with vi is quicker than any other editor out > >there. > I need an editor I can use right now to get my system configured, and many > commands (eg. chsh) automatically call up vi. I'd like to spend less time > in man vi, and more time getting things done. As suggested, set EDITOR (or VISUAL) and use that. Of course, you should know an editor that's on the root file system for the same reasons that you need to know a shell that's on the root file system. That meand ed. > Some commands call up a default editor. I don't have pico and have no > intention of going back to pine (maybe I'll try mutt, I'm using Eudora Pro > on my LEM now -- I know you are mostly PC guys, but 040/7.6.1 is a rock). > Imho, using emacs without X is silly (no flames, please) and wouldn't want > to use X if I were fixing a problem as root. I'd like to set it to ee. Any application that runs on Unix and doesn't obey at least EDITOR needs to be fixed. Set the variable. As for emacs without X - I switched to emacs because it would let me display multiple files at one time. Vi wouldn't do that at the time, and the argument against adding it was that everyone was going to have windowing systems, so you should just open another window. From that perspective, emacs is one of the few visual editors that it isn't silly to run without X. ; Sun, 15 Oct 2000 12:50:43 -0700 (PDT) Received: from jayk3 (user-2ini8bs.dialup.mindspring.com [165.121.33.124]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with SMTP id PAA30046; Sun, 15 Oct 2000 15:50:33 -0400 (EDT) From: jay.krell@cornell.edu Message-ID: <003f01c036e0$ff075a20$8001a8c0@jayk3> Reply-To: To: "Bill Schoolcraft" Cc: Subject: Re: FreeBSD 3.x->4.1, my experience, Samba, dhcpd, ppp, nat, dns,named Date: Sun, 15 Oct 2000 12:49:03 -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 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Bill Schoolcraft >... >My utmost thanks for the full email you sent, I am using *BSD's in >my house and work now in conjunction to the existing Linux machines >and when I went looking for the (Linux) /etc/rc.d/rc.local all I >came up with was rc.conf. > >Your mention of /etc/rc.local made me read the manpage for rc.conf >and I have to ask if you mean the file /etc/rc.local or as the >manpage states, /etc/rc.conf.local ? There was no mistake. I meant /etc/rc.local. cd /etc grep rc.local * | more There is also such a thing as rc.conf.local, nonexistant by default I think. grep rc.conf.local * | more I think that turns up empty. cd /etc/defaults grep rc.conf.local * | more That does not turn up empty, I didn't track it down completely. man rc references both rc.local and rc.conf.local. I'm out of patience for reading it though.. >(A) Is there a difference ? Yes. I don't know exactly, but rc.conf.local probably is supposed to look something like rc.conf. Have simple: foo_enable="yes" bar_enable="no" xxx_flags="-a -b" commands whereas /etc/rc and /etc/rc.local are fairly open ended. I also think that rc.conf.local is not considered obsolete but rc.local is. I'm sure somone (or some *nix flavor/distro) has files named like local.rc or conf.rc.local for some reason.. Every combination of some strings appears to mean something in *nix.. >(B) Is it used as a "last chance" file to add stuff as has been the >/etc/rc.d/rc.local in Linux ? (which causes big debates). Yes, I'd say so. More importantly, /etc/rc.local is considered obsolete, in comments in /etc/rc. Realize that this is all largely about convention. You can do pretty arbitrary things in pretty arbitrary files in pretty arbitrary places. But something starts the whole process and there is a "framework" where certain files, both statically defined like "etc/rc.conf" and dynamically like "/usr/local/etc/rc.d/*.sh" get run automatically. At the very least, any file that by default has lots of stuff in it, you don't have to edit. It will run some other file that by default is empty or small or nonexistant. This all reminds me autoexec.bat/config.sys. Easy to apply a text editor to, somewhat easy to backup/restore/deploy, but maybe too many files in too many directories, hard to apply a friendly setup or gui too.. meanwhile the Windows registry ought to be broken up into multiple files.. at least named like "critical for system boot and very machine specific" "network options" "user specific ie5 autocompletes" "window positions and other nonessentials".. which is just to say I'm very unhappy with both of the extremes I've used... ..Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 12:58:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from yes.thisisa.com (yes.thisisa.com [64.232.37.228]) by hub.freebsd.org (Postfix) with ESMTP id 4BDC437B503 for ; Sun, 15 Oct 2000 12:58:54 -0700 (PDT) Received: (from nobody@localhost) by yes.thisisa.com (8.11.1/8.11.1) id e9F5CAF00651; Sat, 14 Oct 2000 22:12:10 -0700 (MST) (envelope-from todd@thisisa.com) From: Todd Mortensen X-Authentication-Warning: yes.thisisa.com: nobody set sender to todd@thisisa.com using -f To: Otter Subject: RE: pxeboot automated installs. Message-ID: <971586655.39e93c5f90788@mail.thisisa.com> Date: Sat, 14 Oct 2000 22:10:55 -0700 (MST) Cc: Todd Mortensen , freebsd-questions@FreeBSD.ORG References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.3 X-Originating-IP: 24.21.124.141 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After further reading that night I found a part of the 4.1 release notes that explains all the problems I was having with the v0.96 of PXE. Here is the quote from http://www.freebsd.org/releases/4.1R/notes.html Support for Intel's Wired for Management 2.0 (PXE) was added to the FreeBSD boot loader. Due to API differences, the older PXE versions are not supported. This allow network booting using DHCP. So it was an API difference that was my battle. Thanks. Quoting Otter : > Todd, > Check out http://people.freebsd.org/~alfred/pxe/ > -Otter > > }-----Original Message----- > }From: owner-freebsd-questions@FreeBSD.ORG > }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of > }Todd Mortensen > }Sent: Friday, October 13, 2000 8:55 PM > }To: freebsd-questions@FreeBSD.ORG > }Subject: pxeboot automated installs. > } > } > } > }I am trying to use the pxeboot loader in freebsd to do > }automated installes. > } > }I have everything setup and working as far as tftp and isc-dhcpd. > } > }I have also found the make file in sys/boot/i386/loader and > }have tried setting > }pxe to nfs and to tftp. I would prefer to get it to work on > }the default > }setting of nfs if possible. > } > }Upon boot of any pxe machines they get a dhcp address. Then > }tftp the pxeboot > }file. After this btx takes over and the last message I get > }is where it should > }start getting the files off of the nfs server. like the > }kernel. But the > }messages I see are this. > } > }bootp: no reply > }pxe_open: server addr: 0.0.0.0 > }pxe_open: server path: /pxeroot > }pxe_open: gateway ip: 0.0.0.0 > } > }Here is what my dhcpd.conf file looks like. > } > }option domain-name "thisisa.net"; > }option subnet-mask 255.255.255.0; > }option broadcast-address 10.255.255.255; > }option domain-name-servers 10.255.255.3; > }filename "pxeboot"; > }server-identifier 10.255.255.3; > }server-name "portal"; > }default-lease-time 7200; > }max-lease-time 7200; > }subnet 10.255.255.0 netmask 255.255.255.0 { > } option root-path "/usr/releng4"; > } server-name "portal"; > } option domain-name-servers 10.255.255.3; > } filename "pxeboot"; > } next-server 10.255.255.3; > } range 10.255.255.30 10.255.255.230; > } } > }subnet 192.168.200.0 netmask 255.255.255.0 { > } not authoritative; > }} > } > }I have also tried this with a dynamic bootp range. > } > }I have only been able to get the pxe_open messages to change > }its path by hand > }editing the /usr/src/sys/boot/i386/libi386/pxe.h file and > }changeing the static > }value of /pxeroot to what I want. > } > }I still have not been able to change the server address from 0.0.0.0 > } > }Any experience anyone has with useing the intel pxe boot > }loader would be > }awesome, the pxe version on the motherboard is v 0.96 > } > } > }Thanks. > } > } > }To Unsubscribe: send mail to majordomo@FreeBSD.org > }with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 13: 4:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from diskfarm.firehouse.net (rdu25-12-043.nc.rr.com [24.25.12.43]) by hub.freebsd.org (Postfix) with ESMTP id DBA4237B503 for ; Sun, 15 Oct 2000 13:04:48 -0700 (PDT) Received: (from abc@localhost) by diskfarm.firehouse.net (8.11.0/8.11.0) id e9FK7VV98722; Sun, 15 Oct 2000 16:07:31 -0400 (EDT) (envelope-from abc) Date: Sun, 15 Oct 2000 16:07:31 -0400 From: Alan Clegg To: Dima Dorfman Cc: Mike Meyer , questions@freebsd.org Subject: Re: Dynamic DNS server on freebsd? Message-ID: <20001015160731.A98630@diskfarm.firehouse.net> References: <14825.24053.455214.811803@guru.mired.org> <20001015082027.BC1DB1F20@static.unixfreak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001015082027.BC1DB1F20@static.unixfreak.org>; from dima@unixfreak.org on Sun, Oct 15, 2000 at 01:20:27AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Unless the network is lying to me again, Dima Dorfman said: > > Well, the web site didn't turn up anything. I'd like to set up a > > dynamic DNS server on a FreeBSD box. > Basically, you need a dynamic zone, then you need the machine with the > dynamic IP address to ask your server to update it. To make a dynamic > zone (and you probably shouldn't do this with yourdomain.com, but > rather something like dyn.yourdomain.com) you need to specify an This and /usr/ports/net/dhid is all you need. Enjoy. AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 13:13:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 0671B37B66C for ; Sun, 15 Oct 2000 13:13:39 -0700 (PDT) Received: from jayk3 (user-2ini9c9.dialup.mindspring.com [165.121.37.137]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with SMTP id QAA12958; Sun, 15 Oct 2000 16:13:25 -0400 (EDT) From: jay.krell@cornell.edu Message-ID: <001401c036e4$2daf4b00$8001a8c0@jayk3> Reply-To: To: "Bill Schoolcraft" , "Matthew Emmerton" , Subject: Re: FreeBSD 3.x->4.1, my experience, Samba, dhcpd, ppp, nat, dns,named Date: Sun, 15 Oct 2000 13:11:55 -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 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > /usr/rc.local vs. /usr/local/etc/rc.d/dhcpd.sh You cannot do what was suggested/I said, moving my dhcpd stuff from /etc/rc.local (leaving it empty/nonexistant) to /usr/local/etc/rc.d/dhcpd.sh, because /usr/local/etc/rc.d/*.sh are run after /etc/rc.conf but with its assignments not available. I debug this stuff by putting in echo commands and rebooting. So, what I did is moved it to the bottom of /etc/rc.conf. This is somewhat contrary to the "design" of rc.conf, since it now contains more than just assignments. The other best option would probably be to hardcode /usr/local/etc/rc.d/dhcpd.sh. I tend to favor moving more settings into fewer files though, it makes it easier to backup and deploy. - Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 13:17:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 1462B37B66C for ; Sun, 15 Oct 2000 13:17:51 -0700 (PDT) Received: (qmail 1968 invoked by uid 100); 15 Oct 2000 20:17:50 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14826.4334.336466.158680@guru.mired.org> Date: Sun, 15 Oct 2000 15:17:50 -0500 (CDT) To: Brian B Cc: questions@freebsd.org Subject: Re: USB Hard Drive Question In-Reply-To: <103823930@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian B writes: > I have a USB Hard Drive and I am running FreeBSD 4.1.1-STABLE > currently. When I plug the Hard Drive into my Unix machine it > recognizes the following: > > usb0: on uhci0 > usb0: USB Revision 1.0 > ugen0: buslink-inc USB-ATAPI4 Bridge Controller, rev. 1.00/1.00 addr 2 > > So it seems like it see's the USB Hard Drive Controller but I can't > figure out what the Hard Drive device name would be? Does anyone > know if this drive will work at all, am I missing something? What you're missing is knowing that the USB driver recognizes lots of devices without having anything more than a generic driver for them. This is useful, because userland code can do things with the ugen devices without a driver. If a more specific driver is available, that shows up as well. Here's my USB printer: ulpt0: Belkin Components (2nd) F5U002 Parallel printer adapter, rev 1.00/1.04, a ddr 2, iclass 7/1 The device name is the first part of the dmesg line (ulpt0). The umass driver should work for this device, as it claims to handle ATAPI drives. If it does, you'll get a "umass0" device. If it isn't, it may be a quirk in the drive, and that will have to be fixed in code. Either that, or the USB-ATAPI bridge isn't a umass ATAPI device, in which case you're out of luck. ; Sun, 15 Oct 2000 13:36:29 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id KAA30457; Sun, 15 Oct 2000 10:36:23 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 15 Oct 2000 10:36:23 -1000 (HST) From: Vincent Poy To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Best DSL Router? In-Reply-To: <5.0.0.25.0.20001015142252.04506b30@mail.Go2France.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 Oct 2000, Len Conrad wrote: > >ADSL is not full duplex. > > Then what is it? half duplex? simplex? It can be Adaptive Full Duplex, remember how the Telebit Packetized Ensemble Protocol (PEP) and USRobotics High Speed Technology (HST) protocol worked? It's not true Full Duplex. > No, xDSL is full duplex at stated rate(s) on two unconditioned wires. True but ADSL is shared with voice while HDSL and SDSL isn't on the same two wires. > "ADSL (asymmetric digital subscriber line) is called "asymmetric" > because most of its two-way or duplex bandwidth is devoted to the > downstream direction, sending data to the user. Only a small portion > of bandwidth is available for upstream. > Published by : Computer Reseller News > Date : Monday, September 04, 2000" That's not the only reason. ADSL is shared with Voice by all the CLEC's and LEC's. Other forms of DSL could be asymmetric like the Covad 1.5down, 384k up offering but is not shared by voice. > >ADSL is Assymetrical DSL. SDSL is Full Duplex. > > You're mixing your terms. xDSL is full duplex. > > (A)symmetric refers only to the relative values of the up and down > signalling rates, not to the media access scheme. > > Full duplex refers to the simultaneous send and receive, half duplex > is only one party sending at a time. This is a one-sender-at-time > media access scheme, just like 10BaseT Ethernet or Token Ring or ARCnet. > > In xDSL, two frequency bands are used to provide two independent > "media" so each sender can send simultaneously. Well, I remember I asked Netopia this question since I had the Netopia R7100C router and wanted to convert it to a R9100C router, and I asked them the same question and this was their answer: Long answer - A 1.5 Mbitps connection should be around 192 kbytes per second download, while a 128kbitps should be around a 16 kbyte per second upload. ADSL is, by definition, asymmetrical and asynchronous, which means that there is only one pipe that is shared in both directions. So, the speeds that you are showing are actually in line with the line speeds you mentioned. > >With PacBell ADSL, the upstream 128k is shared with the > >downstream 1.5Mbps on a standard phone line connected to a Alcatel DSLAM. > > There's no band sharing going on. The 128 kbits upchannel has its > frequency band and simultanously the 1.5 Mb/s channel has a separate > frequency band. They can both send simultaneously, aka "full duplex". They can but how do you explain that the downstream band slows down whenever the upstream band is in use? Remember, Netopia makes the xDSL routers so they are familiar with the technology that both Copper Mountain and Alcatel uses. > >If one was downloading only, one does get 150kbytes/sec which > >193kbytes/sec is the max for a 1.544Mbps connection. If you were > >uploading, it would be 13kbytes/sec up and the downloads would slow down > >to 30kbytes/sec. > > If there is simultaneous transmission in both directions, as you say > there is on the BA DSL (at whatever effective signalling rate), then > the xDSL line is full duplex. Not always, remember even with 10BT Ethernet, even though it's half duplex, it can still send and receive at the same time, just slow. > >This is only a problem if you do both simultaneously > > Which is a the most common requirement. If you can do both > simultaneously, then the channel or service is full duplex. A > classic T1/E1 is full duplex but on 4 wires (each pair is simplex), > and it can be replaced with xDSL 2 wires, of same speed which is also > full duplex. Yes, a classic T1 is HDSL and full duplex. ADSL is Assymmetrical and Assynchronous. Both HDSL, SDSL and T1/E1's are Synchronous. > >and what happens is the uploads will take up > >the entire 128kbps > > of course, there's nobody else on the line to share that 128 with, > but that's only one channel of the two available. The 128 up channel > does not occupy the full up/down bandwidith, only the up > bandwith. The down channel is a separate channel and frequency band. Yes, but you still haven't explained why the up channel would slow the down channel down. > Now if BA lines cannot really support full 1.5/128 signalling rates, > then that's not an xDSL issue. I've seen some DSL provisoning web > sites quote a residential address only 144 kb/sec up and down due to > line quality and line length issues. We're actually talking about SBC's PacBell here and not BA. BA is worst than you think since it's 640k/90k only. The sites you see are talking about IDSL which is 144kb both ways or 160k both ways and offered only by Rhythms, Northpoint and Covad and not the LEC's. > >so there is no room for the Acknowledgement packets to > >be sent back for the received packets. > > yes, there is, the separate down channel is available, in theory, on > the full-duplex xDSL line. If in practice, line conditions are so > poor that effective operation appears to be half-duplex (ie, sending > up destroys sending down), then that's a line issue, and still > doesn't mean xDSL is not full duplex. Well, if you look at a traditional T1, there is 193ksec available in both directions so you are able to send the ACK packets back. On a ADSL circuit, the downstream is faster than the upstream by a big magnitude. So when you upload, it will normally use up the entire 16k/sec available which means it'll slow the downloads down because there is no room for the ack packets to be send back in the upstream link to acknowledge the packet is received. Ofcourse, if you can knock down the upstream to only do about 13k, then you will have the 3k worth of room to send the acknowledgement packets back. It's like someone sends you a packet and waits for a response but it's delayed because the upstream pipe of the destination is full and traffic shaping is the only way out of it. There is a huge discussion going on at the ba.internet newsgroup and the people there do know what they are talking about. Instead of talking about it here, it might be better to bring this discussion to the newsgroups instead where it'll benefit. > >That's one reason why I mentioned traffic shaping as that seems to > >be the only solution. > > If 128 kb/sec up transmission destroys the capacity of the 1.5 mb/sec > down channel such that tcp ACK packets can't be sent down, then > there's no effective bandwidth to manage. Actually there is. If the entire 16k in the up is taken by the uploading, how will the ack packets make it back to the other end to ack that the package is received? > > > Paradyne MVL does share 768 kbits/sec between the two channels but > > > that is afaik unique to MVL, which isn't typical xDSL. > > > > Yes, but are you uploading and downloading at the same > >time. That's a different issue altogether. > > xDSL is full duplex, period, as you say the Bell Atlantic ADSL is, > with asymmetric signalling rates. If the line quality + available CO > bandwidth don't allow full duplex data transmission at max > (asymmetric) signalling rates, that's not xDSL's pb. "Full duplex" > and "(a)symmetric signalling rate" refer to two diffent, independent > characteristics. Where was I talking about BA ADSL? I was referring to PacBell ADSL all along. > Here's very readable reference work: > > http://www.paradyne.com/sourcebook_offer/index.html There are different implementations of ADSL. I'm not sure what BA uses but PacBell uses Alcatel's and GTE uses Orckit/Fujitsu. Like I mention above, Netopia should know what they are talking about and so should Cisco engineers. Netopia, Cisco and 3Com does make Routers compatible with CopperMountain for SDSL and Alcatel, Orckit for ADSL. Paradyne which is either still AT&T or formally AT&T would be history since if Lucent was that great, other companies would not have put it down in water. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 13:42:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail12.intelnet.net.gt (mail12.intelnet.net.gt [216.230.128.18]) by hub.freebsd.org (Postfix) with ESMTP id 6301D37B502 for ; Sun, 15 Oct 2000 13:42:14 -0700 (PDT) Received: from intelnet.net.gt (UD224-138.intelnet.net.gt [216.230.138.224] (may be forged)) by mail12.intelnet.net.gt (Pro-8.9.3/8.9.3) with ESMTP id OAA20795 for ; Sun, 15 Oct 2000 14:39:42 +0600 (GMT) Message-ID: <39EA08A2.609ED0E4@intelnet.net.gt> Date: Sun, 15 Oct 2000 14:42:27 -0500 From: "Thomas C.Inskip" X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: DELL L566cx -- is it a lost cause? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ------------------------------------ FROM: Thomas C. Inskip Guatemala <<=== NOT IN USA -- No local help. Email: genopre@intelnet.net.gt Tel: 502-933-1034 ------------------------------------ TO: FreeBSD.org installation assistance. ------------------------------------ SUBJECT: DELL L566cx -- is it a lost cause FILE: DATE: 2000.10.14 ------------------------------------ I purchased a DELL L566cx pentium computer for Linux. It holds the WindowsNT configuration. Is the installation of FreeBSD_4.4 a lost cause? Where do I find assistance with the installation of FreeBSD_4.4? My son reccommended this location. Thanks Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 13:55: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 99EA537B66F for ; Sun, 15 Oct 2000 13:54:58 -0700 (PDT) Received: from nasby.net (sysnasby@2.nasby.dsl.enteract.com [216.80.51.18]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id PAA90294; Sun, 15 Oct 2000 15:54:51 -0500 (CDT) (envelope-from jim@nasby.net) Message-ID: <39EA1992.62F6FCC0@nasby.net> Date: Sun, 15 Oct 2000 15:54:42 -0500 From: "Jim C. Nasby" Organization: distributed.net X-Mailer: Mozilla 4.73 [en] (WinNT; U) X-Accept-Language: en-US,en MIME-Version: 1.0 To: Bennett Hui Cc: freebsd-questions@freebsd.org Subject: Re: RAID 5 with Vinum References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't see a reply from Greg, so I'll try and fill his shoes a bit. Bennett Hui wrote: > > I'm thinking about setting up a RAID 5 system with Vinum using 4 IDE HDDs. > I've looked through the man pages on vinumvm.org, but I still have one > preliminary question: It's worth mentioning that you really don't want to create any plexes that address two drives that are on the same IDE controller. IDE can't handle concurrent requests, so you end up waiting for one drive to finish before you can even tell the next drive what to do. Either use 4 seperate IDE controllers, or SCSI. > when installing FreeBSD with the intention of setting up RAID 5 using Vinum > on 4 hard drives, do I install the whole OS on one hard drive and then use > Vinum to arrange the file system on the remaining 3 hard drives, or do I > install the OS on all 4 hard drives (assign space that fills up all 4 > drives) and use Vinum to work out the RAID 5 itself afterwards? You can install almost the entire OS under a vinum volume; the notable exception is /. You need / to get the kernel up and running, and you need the kernel to be able to talk to a vinum volume. This is something that Greg wants to change, but there's no ETA. > One other question about Vinum I have: > > If I have the FreeBSD OS on 2 hard drives without any RAID/Vinum setup and > then decide to add two more hard drives and setup RAID 5, is this something > that Vinum can easily do, or is it easier to reformat all 4 drives and start > from scratch? If Vinum can do this "on the fly," what Vinum commands/steps > would I use to do it? Vinum can't currently resize a RAID5 volume, but even if it could, newfs can't change the size of an existing filesystem, so you're still stuck with moving all your data and recreating that volume. Note that you do *not* need to 'format' the actual drives though; this kind of change can be handled entirely by vinum. > Thanks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Jim C. Nasby (aka Decibel!) /^\ jim@nasby.net /___\ Freelance lighting designer and database developer / | \ Member: Triangle Fraternity, Sports Car Club of America /___|___\ Give your computer some brain candy! www.distributed.net Team #1828 Get paid to surf!! http://www.enteract.com/~nasby/alladvantage.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 13:55:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-out.visi.com (kauket.visi.com [209.98.98.22]) by hub.freebsd.org (Postfix) with ESMTP id 159A237B66C for ; Sun, 15 Oct 2000 13:54:57 -0700 (PDT) Received: from isis.visi.com (isis.visi.com [209.98.98.8]) by mail-out.visi.com (Postfix) with ESMTP id 7C5BC38E6 for ; Sun, 15 Oct 2000 15:54:53 -0500 (CDT) Received: from localhost (dgl@localhost) by isis.visi.com (8.8.8/8.8.8) with ESMTP id PAA29662 for ; Sun, 15 Oct 2000 15:54:53 -0500 (CDT) X-Authentication-Warning: isis.visi.com: dgl owned process doing -bs Date: Sun, 15 Oct 2000 15:54:53 -0500 (CDT) From: Doug Lee To: freebsd-questions@freebsd.org Subject: User ppp: can link, can send, can't receive 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 having unexpected trouble making user ppp work. I am running 4-STABLE updated September 14, 2000 (13:00:13). I can get it to dial, connect, negotiate an address, and show outbound traffic; but nothing comes back in. I can ping the interface address but not the address at the other end of the link. I have tried innumerable things: opening up the firewall, disabling natd and even named, remaking the tun[0-3] devices, manually manipulating the route table, using different netmasks for the tun0 interface (via ppp's ifaddr line), connecting to an alternate ISP (same exact results), resetting all sysctl variables to defaults (I normally run with a few enlarged packet size settings) ... I even tried to use pppd in frustration at one point, but I can't because I don't have kernel PPP support in my kernel. I will include below a copy of my ppp.conf, a log of a session attempt, and my rc.conf and (custom) kernel config. Please include my e-mail address in any replies, as I am not yet set up with regular enough Internet access to follow this list (this little ppp problem being why :-) ). ========== ppp.conf ========== default: set device /dev/cuaa1 rename USR set log Phase Chat LCP IPCP CCP tun command set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK ATE1Q0M2 OK \\dATDT\\T TIMEOUT 40 CONNECT" set timeout 1200 set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0 add! default HISADDR enable dns allow users dgl set server /var/run/pppc "" 0177 set redial 10+10-3.5 2 # interpacket+inc-nincs.interphonenum retriesperpacket set urgent udp +53 # nat deny_incoming yes # We don't want certain packets to keep our connection alive set filter alive 0 deny udp src eq 520 # routed set filter alive 1 deny udp dst eq 520 # routed set filter alive 2 deny udp src eq 513 # rwhod set filter alive 3 deny udp src eq 525 # timed set filter alive 4 deny udp src eq 137 # NetBIOS name service set filter alive 5 deny udp src eq 138 # NetBIOS datagram service set filter alive 6 deny udp src eq 139 # NetBIOS session service set filter alive 7 deny udp dst eq 137 # NetBIOS name service set filter alive 8 deny udp dst eq 138 # NetBIOS datagram service set filter alive 9 deny udp dst eq 139 # NetBIOS session service set filter alive 10 deny 0/0 MYADDR icmp # Ping to us from outside set filter alive 11 permit 0/0 0/0 # # And in auto mode, we don't want certain packets to cause a dialup # (This is redundant because I left two filtering plans in place here; # the first part has no effect.) set filter dial 0 deny udp src eq 513 # rwhod set filter dial 1 deny udp src eq 525 # timed set filter dial 2 deny udp src eq 137 # NetBIOS name service set filter dial 3 deny udp src eq 138 # NetBIOS datagram service set filter dial 4 deny udp src eq 139 # NetBIOS session service set filter dial 5 deny udp dst eq 137 # NetBIOS name service set filter dial 6 deny udp dst eq 138 # NetBIOS datagram service set filter dial 7 deny udp dst eq 139 # NetBIOS session service set filter dial 8 deny tcp finrst # Badly closed TCP channels # set filter dial 9 permit 0 0 # Only allow dialup to be triggered by http, rlogin, rsh, ssh, telnet, ftp, ping set filter dial 10 permit 0 0 tcp dst eq http set filter dial 11 permit 0 0 tcp dst eq login set filter dial 12 permit 0 0 tcp dst eq shell set filter dial 13 permit 0 0 tcp dst eq ssh set filter dial 14 permit 0 0 tcp dst eq telnet set filter dial 15 permit 0 0 tcp dst eq ftp set filter dial 16 permit 0 0 icmp src eq 8 # ICMP echo requests bart: set phone 7033860125 # an Earthlink number set authname XXXXXX set authkey XXXXXX bartq: # quiet bart set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT OK-AT-OK ATE1Q0M0 OK \\dATDT\\T TIMEOUT 40 CONNECT" load bart ========== connection log ========== [I trimmed the date (Oct 15) and the process id (ppp[907]) out of these lines for brevity.] 15:57:14 Phase: Using interface: tun0 15:57:14 Phase: deflink: Created in closed state 15:57:14 tun0: Command: default: set speed 115200 15:57:14 tun0: Command: default: set dial ABORT BUSY ABORT NO\sCARRIER TIMEOUT 5 "" AT OK-AT-OK ATE1Q0M2 OK \dATDT\T TIMEOUT 40 CONNECT 15:57:14 tun0: Command: default: set timeout 1200 15:57:14 tun0: Command: default: set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0 15:57:14 tun0: Command: default: add! default HISADDR 15:57:14 tun0: Command: default: enable dns 15:57:14 tun0: Command: default: set server /var/run/pppc ******** 0177 15:57:14 tun0: Phase: Listening at local socket /var/run/pppc. 15:57:14 tun0: Command: default: set redial 10+10-3.5 2 15:57:14 tun0: Command: default: set urgent udp +53 15:57:14 tun0: Command: default: set filter alive 0 deny udp src eq 520 15:57:14 tun0: Command: default: set filter alive 1 deny udp dst eq 520 15:57:14 tun0: Command: default: set filter alive 2 deny udp src eq 513 15:57:14 tun0: Command: default: set filter alive 3 deny udp src eq 525 15:57:14 tun0: Command: default: set filter alive 4 deny udp src eq 137 15:57:14 tun0: Command: default: set filter alive 5 deny udp src eq 138 15:57:14 tun0: Command: default: set filter alive 6 deny udp src eq 139 15:57:14 tun0: Command: default: set filter alive 7 deny udp dst eq 137 15:57:15 tun0: Command: default: set filter alive 8 deny udp dst eq 138 15:57:15 tun0: Command: default: set filter alive 9 deny udp dst eq 139 15:57:15 tun0: Command: default: set filter alive 10 deny 0/0 MYADDR icmp 15:57:15 tun0: Command: default: set filter alive 11 permit 0/0 0/0 15:57:15 tun0: Command: default: set filter dial 0 deny udp src eq 513 15:57:15 tun0: Command: default: set filter dial 1 deny udp src eq 525 15:57:15 tun0: Command: default: set filter dial 2 deny udp src eq 137 15:57:15 tun0: Command: default: set filter dial 3 deny udp src eq 138 15:57:15 tun0: Command: default: set filter dial 4 deny udp src eq 139 15:57:15 tun0: Command: default: set filter dial 5 deny udp dst eq 137 15:57:15 tun0: Command: default: set filter dial 6 deny udp dst eq 138 15:57:15 tun0: Command: default: set filter dial 7 deny udp dst eq 139 15:57:15 tun0: Command: default: set filter dial 8 deny tcp finrst 15:57:15 tun0: Command: default: set filter dial 10 permit 0 0 tcp dst eq http 15:57:15 tun0: Command: default: set filter dial 11 permit 0 0 tcp dst eq login 15:57:15 tun0: Command: default: set filter dial 12 permit 0 0 tcp dst eq shell 15:57:15 tun0: Command: default: set filter dial 13 permit 0 0 tcp dst eq ssh 15:57:15 tun0: Command: default: set filter dial 14 permit 0 0 tcp dst eq telnet 15:57:15 tun0: Command: default: set filter dial 15 permit 0 0 tcp dst eq ftp 15:57:15 tun0: Command: default: set filter dial 16 permit 0 0 icmp src eq 8 15:57:15 tun0: Phase: PPP Started (interactive mode). 15:57:19 tun0: Command: /dev/tty: dial bart 15:57:19 tun0: Command: bart: set phone 7033860125 15:57:19 tun0: Command: bart: set authname XXXXXX 15:57:19 tun0: Command: bart: set authkey ******** 15:57:19 tun0: Phase: bundle: Establish 15:57:19 tun0: Phase: USR: closed -> opening 15:57:19 tun0: Phase: USR: Connected! 15:57:19 tun0: Phase: USR: opening -> dial 15:57:19 tun0: Chat: Phone: 7033860125 15:57:19 tun0: Chat: USR: Dial attempt 1 of 2 15:57:19 tun0: Chat: Send: AT^M 15:57:19 tun0: Chat: Expect(5): OK 15:57:19 tun0: Chat: Received: AT^M^M 15:57:19 tun0: Chat: Received: OK^M 15:57:19 tun0: Chat: Send: ATE1Q0M2^M 15:57:19 tun0: Chat: Expect(5): OK 15:57:19 tun0: Chat: Received: ATE1Q0M2^M^M 15:57:19 tun0: Chat: Received: OK^M 15:57:19 tun0: Chat: Send: ATDT7033860125^M 15:57:22 tun0: Chat: Expect(40): CONNECT 15:57:39 tun0: Chat: Received: ATDT7033860125^M^M 15:57:39 tun0: Chat: Received: CONNECT 28800/ARQ/V34/LAPM/V42BIS^M 15:57:39 tun0: Phase: USR: dial -> carrier 15:57:40 tun0: Phase: USR: /dev/cuaa1: CD detected 15:57:40 tun0: Phase: USR: carrier -> login 15:57:40 tun0: Phase: USR: login -> lcp 15:57:40 tun0: LCP: FSM: Using "USR" as a transport 15:57:40 tun0: LCP: USR: State change Initial --> Closed 15:57:40 tun0: LCP: USR: State change Closed --> Stopped 15:57:41 tun0: LCP: USR: LayerStart 15:57:41 tun0: LCP: USR: SendConfigReq(1) state = Stopped 15:57:41 tun0: LCP: ACFCOMP[2] 15:57:41 tun0: LCP: PROTOCOMP[2] 15:57:41 tun0: LCP: ACCMAP[6] 0x00000000 15:57:41 tun0: LCP: MRU[4] 1500 15:57:41 tun0: LCP: MAGICNUM[6] 0x076e8a42 15:57:41 tun0: LCP: USR: State change Stopped --> Req-Sent 15:57:41 tun0: LCP: USR: RecvConfigReq(1) state = Req-Sent 15:57:41 tun0: LCP: <0x0>[4] 0000 15:57:41 tun0: LCP: MRU[4] 1524 15:57:41 tun0: LCP: ACCMAP[6] 0x00000000 15:57:41 tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) 15:57:41 tun0: LCP: PROTOCOMP[2] 15:57:41 tun0: LCP: ACFCOMP[2] 15:57:41 tun0: LCP: MRRU[4] 1524 15:57:41 tun0: LCP: ENDDISC[9] MAC 00:c0:7b:8a:a1:3f 15:57:41 tun0: LCP: LDBACP[4] 6305 15:57:41 tun0: LCP: USR: SendConfigRej(1) state = Req-Sent 15:57:41 tun0: LCP: <0x0>[4] 0000 15:57:41 tun0: LCP: MRRU[4] 1524 15:57:41 tun0: LCP: LDBACP[4] 6305 15:57:41 tun0: LCP: USR: RecvConfigAck(1) state = Req-Sent 15:57:41 tun0: LCP: USR: State change Req-Sent --> Ack-Rcvd 15:57:41 tun0: LCP: USR: RecvConfigReq(2) state = Ack-Rcvd 15:57:41 tun0: LCP: MRU[4] 1524 15:57:41 tun0: LCP: ACCMAP[6] 0x00000000 15:57:41 tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) 15:57:41 tun0: LCP: PROTOCOMP[2] 15:57:41 tun0: LCP: ACFCOMP[2] 15:57:41 tun0: LCP: ENDDISC[9] MAC 00:c0:7b:8a:a1:3f 15:57:41 tun0: LCP: USR: SendConfigAck(2) state = Ack-Rcvd 15:57:41 tun0: LCP: MRU[4] 1524 15:57:41 tun0: LCP: ACCMAP[6] 0x00000000 15:57:41 tun0: LCP: AUTHPROTO[4] 0xc023 (PAP) 15:57:41 tun0: LCP: PROTOCOMP[2] 15:57:41 tun0: LCP: ACFCOMP[2] 15:57:41 tun0: LCP: ENDDISC[9] MAC 00:c0:7b:8a:a1:3f 15:57:41 tun0: LCP: USR: State change Ack-Rcvd --> Opened 15:57:41 tun0: LCP: USR: LayerUp 15:57:41 tun0: Phase: bundle: Authenticate 15:57:41 tun0: Phase: USR: his = PAP, mine = none 15:57:41 tun0: Phase: Pap Output: XXXXXX ******** 15:57:41 tun0: Phase: Pap Input: SUCCESS () 15:57:41 tun0: IPCP: Using trigger address 0.0.0.0 15:57:41 tun0: CCP: FSM: Using "USR" as a transport 15:57:41 tun0: CCP: USR: State change Initial --> Closed 15:57:41 tun0: CCP: USR: LayerStart. 15:57:41 tun0: CCP: USR: SendConfigReq(1) state = Closed 15:57:41 tun0: CCP: DEFLATE[4] win 15 15:57:41 tun0: CCP: PRED1[2] 15:57:41 tun0: CCP: USR: State change Closed --> Req-Sent 15:57:41 tun0: Phase: USR: lcp -> open 15:57:41 tun0: Phase: bundle: Network 15:57:41 tun0: IPCP: FSM: Using "USR" as a transport 15:57:41 tun0: IPCP: USR: State change Initial --> Closed 15:57:41 tun0: IPCP: USR: LayerStart. 15:57:41 tun0: IPCP: USR: SendConfigReq(1) state = Closed 15:57:41 tun0: IPCP: IPADDR[6] 0.0.0.0 15:57:41 tun0: IPCP: COMPPROTO[6] 16 VJ slots with slot compression [NOTE: The two DNS numbers are being held over from when I was connecting to the alternate ISP; apparently Earthlink just accepts them. I have not yet pulled them back out of /etc/resolv.conf.] 15:57:41 tun0: IPCP: PRIDNS[6] 209.98.98.98 15:57:41 tun0: IPCP: SECDNS[6] 198.6.1.2 15:57:41 tun0: IPCP: USR: State change Closed --> Req-Sent 15:57:41 tun0: IPCP: USR: RecvConfigReq(1) state = Req-Sent 15:57:41 tun0: IPCP: COMPPROTO[6] 16 VJ slots with slot compression 15:57:41 tun0: IPCP: IPADDR[6] 38.1.1.1 15:57:41 tun0: IPCP: USR: SendConfigAck(1) state = Req-Sent 15:57:41 tun0: IPCP: COMPPROTO[6] 16 VJ slots with slot compression 15:57:41 tun0: IPCP: IPADDR[6] 38.1.1.1 15:57:41 tun0: IPCP: USR: State change Req-Sent --> Ack-Sent 15:57:41 tun0: CCP: USR: RecvConfigReq(1) state = Req-Sent 15:57:41 tun0: CCP: STAC[6] 15:57:41 tun0: CCP: USR: SendConfigRej(1) state = Req-Sent 15:57:41 tun0: CCP: STAC[6] 15:57:42 tun0: CCP: USR: RecvConfigRej(1) state = Req-Sent 15:57:42 tun0: CCP: DEFLATE[4] win 15 15:57:42 tun0: CCP: PRED1[2] 15:57:42 tun0: CCP: USR: SendConfigReq(2) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: IPCP: USR: RecvConfigRej(1) state = Ack-Sent 15:57:42 tun0: IPCP: PRIDNS[6] 209.98.98.98 15:57:42 tun0: IPCP: SECDNS[6] 198.6.1.2 15:57:42 tun0: IPCP: USR: SendConfigReq(2) state = Ack-Sent 15:57:42 tun0: IPCP: IPADDR[6] 0.0.0.0 15:57:42 tun0: IPCP: COMPPROTO[6] 16 VJ slots with slot compression 15:57:42 tun0: CCP: USR: RecvConfigRej(2) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: SendConfigReq(3) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: IPCP: USR: RecvConfigNak(2) state = Ack-Sent 15:57:42 tun0: IPCP: IPADDR[6] 38.30.237.63 15:57:42 tun0: IPCP: IPADDR[6] changing address: 0.0.0.0 --> 38.30.237.63 15:57:42 tun0: IPCP: USR: SendConfigReq(3) state = Ack-Sent 15:57:42 tun0: IPCP: IPADDR[6] 38.30.237.63 15:57:42 tun0: IPCP: COMPPROTO[6] 16 VJ slots with slot compression 15:57:42 tun0: CCP: USR: RecvConfigRej(3) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: SendConfigReq(4) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: IPCP: USR: RecvConfigAck(3) state = Ack-Sent 15:57:42 tun0: IPCP: USR: State change Ack-Sent --> Opened 15:57:42 tun0: IPCP: USR: LayerUp. 15:57:42 tun0: IPCP: myaddr 38.30.237.63 hisaddr = 38.1.1.1 15:57:42 tun0: CCP: USR: RecvConfigRej(4) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: SendConfigReq(5) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: RecvConfigRej(5) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: SendConfigReq(6) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: RecvConfigRej(6) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:42 tun0: CCP: USR: SendConfigReq(7) state = Req-Sent 15:57:42 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: RecvConfigRej(7) state = Req-Sent 15:57:43 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: SendConfigReq(8) state = Req-Sent 15:57:43 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: RecvConfigRej(8) state = Req-Sent 15:57:43 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: SendConfigReq(9) state = Req-Sent 15:57:43 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: RecvConfigRej(9) state = Req-Sent 15:57:43 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: SendConfigReq(10) state = Req-Sent 15:57:43 tun0: CCP: [EMPTY] 15:57:43 tun0: CCP: USR: RecvTerminateReq(2) state = Req-Sent 15:57:43 tun0: CCP: USR: SendTerminateAck(2) state = Req-Sent 15:57:43 tun0: CCP: USR: RecvTerminateReq(3) state = Req-Sent 15:57:43 tun0: CCP: USR: SendTerminateAck(3) state = Req-Sent 15:57:46 tun0: CCP: USR: SendConfigReq(10) state = Req-Sent 15:57:46 tun0: CCP: [EMPTY] 15:57:49 tun0: CCP: USR: SendConfigReq(10) state = Req-Sent 15:57:49 tun0: CCP: [EMPTY] 15:57:52 tun0: CCP: USR: SendConfigReq(10) state = Req-Sent 15:57:52 tun0: CCP: [EMPTY] 15:57:55 tun0: CCP: USR: SendConfigReq(10) state = Req-Sent 15:57:55 tun0: CCP: [EMPTY] 15:57:58 tun0: CCP: USR: LayerFinish. 15:57:58 tun0: CCP: USR: State change Req-Sent --> Stopped [At this point, the link seemed fine but useless, as nothing could be sent to me. I tried pinging 38.1.1.1 (the remote end of my link) and 209.98.98.98 (primary DNS) and got no response. I then closed the connection as shown below and saw that 0 octets came in during the connection. I occasionally see small numbers of octets when IPCP closes but have no explanation for those.] 15:59:59 tun0: Command: /dev/tty: q 15:59:59 tun0: IPCP: USR: LayerDown: 38.30.237.63 15:59:59 tun0: IPCP: Using trigger address 0.0.0.0 15:59:59 tun0: IPCP: USR: SendTerminateReq(4) state = Opened 15:59:59 tun0: IPCP: USR: State change Opened --> Closing 16:00:00 tun0: IPCP: USR: RecvTerminateAck(4) state = Closing 16:00:00 tun0: IPCP: USR: LayerFinish. 16:00:00 tun0: IPCP: Connect time: 139 secs: 0 octets in, 3945 octets out 16:00:00 tun0: IPCP: total 28 bytes/sec, peak 100 bytes/sec on Sun Oct 15 16:00:00 2000 16:00:00 tun0: IPCP: USR: State change Closing --> Closed 16:00:00 tun0: Phase: bundle: Terminate 16:00:00 tun0: CCP: USR: State change Stopped --> Closed 16:00:00 tun0: CCP: USR: State change Closed --> Initial 16:00:00 tun0: LCP: USR: LayerDown 16:00:00 tun0: LCP: USR: SendTerminateReq(2) state = Opened 16:00:00 tun0: LCP: USR: State change Opened --> Closing 16:00:00 tun0: Phase: USR: open -> lcp 16:00:00 tun0: IPCP: USR: State change Closed --> Initial 16:00:00 tun0: LCP: USR: RecvTerminateAck(2) state = Closing 16:00:00 tun0: LCP: USR: LayerFinish 16:00:00 tun0: LCP: USR: State change Closing --> Closed 16:00:00 tun0: LCP: USR: State change Closed --> Initial 16:00:00 tun0: Phase: USR: Disconnected! 16:00:00 tun0: Phase: USR: lcp -> logout 16:00:00 tun0: Phase: USR: logout -> hangup 16:00:00 tun0: Phase: USR: Disconnected! 16:00:00 tun0: Phase: USR: Connect time: 161 secs: 455 octets in, 4711 octets out 16:00:00 tun0: Phase: total 32 bytes/sec, peak 171 bytes/sec on Sun Oct 15 16:00:00 2000 16:00:00 tun0: Phase: USR: hangup -> closed 16:00:00 tun0: Phase: bundle: Dead 16:00:00 tun0: Phase: PPP Terminated (normal). ========== rc.conf ========== network_interfaces="ed0 dc0 lo0" #ifconfig_ed0="inet 209.98.248.172 netmask 255.255.255.224" ifconfig_dc0="inet 192.168.2.254 netmask 255.255.255.0 media 100basetx mediaopt full-duplex" #defaultrouter="209.98.248.174" hostname="kirk.dsl.visi.com" gateway_enable="YES" firewall_enable="YES" firewall_script="/etc/rc.firewall.kirk" #firewall_type="simple" # my script doesn't use this firewall_quiet="YES" natd_enable="YES" natd_interface="ed0" # have also tried tun0 here, and disabling natd natd_flags="-f /etc/natd.conf" ntpdate_enable="YES" ntpdate_flags="ntp.visi.com" xntpd_enable="YES" xntpd_program="ntpd" xntpd_flags="-p /var/run/ntpd.pid" accounting_enable="YES" apm_enable="NO" check_quotas="YES" #enable_quotas="YES" linux_enable="YES" named_enable="YES" named_flags="-u bind -g bind" nfs_client_enable="YES" sshd_enable="YES" syslogd_enable="YES" syslogd_flags="-v -v" tcp_extensions="YES" tcp_restrict_rst="YES" # Set to YES to restrict emission of RST icmp_drop_redirect="NO" # Set to YES to ignore ICMP REDIRECT packets icmp_log_redirect="YES" # Set to YES to log ICMP REDIRECT packets savecore_enable="YES" dumpdev="/dev/ad0s1b" usbd_enable="NO" # Run the usbd daemon. usbd_flags="" # Flags to usbd (if enabled). start_vinum="" # set to YES to start vinum # have also tried with and without ppp auto using below lines ppp_enable="YES" # ppp_mode="auto" # ppp_nat="NO" # ppp_profile="bart" # ========== kernel config ========== # # CUSTOM -- Doug Lee's kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # Based on the following kernel configuration file: # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.7 2000/07/13 16:13:46 imp Exp $ machine i386 #cpu I386_CPU #cpu I486_CPU cpu I586_CPU cpu I686_CPU ident CUSTOM makeoptions KERNEL=kernel maxusers 32 makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols #options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options IPSEC #IP security options IPSEC_ESP #IP security (crypto; define w/ IPSEC) options IPSEC_DEBUG #debug for IP security options IPX #IPX/SPX communications protocols options NCP #NetWare Core protocol options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options KERNFS #Kernel filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=2 # number of CPUs #options NBUS=4 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs device isa options AUTO_EOI_1 device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers device ahb # EISA AHA1742 family device ahc # AHA2940 and onboard AIC7xxx devices device amd # AMD 53C974 (Teckram DC-390(T)) device dpt # DPT Smartcache - See LINT for options! device isp # Qlogic family device ncr # NCR/Symbios Logic device sym # NCR/Symbios Logic (newer chipsets) options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured device adv0 at isa? device adw device bt0 at isa? device aha0 at isa? device aic0 at isa? # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers device ida # Compaq Smart RAID device amr # AMI MegaRAID device mlx # Mylex DAC960 family # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 #device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support #device card #device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 #device pcic1 at isa? irq 11 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 options CONSPEED=115200 #default speed for serial console (default 9600) device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? port IO_COM3 irq 5 device sio3 at isa? port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 options PPC_PROBE_CHIPSET # Enable chipset specific detection device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) device tx # SMC 9432TX (83c170 ``EPIC'') device vx # 3Com 3c590, 3c595 (``Vortex'') device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ed1 at isa? port 0x300 irq 10 iomem 0xcc000 device ex device ep # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. #device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. #device an # Xircom Ethernet #device xe # The probe order of these is presently determined by i386/isa/isa_compat.c. device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 device fe0 at isa? port 0x300 device le0 at isa? port 0x300 irq 5 iomem 0xd0000 device lnc0 at isa? port 0x280 irq 10 drq 0 device cs0 at isa? port 0x300 device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support #pseudo-device sl 1 # Kernel SLIP #pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet device pcm device sbc pseudo-device speaker #Play IBM BASIC-style noises out your speaker device pca0 at isa? port IO_TIMER1 pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. #pseudo-device ccd 4 #Concatenated disk driver options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about # dropped packets options IPFIREWALL_FORWARD #enable transparent proxy support #options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity #options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default options IPV6FIREWALL #firewall for IPv6 options IPV6FIREWALL_VERBOSE #options IPV6FIREWALL_VERBOSE_LIMIT=100 #options IPV6FIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT #divert sockets options IPFILTER #ipfilter support options IPFILTER_LOG #ipfilter logging options IPSTEALTH #support for stealth forwarding #options TCPDEBUG options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN options TCP_RESTRICT_RST #restrict emission of TCP RST options DUMMYNET options BRIDGE options QUOTA #enable disk quotas options NETGRAPH #netgraph(4) system options DDB options DDB_UNATTENDED #options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to #DDB, if available. # Solaris implements a new BREAK which is initiated by a character # sequence CR ~ ^b which is similar to a familiar pattern used on # Sun servers by the Remote Console. options ALT_BREAK_TO_DEBUGGER options INCLUDE_CONFIG_FILE # Include this file in kernel -- Doug Lee dgl@visi.com http://www.visi.com/~dgl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:19:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stardust.phpcodeguru.com (stardust.phpcodeguru.com [208.219.18.44]) by hub.freebsd.org (Postfix) with ESMTP id AFF4F37B503 for ; Sun, 15 Oct 2000 14:19:18 -0700 (PDT) Received: from devin (eminemboi.speakerism.com [208.219.18.42]) by stardust.phpcodeguru.com (8.11.1/8.11.1) with SMTP id e9FLJF901797 for ; Sun, 15 Oct 2000 15:19:15 -0600 (MDT) (envelope-from brian@phpcodeguru.com) Message-ID: <001501c036ed$8e906270$2a12dbd0@devin> From: "Brian B." To: Subject: UDMA ICRC WRITE ERROR Date: Sun, 15 Oct 2000 15:19:08 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0012_01C036BB.438E08E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C036BB.438E08E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have FreeBSD 4.1.1-STABLE installed with a 60gig UDMA 66 Maxtor Hard = Drive. Every now and then I get the follow error messages in my /var/log/messages file: Oct 15 10:53:10 stardust last message repeated 2 times Oct 15 10:53:28 stardust /kernel: ad1: UDMA ICRC WRITE ERROR blk# = 1256687 retrying Oct 15 10:53:57 stardust /kernel: ad1: UDMA ICRC WRITE ERROR blk# = 1259183 retrying Oct 15 10:53:57 stardust /kernel: ad1: UDMA ICRC WRITE ERROR blk# = 1259183 retrying Oct 15 14:49:35 stardust su: brian to root on /dev/ttyp0 Oct 15 14:57:31 stardust /kernel: ad1: UDMA ICRC WRITE ERROR blk# = 1271375 retrying Oct 15 14:57:43 stardust /kernel: ad1: UDMA ICRC WRITE ERROR blk# = 1272655 retrying Oct 15 14:57:43 stardust last message repeated 2 times Oct 15 14:57:43 stardust /kernel: ad1: UDMA ICRC WRITE ERROR blk# = 1272655ata0-slave: WARNING: WAIT_READY active=3DATA_ACTIVE_ATA Oct 15 14:57:43 stardust /kernel: falling back to PIO mode I was just wondering If I should even care about these messages since = they only happen every now and then? Or What I need to do to get rid of = them? Brian ------=_NextPart_000_0012_01C036BB.438E08E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
I have FreeBSD 4.1.1-STABLE installed = with a 60gig=20 UDMA 66 Maxtor Hard Drive. Every now
and then I get the follow error = messages in my=20 /var/log/messages file:
 
Oct 15 10:53:10 stardust last message = repeated 2=20 times
Oct 15 10:53:28 stardust /kernel: ad1: UDMA ICRC WRITE ERROR = blk#=20 1256687 retrying
Oct 15 10:53:57 stardust /kernel: ad1: UDMA ICRC = WRITE ERROR=20 blk# 1259183 retrying
Oct 15 10:53:57 stardust /kernel: ad1: UDMA = ICRC WRITE=20 ERROR blk# 1259183 retrying
Oct 15 14:49:35 stardust su: brian to = root on=20 /dev/ttyp0
Oct 15 14:57:31 stardust /kernel: ad1: UDMA ICRC WRITE = ERROR blk#=20 1271375 retrying
Oct 15 14:57:43 stardust /kernel: ad1: UDMA ICRC = WRITE ERROR=20 blk# 1272655 retrying
Oct 15 14:57:43 stardust last message repeated = 2=20 times
Oct 15 14:57:43 stardust /kernel: ad1: UDMA ICRC WRITE ERROR = blk#=20 1272655ata0-slave: WARNING: WAIT_READY active=3DATA_ACTIVE_ATA
Oct 15 = 14:57:43=20 stardust /kernel: falling back to PIO mode
 
I was just wondering If I should even = care about=20 these messages since they only happen every now and then? Or What I need = to do=20 to get rid of them?
 
Brian
------=_NextPart_000_0012_01C036BB.438E08E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:24:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from elincia.pearlmagik.com (d8c81d2d.dsl.flashcom.net [216.200.29.45]) by hub.freebsd.org (Postfix) with ESMTP id CC84E37B66C for ; Sun, 15 Oct 2000 14:24:07 -0700 (PDT) Received: from pearlmagik.com [64.50.143.230] by elincia.pearlmagik.com with ESMTP (SMTPD32-6.04) id A06E3302DA; Sun, 15 Oct 2000 14:23:58 -0700 Message-ID: <39EA206A.F874F806@pearlmagik.com> Date: Sun, 15 Oct 2000 17:23:54 -0400 From: Robert LaThanh X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Crash every 45 days in 4.0-RELEASE (sometimes sooner) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG (I'm not sure if this is the right group to be posting to, can someone tell me which group would be more appropriate?) My web server used to be running Red Hat Linux 5.2 and had reached an uptime of about 150 days. This summer I switched over to FreeBSD 4.0-RELEASE and I haven't been able to get an uptime of more than 45 days. While browsing through kernel code I noticed a comment that read: "Increment time in/out of memory and sleep time (if sleeping). We ignore overflow; with 16-bit int's (remember them?) overflow takes 45 days." in src/sys/kern/kern_synch.c. I don't know (and I don't think) that this directly has anything to do with my crashing, but I'm thinking that something in my system is using a 16-bit int to count minutes and crashes my system every 45.5 days (which is almost exactly how frequently it's been crashing according to my logs). Is this a known issue with FreeBSD, or are there any known programs that have this issue? About 6 times a day I get the message "/kernel: dc0: TX underrun -- resetting". It doesn't seem to be affecting the availability of my server at all, it still seems to perform as expected, otherwise. Could this have anything to do with the crashing? Where should I look for the cause of my crashes? I only know to look at /var/log/messages, but the only unusual messages there are the TX underrun ones. I'm marking Nov 16 on my calendar as the next expected crash date. Thanks, Robert LaThanh hybrid - pearlmagik.com Here are messages related to dc0: Oct 2 20:49:32 giggles /kernel: dc0: <82c169 PNIC 10/100BaseTX> port 0xf800-0xf8ff mem 0xfedffc00-0xfedffcff irq 10 at device 16.0 on pci0 Oct 2 20:49:32 giggles /kernel: dc0: Ethernet address: 00:a0:cc:25:be:c7 Oct 2 20:49:32 giggles /kernel: miibus0: on dc0 Oct 2 20:49:32 giggles /kernel: dc0: supplying EUI64: 00:a0:cc:ff:fe:25:be:c7 Oct 2 20:49:32 giggles /kernel: dc0: starting DAD for fe80:0001::02a0:ccff:fe25:bec7 Oct 2 20:49:32 giggles /kernel: dc0: DAD complete for fe80:0001::02a0:ccff:fe25:bec7 - no duplicates found Oct 3 04:01:13 giggles /kernel: dc0: TX underrun -- resetting Oct 3 05:53:50 giggles /kernel: dc0: TX underrun -- resetting Oct 3 07:54:32 giggles /kernel: dc0: TX underrun -- resetting Oct 3 11:28:06 giggles /kernel: dc0: TX underrun -- resetting Oct 3 12:54:49 giggles /kernel: dc0: TX underrun -- resetting Oct 3 13:32:59 giggles /kernel: dc0: TX underrun -- resetting Oct 3 15:02:49 giggles /kernel: dc0: TX underrun -- resetting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:40:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r08.mail.aol.com (imo-r08.mx.aol.com [152.163.225.8]) by hub.freebsd.org (Postfix) with ESMTP id AD91337B66E for ; Sun, 15 Oct 2000 14:40:53 -0700 (PDT) Received: from Westoned420@aol.com by imo-r08.mx.aol.com (mail_out_v28.31.) id n.c.be8f2df (9651) for ; Sun, 15 Oct 2000 17:40:47 -0400 (EDT) From: Westoned420@aol.com Message-ID: Date: Sun, 15 Oct 2000 17:40:47 EDT Subject: i followed the link. To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Windows AOL sub 120 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i followed a link off the site- would like to join the mailing list? respond if i contacted the wrong person (please) ... . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:44:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id CE3EE37B503 for ; Sun, 15 Oct 2000 14:44:48 -0700 (PDT) Received: from mail.hell.gr (patr530-a204.otenet.gr [212.205.215.204]) by athserv.otenet.gr (8.10.1/8.10.1) with SMTP id e9FLgph02075 for ; Mon, 16 Oct 2000 00:42:55 +0300 (EET DST) Received: (qmail 319 invoked by uid 1001); 15 Oct 2000 13:17:57 -0000 Message-ID: <20001015131757.318.qmail@localhost.hell.gr> From: "Giorgos Keramidas" Date: Sun, 15 Oct 2000 16:17:57 +0300 To: Salvo Bartolotta Cc: "Brandon D. Valentine" , freebsd-questions@FreeBSD.ORG Subject: Re: cvsup problems References: <20001013224101.750.qmail@localhost.hell.gr> <20001014.431400@bartequi.ottodomain.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001014.431400@bartequi.ottodomain.org>; from bartequi@inwind.it on Sat, Oct 14, 2000 at 12:43:14AM +0000 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Oct 14, 2000 at 12:43:14AM +0000, Salvo Bartolotta wrote: > > Next, I used Brandon's model: > > *default host=cvsup.nl.FreeBSD.org > *default base=/myjunk/mytrial > *default prefix=/myjunk/mytrial > *default release=cvs tag=RELENG_4 > *default delete use-rel-suffix > *default compress > src-all > > And, wait for it, it worked flawlessly. I am afraid **sigh** there > must be some weird/hidden interaction somewhere. > > But just to eliminate one possibility, a check with vi would make sure > no weird/unnecessary characters are found in the supfile. Hello Salvo, I guess we should ask Brandon to send the output of: % cat -e -t supfile and see if there is something weird in that :-) -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:44:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 0B7AC37B66D for ; Sun, 15 Oct 2000 14:44:50 -0700 (PDT) Received: from mail.hell.gr (patr530-a204.otenet.gr [212.205.215.204]) by athserv.otenet.gr (8.10.1/8.10.1) with SMTP id e9FLgph02078 for ; Mon, 16 Oct 2000 00:42:51 +0300 (EET DST) Received: (qmail 274 invoked by uid 1001); 15 Oct 2000 13:14:07 -0000 Message-ID: <20001015131407.273.qmail@localhost.hell.gr> From: "Giorgos Keramidas" Date: Sun, 15 Oct 2000 16:14:07 +0300 To: leoric@home.com Cc: freebsd-questions@freebsd.org Subject: Re: What is -lipc? References: <39E4B02E.792E9F6B@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39E4B02E.792E9F6B@home.com>; from leoric@home.com on Wed, Oct 11, 2000 at 01:23:42PM -0500 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 11, 2000 at 01:23:42PM -0500, leoric@home.com wrote: > In the Makefile for Eagle BBS there is a section called "special libs". > It says that if you are using Freebsd you need to add -lipc to the end > as well as -lcrypt and -lcompat. When I tried to compile it gave me an > error saying: > /usr/libexec/elf/ld: cannot find -lipc The program was made for some version of FreeBSD that required you to link against libipc.so in order to use IPC functions (IPC stands for Inter-Process Communication). > I then went into the make file and removed it and attempted to compile > again and it worked fine. After getting the BBS going I noticed > that all the connections to it were reported as comming from local > host. Does this have anything to do with -lipc? What is -lipc and how > should I deal with this? I do not have access to my local copy of the FreeBSD CVS repository now, so I will let somebody else answer what libipc was and why it's not required to link against it now. I can guess however that IPC functions are now a part of FreeBSD's libc and you are not required to use -lipc anymore :-) -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:45:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id E3B3937B66E for ; Sun, 15 Oct 2000 14:44:58 -0700 (PDT) Received: from mail.hell.gr (patr530-a204.otenet.gr [212.205.215.204]) by athserv.otenet.gr (8.10.1/8.10.1) with SMTP id e9FLgph02081 for ; Mon, 16 Oct 2000 00:42:51 +0300 (EET DST) Received: (qmail 412 invoked by uid 1001); 15 Oct 2000 13:25:39 -0000 Message-ID: <20001015132539.411.qmail@localhost.hell.gr> From: "Giorgos Keramidas" Date: Sun, 15 Oct 2000 16:25:39 +0300 To: Zhiui Zhang Cc: freebsd-questions@freebsd.org Subject: Re: Reading CVS commit logs References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from zzhang@cs.binghamton.edu on Sat, Oct 14, 2000 at 08:47:19PM -0400 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Oct 14, 2000 at 08:47:19PM -0400, Zhiui Zhang wrote: > > Can anyone tell me where I can download the CVS log (perhaps using some > cvs command?). I bought a 2.2.8 CD and it has a file CVSROOT.tar.gz. Where > can I find the most recent CVSROOT.tar.gz? If so, is there a simple way to > unzip all the files under CVSROOT directory. Thanks for your help. Dunno about the CVSROOT only, but I used CVSup to get myself a local copy of the CVS repository a few days ago. The entire repository is a little above 1 Gb of data, and CVSROOT came with it :-) Downloading the entire CVS repo when you only want CVS logs though, might be an overkill. Why would you want to fetch only the logs, anyway? -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 14:58: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id DBCA937B66C for ; Sun, 15 Oct 2000 14:57:57 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with SMTP id OAA02104; Sun, 15 Oct 2000 14:52:27 -0700 (PDT) From: "Otter" To: "Mullen, Adam" , Subject: RE: Netgear FA312 10/100 Ethernet Nic Date: Sun, 15 Oct 2000 18:00:05 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <2BAEE918EF6CD1118FA800805F57F12E09041B8D@excaus-aus01.txn.cpqcorp.net> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Adam, Under 4.1.1, the FA310 works like a champ using the dc driver. After picking up a NetGear 311 yesterday, I see that it doesn't work with dc or any other driver in the 4.1 GENERIC kernel I was attempting to install it on. Once I pull the 310 and compare chipsets, I'll let you know the difference. For what it's worth, I get the same result you do on my 311-- no recognition. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Mullen, Adam }Sent: Sunday, October 15, 2000 1:58 PM }To: 'freebsd-questions@FreeBSD.ORG' }Cc: Mullen, Adam }Subject: Netgear FA312 10/100 Ethernet Nic } } }I recently bought a Netgear FA312 Nic based off of the fact that they }claimed it ran under Linux. Well, not quite that simple. }It runs under }Linux under the kernel they developed it for. To say the }least, I've thrown }Linux out the door and am now running FreeBSD. I can't get }this card to }work here either. I've found that under OpenBSD they }suggest useing the sis }drivers. I've tried compiling the sis code into the kernel }but no such }luck. My latest escapade was to compile all of the network }drivers into the }kernel and see what happens. When I do an ifconfig -a, }nothing shows up }besides the nomal loopback. When I do dmesg | grep -i inet, }nothing shows }up. Has anyone else made attempts to use the FA312 Nic and }does anyone know }if this is even possible? } }Cheers, Adam } }Adam D. Mullen }Compaq Premier Support }Compaq Corp., Austin TX }Phone: (800) 255-5010 }Email adam.mullen@compaq.com } } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15: 1: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id E02D937B503; Sun, 15 Oct 2000 15:00:57 -0700 (PDT) Received: from localhost (bandix@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id SAA77246; Sun, 15 Oct 2000 18:01:06 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Sun, 15 Oct 2000 18:01:06 -0400 (EDT) From: "Brandon D. Valentine" To: Giorgos Keramidas Cc: Salvo Bartolotta , jdb@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: cvsup problems In-Reply-To: <20001015131757.318.qmail@localhost.hell.gr> 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 Oct 2000, Giorgos Keramidas wrote: >On Sat, Oct 14, 2000 at 12:43:14AM +0000, Salvo Bartolotta wrote: >> >> Next, I used Brandon's model: >> >> *default host=cvsup.nl.FreeBSD.org >> *default base=/myjunk/mytrial >> *default prefix=/myjunk/mytrial >> *default release=cvs tag=RELENG_4 >> *default delete use-rel-suffix >> *default compress >> src-all >> >> And, wait for it, it worked flawlessly. I am afraid **sigh** there >> must be some weird/hidden interaction somewhere. >> >> But just to eliminate one possibility, a check with vi would make sure >> no weird/unnecessary characters are found in the supfile. > >Hello Salvo, > >I guess we should ask Brandon to send the output of: > > % cat -e -t supfile > >and see if there is something weird in that :-) reef# cat "checkouts.cvs:." F 5 971393531 reef# cat "checkouts.cvs:RELENG_4" F 5 971394100 reef# cat -t -e stable-supfile *default host=cvsup9.FreeBSD.org$ *default base=/usr$ *default prefix=/usr$ *default release=cvs tag=RELENG_4$ *default delete use-rel-suffix$ *default compress$ $ src-all$ As shown above it writes out checkouts files as if it is supping, but the output remains the same as it was in my first email and nothing ever lands in /usr/src. It takes a matter of seconds to complete a cvsup run. I needed to get a new world up and running on this box so I've since just gone ahead and done an anoncvs checkout. I guess it wouldn't hurt to ask John Polstra. John if you would take a look at this along with my initial email at: http://docs.FreeBSD.org/cgi/getmsg.cgi?fetch=1647366+0+archive/2000/freebsd-questions/20001015.freebsd-questions and tell me what you think is going on I'd appreciate it. -- Brandon D. Valentine "Few things are harder to put up with than the annoyance of a good example." -- Mark Twain, Pudd'nhead Wilson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15: 2:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id 9042837B66D; Sun, 15 Oct 2000 15:02:32 -0700 (PDT) Received: from localhost (bandix@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id SAA77262; Sun, 15 Oct 2000 18:02:49 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Sun, 15 Oct 2000 18:02:49 -0400 (EDT) From: "Brandon D. Valentine" To: jdp@FreeBSD.ORG Cc: freebsd-questions@FreeBSD.ORG Subject: Re: cvsup problems (fwd) 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 s/b/p in the email address. It's been a long weekend. -- Brandon D. Valentine "Few things are harder to put up with than the annoyance of a good example." -- Mark Twain, Pudd'nhead Wilson ---------- Forwarded message ---------- Date: Sun, 15 Oct 2000 18:01:06 -0400 (EDT) From: Brandon D. Valentine To: Giorgos Keramidas Cc: Salvo Bartolotta , jdb@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: cvsup problems On Sun, 15 Oct 2000, Giorgos Keramidas wrote: >On Sat, Oct 14, 2000 at 12:43:14AM +0000, Salvo Bartolotta wrote: >> >> Next, I used Brandon's model: >> >> *default host=cvsup.nl.FreeBSD.org >> *default base=/myjunk/mytrial >> *default prefix=/myjunk/mytrial >> *default release=cvs tag=RELENG_4 >> *default delete use-rel-suffix >> *default compress >> src-all >> >> And, wait for it, it worked flawlessly. I am afraid **sigh** there >> must be some weird/hidden interaction somewhere. >> >> But just to eliminate one possibility, a check with vi would make sure >> no weird/unnecessary characters are found in the supfile. > >Hello Salvo, > >I guess we should ask Brandon to send the output of: > > % cat -e -t supfile > >and see if there is something weird in that :-) reef# cat "checkouts.cvs:." F 5 971393531 reef# cat "checkouts.cvs:RELENG_4" F 5 971394100 reef# cat -t -e stable-supfile *default host=cvsup9.FreeBSD.org$ *default base=/usr$ *default prefix=/usr$ *default release=cvs tag=RELENG_4$ *default delete use-rel-suffix$ *default compress$ $ src-all$ As shown above it writes out checkouts files as if it is supping, but the output remains the same as it was in my first email and nothing ever lands in /usr/src. It takes a matter of seconds to complete a cvsup run. I needed to get a new world up and running on this box so I've since just gone ahead and done an anoncvs checkout. I guess it wouldn't hurt to ask John Polstra. John if you would take a look at this along with my initial email at: http://docs.FreeBSD.org/cgi/getmsg.cgi?fetch=1647366+0+archive/2000/freebsd-questions/20001015.freebsd-questions and tell me what you think is going on I'd appreciate it. -- Brandon D. Valentine "Few things are harder to put up with than the annoyance of a good example." -- Mark Twain, Pudd'nhead Wilson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:11: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.springwoodsys.com (ns1.springwoodsys.com [12.38.17.16]) by hub.freebsd.org (Postfix) with ESMTP id 7116C37B66D for ; Sun, 15 Oct 2000 15:11:03 -0700 (PDT) Received: from hq4.hq.springwoodsys.com (springwoodsys.erols.com [208.58.154.69]) by ns1.springwoodsys.com (8.9.3/8.9.3) with ESMTP id SAA20111; Sun, 15 Oct 2000 18:27:02 -0400 (EDT) (envelope-from bill@springwoodsys.com) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <00b301c036d7$c3b288e0$65010180@lojasobino.com.br> Date: Sun, 15 Oct 2000 18:09:25 -0400 (EDT) From: "Bill O'Connell" To: Fabrizzio Batista Subject: Re: Problems with IPSEC Cc: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 15-Oct-00 Fabrizzio Batista wrote: > > Thanks for help me, Iīm very lost. Do you make IPSEC works ??? > > So, see the configuration and setkey output. > > * LAN A - Subnet 192.168.1.0/24 -> IP: 200.248.23.134 > > IPSEC.CONF: > > flush; > spdflush; > spdadd 192.168.1.0/24 128.1.1.0/24 any -P out ipsec > ah/tunnel/200.248.23.134-200.248.23.150/require; > spdadd 128.1.1.0/24 192.168.1.0/24 any -P in ipsec > ah/tunnel/200.248.23.150-200.248.23.134/require; > add 200.248.23.134 200.248.23.150 ah-old 0xd10003 -m any -A > keyed-md5 > "this is the test"; > add 200.248.23.150 200.248.23.134 ah-old 0xd10004 -m any -A > keyed-md5 > "this is the test"; > > setkey -D: > > 200.248.23.150 200.248.23.134 > ah mode=any spi=13697028(0x00d10004) reqid=0(0x00000000) > A: md5 74686973 20697320 74686520 74657374 > replay=0 flags=0x00000041 state=mature seq=1 pid=390 > created: Oct 15 16:26:57 2000 current: Oct 15 16:33:30 2000 > diff: 393(s) hard: 0(s) soft: 0(s) > last: hard: 0(s) soft: 0(s) > current: 0(bytes) hard: 0(bytes) soft: 0(bytes) > allocated: 0 hard: 0 soft: 0 > refcnt=1 > > 200.248.23.134 200.248.23.150 > ah mode=any spi=13697027(0x00d10003) reqid=0(0x00000000) > A: md5 74686973 20697320 74686520 74657374 > replay=0 flags=0x00000041 state=mature seq=0 pid=390 > created: Oct 15 16:26:57 2000 current: Oct 15 16:33:30 2000 > diff: 393(s) hard: 0(s) soft: 0(s) > last: hard: 0(s) soft: 0(s) > current: 0(bytes) hard: 0(bytes) soft: 0(bytes) > allocated: 0 hard: 0 soft: 0 > refcnt=1 > > > setkey -DP: > > 128.1.1.0/24[any] 192.168.1.0/24[any] any > in ipsec > ah/tunnel/200.248.23.150-200.248.23.134/require > spid=4 seq=1 pid=389 > refcnt=1 > 192.168.1.0/24[any] 128.1.1.0/24[any] any > out ipsec > ah/tunnel/200.248.23.134-200.248.23.150/require > spid=3 seq=0 pid=389 > refcnt=1 > > * LAN B - Subnet 128.1.1.0/24 -> IP: 200.248.23.150 > > > IPSEC.CONF: > > flush; > spdflush; > spdadd 128.1.1.0/24 192.168.1.0/24 any -P out ipsec > ah/tunnel/200.248.23.150-200.248.23.134/require; > spdadd 192.168.1.0/24 128.1.1.0/24 any -P in ipsec > ah/tunnel/200.248.23.134-200.248.23.150/require; > add 200.248.23.134 200.248.23.150 ah-old 0xd10003 -m any -A > keyed-md5 "this > is the test"; > add 200.248.23.150 200.248.23.134 ah-old 0xd10004 -m any -A > keyed-md5 "this > is the test"; > > > setkey -D: > > 200.248.23.150 200.248.23.134 > ah mode=any spi=13697028(0x00d10004) reqid=0(0x00000000) > A: md5 74686973 20697320 74686520 74657374 > replay=0 flags=0x00000041 state=mature seq=1 pid=1404 > created: Oct 15 18:21:18 2000 current: Oct 15 18:36:19 2000 > diff: 901(s) hard: 0(s) soft: 0(s) > last: hard: 0(s) soft: 0(s) > current: 0(bytes) hard: 0(bytes) soft: 0(bytes) > allocated: 0 hard: 0 soft: 0 > refcnt=1 > 200.248.23.134 200.248.23.150 > ah mode=any spi=13697027(0x00d10003) reqid=0(0x00000000) > A: md5 74686973 20697320 74686520 74657374 > replay=0 flags=0x00000041 state=mature seq=0 pid=1404 > created: Oct 15 18:21:18 2000 current: Oct 15 18:36:19 2000 > diff: 901(s) hard: 0(s) soft: 0(s) > last: hard: 0(s) soft: 0(s) > current: 0(bytes) hard: 0(bytes) soft: 0(bytes) > allocated: 0 hard: 0 soft: 0 > refcnt=1 > > setkey -DP: > > 192.168.1.0/24[any] 128.1.1.0/24[any] any > in ipsec > ah/tunnel/200.248.23.134-200.248.23.150/require > spid=5 seq=1 pid=1405 > refcnt=1 > 128.1.1.0/24[any] 192.168.1.0/24[any] any > out ipsec > ah/tunnel/200.248.23.150-200.248.23.134/require > spid=4 seq=0 pid=1405 > refcnt=1 > > > Thanks for all !!! > > >> >> What do the actual SAD and SPD entries look like, i.e. what does >> setkey -D and setkey -DP show? Need to see this on the other >> machine >> as well. >> >> >> Bill > > The SAD and SPD entries look OK. Are you running a firewall and/or NAT on these systems? If so, how are they configured? Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:14:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id ACDEF37B66D for ; Sun, 15 Oct 2000 15:14:02 -0700 (PDT) Received: from computer (user-37kba8b.dialup.mindspring.com [207.69.169.11]) by granger.mail.mindspring.net (8.9.3/8.8.5) with SMTP id SAA04163 for ; Sun, 15 Oct 2000 18:13:58 -0400 (EDT) From: "Chris Prance" To: Subject: HELP!!! Date: Sun, 15 Oct 2000 18:24:47 -0400 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0000_01C036D5.329BA910" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0000_01C036D5.329BA910 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit To whomever it may concern, I NEED HELP, ahah, I knew that already. Sorry to the point. I'm having problems upgrading from 3.4 stable to 4.0 stable. I have included my configu file and the error message I recieved upon running 'make buildkernel KERNEL=MYKERNEL' any answers or suggestions whould be greatly appreciated. Thanks, Chris Prance ------=_NextPart_000_0000_01C036D5.329BA910 Content-Type: application/octet-stream; name="MYKERNEL" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="MYKERNEL" #=0A= # GENERIC -- Generic kernel configuration file for FreeBSD/i386=0A= #=0A= # For more information on this file, please read the handbook section on=0A= # Kernel Configuration Files:=0A= #=0A= # http://www.FreeBSD.org/handbook/kernelconfig-config.html=0A= #=0A= # The handbook is also available locally in /usr/share/doc/handbook=0A= # if you've installed the doc distribution, otherwise always see the=0A= # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the=0A= # latest information.=0A= #=0A= # An exhaustive list of options and more detailed explanations of the=0A= # device lines is also present in the ./LINT configuration file. If you = are=0A= # in doubt as to the purpose or necessity of a line, check first in LINT.=0A= #=0A= # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.15 2000/10/12 01:47:16 = msmith Exp $=0A= =0A= machine i386=0A= #cpu I386_CPU=0A= #cpu I486_CPU=0A= cpu I586_CPU=0A= #cpu I686_CPU=0A= ident MYKERNEL=0A= maxusers 32=0A= =0A= #makeoptions DEBUG=3D-g #Build kernel with gdb(1) debug symbols=0A= =0A= options MATH_EMULATE #Support for x87 emulation=0A= options INET #InterNETworking=0A= options INET6 #IPv6 communications protocols=0A= options IPFIREWALL #Firewall=0A= options FFS #Berkeley Fast Filesystem=0A= options FFS_ROOT #FFS usable as root device [keep this!]=0A= options SOFTUPDATES #Enable FFS soft updates support=0A= options MFS #Memory Filesystem=0A= options MD_ROOT #MD is a potential root device=0A= options NFS #Network Filesystem=0A= options NFS_ROOT #NFS usable as root device, NFS required=0A= options MSDOSFS #MSDOS Filesystem=0A= options CD9660 #ISO 9660 Filesystem=0A= options CD9660_ROOT #CD-ROM usable as root, CD9660 required=0A= options PROCFS #Process filesystem=0A= options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]=0A= options SCSI_DELAY=3D15000 #Delay (in ms) before probing SCSI=0A= options UCONSOLE #Allow users to grab the console=0A= options USERCONFIG #boot -c editor=0A= options VISUAL_USERCONFIG #visual boot -c editor=0A= options KTRACE #ktrace(1) support=0A= options SYSVSHM #SYSV-style shared memory=0A= options SYSVMSG #SYSV-style message queues=0A= options SYSVSEM #SYSV-style semaphores=0A= options P1003_1B #Posix P1003_1B real-time extensions=0A= options _KPOSIX_PRIORITY_SCHEDULING=0A= options ICMP_BANDLIM #Rate limit bad replies=0A= options KBD_INSTALL_CDEV # install a CDEV entry in /dev=0A= =0A= # To make an SMP kernel, the next two are needed=0A= #options SMP # Symmetric MultiProcessor Kernel=0A= #options APIC_IO # Symmetric (APIC) I/O=0A= =0A= device isa=0A= device eisa=0A= device pci=0A= =0A= # Floppy drives=0A= #device fdc0 at isa? port IO_FD1 irq 6 drq 2=0A= #device fd0 at fdc0 drive 0=0A= #device fd1 at fdc0 drive 1=0A= =0A= # ATA and ATAPI devices=0A= device ata0 at isa? port IO_WD1 irq 14=0A= device ata1 at isa? port IO_WD2 irq 15=0A= device ata=0A= device atadisk # ATA disk drives=0A= device atapicd # ATAPI CDROM drives=0A= #device atapifd # ATAPI floppy drives=0A= #device atapist # ATAPI tape drives=0A= #options ATA_STATIC_ID #Static device numbering=0A= #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices=0A= =0A= # SCSI Controllers=0A= #device ahb # EISA AHA1742 family=0A= #device ahc # AHA2940 and onboard AIC7xxx devices=0A= #device amd # AMD 53C974 (Teckram DC-390(T))=0A= #device isp # Qlogic family=0A= #device ncr # NCR/Symbios Logic=0A= #device sym # NCR/Symbios Logic (newer chipsets)=0A= #options SYM_SETUP_LP_PROBE_MAP=3D0x40=0A= # Allow ncr to attach legacy NCR devices when =0A= # both sym and ncr are configured=0A= =0A= #device adv0 at isa?=0A= #device adw=0A= #device bt0 at isa?=0A= #device aha0 at isa?=0A= #device aic0 at isa?=0A= =0A= # SCSI peripherals=0A= #device scbus # SCSI bus (required)=0A= #device da # Direct Access (disks)=0A= #device sa # Sequential Access (tape etc)=0A= #device cd # CD=0A= #device pass # Passthrough device (direct SCSI access)=0A= =0A= # RAID controllers interfaced to the SCSI subsystem=0A= #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID=0A= #device dpt # DPT Smartcache - See LINT for options!=0A= =0A= # RAID controllers=0A= #device ida # Compaq Smart RAID=0A= #device amr # AMI MegaRAID=0A= #device mlx # Mylex DAC960 family=0A= #device twe # 3ware Escalade=0A= =0A= # atkbdc0 controls both the keyboard and the PS/2 mouse=0A= device atkbdc0 at isa? port IO_KBD=0A= device atkbd0 at atkbdc? irq 1 flags 0x1=0A= device psm0 at atkbdc? irq 12=0A= =0A= device vga0 at isa?=0A= =0A= # splash screen/screen saver=0A= pseudo-device splash=0A= =0A= # syscons is the default console driver, resembling an SCO console=0A= device sc0 at isa? flags 0x100=0A= =0A= # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver=0A= #device vt0 at isa?=0A= #options XSERVER # support for X server on a vt console=0A= #options FAT_CURSOR # start with block cursor=0A= # If you have a ThinkPAD, uncomment this along with the rest of the PCVT = lines=0A= #options PCVT_SCANSET=3D2 # IBM keyboards are non-std=0A= =0A= # Floating point support - do not disable.=0A= device npx0 at nexus? port IO_NPX irq 13=0A= =0A= # Power management support (see LINT for more options)=0A= #device apm0 at nexus? disable flags 0x20 # Advanced Power Management=0A= =0A= # PCCARD (PCMCIA) support=0A= #device card=0A= #device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000=0A= #device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable=0A= =0A= # Serial (COM) ports=0A= device sio0 at isa? port IO_COM1 flags 0x10 irq 4=0A= #device sio1 at isa? port IO_COM2 irq 3=0A= #device sio2 at isa? disable port IO_COM3 irq 5=0A= #device sio3 at isa? disable port IO_COM4 irq 9=0A= =0A= # Parallel port=0A= device ppc0 at isa? irq 7=0A= device ppbus # Parallel port bus (required)=0A= device lpt # Printer=0A= device plip # TCP/IP over parallel=0A= device ppi # Parallel port interface device=0A= #device vpo # Requires scbus and da=0A= =0A= =0A= # PCI Ethernet NICs.=0A= #device de # DEC/Intel DC21x4x (``Tulip'')=0A= #device fxp # Intel EtherExpress PRO/100B (82557, 82558)=0A= #device tx # SMC 9432TX (83c170 ``EPIC'')=0A= #device vx # 3Com 3c590, 3c595 (``Vortex'')=0A= #device wx # Intel Gigabit Ethernet Card (``Wiseman'')=0A= =0A= # PCI Ethernet NICs that use the common MII bus controller code.=0A= #device miibus # MII bus support=0A= #device dc # DEC/Intel 21143 and various workalikes=0A= #device pcn # AMD Am79C79x PCI 10/100 NICs=0A= device rl # RealTek 8129/8139=0A= #device sf # Adaptec AIC-6915 (``Starfire'')=0A= #device sis # Silicon Integrated Systems SiS 900/SiS 7016=0A= #device ste # Sundance ST201 (D-Link DFE-550TX)=0A= #device tl # Texas Instruments ThunderLAN=0A= #device vr # VIA Rhine, Rhine II=0A= #device wb # Winbond W89C840F=0A= #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')=0A= =0A= # ISA Ethernet NICs.=0A= #device ed0 at isa? port 0x280 irq 10 iomem 0xd8000=0A= #device ex=0A= #device ep=0A= #device fe0 at isa? port 0x300=0A= # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really=0A= # exists only as a PCMCIA device, so there is no ISA attatement needed=0A= # and resources will always be dynamically assigned by the pccard code.=0A= #device wi=0A= # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below = will=0A= # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP=0A= # mode (the factory default). If you set the switches on your ISA=0A= # card for a manually chosen I/O address and IRQ, you must specify=0A= # those paremeters here.=0A= #device an=0A= # Xircom Ethernet=0A= #device xe=0A= # The probe order of these is presently determined by = i386/isa/isa_compat.c.=0A= #device ie0 at isa? port 0x300 irq 10 iomem 0xd0000=0A= #device le0 at isa? port 0x300 irq 5 iomem 0xd0000=0A= #device lnc0 at isa? port 0x280 irq 10 drq 0=0A= #device cs0 at isa? port 0x300=0A= #device sn0 at isa? port 0x300 irq 10=0A= =0A= # Pseudo devices - the number indicates how many units to allocated.=0A= pseudo-device loop # Network loopback=0A= pseudo-device ether # Ethernet support=0A= pseudo-device sl 1 # Kernel SLIP=0A= pseudo-device ppp 1 # Kernel PPP=0A= pseudo-device tun # Packet tunnel.=0A= pseudo-device pty # Pseudo-ttys (telnet etc)=0A= pseudo-device md # Memory "disks"=0A= pseudo-device gif 4 # IPv6 and IPv4 tunneling=0A= pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation)=0A= =0A= # The `bpf' pseudo-device enables the Berkeley Packet Filter.=0A= # Be aware of the administrative consequences of enabling this!=0A= pseudo-device bpf #Berkeley packet filter=0A= =0A= # USB support=0A= #device uhci # UHCI PCI->USB interface=0A= #device ohci # OHCI PCI->USB interface=0A= #device usb # USB Bus (required)=0A= #device ugen # Generic=0A= #device uhid # "Human Interface Devices"=0A= #device ukbd # Keyboard=0A= #device ulpt # Printer=0A= #device umass # Disks/Mass storage - Requires scbus and da=0A= #device ums # Mouse=0A= # USB Ethernet, requires mii=0A= #device aue # ADMtek USB ethernet=0A= #device cue # CATC USB ethernet=0A= #device kue # Kawasaki LSI USB ethernet=0A= ------=_NextPart_000_0000_01C036D5.329BA910 Content-Type: application/octet-stream; name="error.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="error.log" =0A= --------------------------------------------------------------=0A= >>> Rebuilding kernel(s)=0A= --------------------------------------------------------------=0A= =3D=3D=3D> MYKERNEL=0A= mkdir -p /usr/obj/usr/src/sys=0A= cd /usr/src/sys/i386/conf; = PATH=3D/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/= obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin config -r -d = /usr/obj/usr/src/sys/MYKERNEL MYKERNEL=0A= Don't forget to do a ``make depend''=0A= Kernel build directory is /usr/obj/usr/src/sys/MYKERNEL=0A= cd /usr/obj/usr/src/sys/MYKERNEL; = MAKESRCPATH=3D/usr/src/sys/dev/aic7xxx/aicasm make -f = /usr/src/sys/dev/aic7xxx/aicasm/Makefile=0A= Warning: Object directory not changed from original = /usr/obj/usr/src/sys/MYKERNEL=0A= yacc -d /usr/src/sys/dev/aic7xxx/aicasm/aicasm_gram.y=0A= mv y.tab.c aicasm_gram.c=0A= cc -O -pipe -nostdinc -I/usr/obj/usr/src/sys/MYKERNEL/../../.. -I. = -I/usr/include -c aicasm_gram.c=0A= lex -t /usr/src/sys/dev/aic7xxx/aicasm/aicasm_scan.l > aicasm_scan.c=0A= cc -O -pipe -nostdinc -I/usr/obj/usr/src/sys/MYKERNEL/../../.. -I. = -I/usr/include -c aicasm_scan.c=0A= cc -O -pipe -nostdinc -I/usr/obj/usr/src/sys/MYKERNEL/../../.. -I. = -I/usr/include -c /usr/src/sys/dev/aic7xxx/aicasm/aicasm.c=0A= cc -O -pipe -nostdinc -I/usr/obj/usr/src/sys/MYKERNEL/../../.. -I. = -I/usr/include -c /usr/src/sys/dev/aic7xxx/aicasm/aicasm_symbol.c=0A= cc -O -pipe -nostdinc -I/usr/obj/usr/src/sys/MYKERNEL/../../.. -I. = -I/usr/include -o aicasm aicasm_gram.o aicasm_scan.o aicasm.o = aicasm_symbol.o -ll=0A= cd /usr/obj/usr/src/sys/MYKERNEL; MAKEOBJDIRPREFIX=3D/usr/obj = COMPILER_PATH=3D/usr/obj/usr/src/i386/usr/libexec:/usr/obj/usr/src/i386/u= sr/bin = LIBRARY_PATH=3D/usr/obj/usr/src/i386/usr/lib:/usr/obj/usr/src/i386/usr/li= b OBJFORMAT_PATH=3D/usr/obj/usr/src/i386/usr/libexec = PERL5LIB=3D/usr/obj/usr/src/i386/usr/libdata/perl/5.00503 = DESTDIR=3D/usr/obj/usr/src/i386 INSTALL=3D"sh = /usr/src/tools/install.sh" = PATH=3D/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/= obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin MACHINE=3Di386 = make KERNEL=3Dkernel depend=0A= cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys = -I/usr/src/sys/../include -D_KERNEL -include opt_global.h -elf = -mpreferred-stack-boundary=3D2 /usr/src/sys/i386/i386/genassym.c=0A= *** Error code 1=0A= =0A= Stop.=0A= *** Error code 1=0A= =0A= Stop.=0A= *** Error code 1=0A= =0A= Stop.=0A= ------=_NextPart_000_0000_01C036D5.329BA910-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:26:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-server.tampabay.rr.com (smtp-server1.tampabay.rr.com [24.92.1.13]) by hub.freebsd.org (Postfix) with ESMTP id AAE9B37B66D for ; Sun, 15 Oct 2000 15:26:25 -0700 (PDT) Received: from sbohm.yi.org (2492222hfc174.tampabay.rr.com [24.92.222.174]) by smtp-server.tampabay.rr.com (8.9.3/8.9.3) with SMTP id SAA12348 for ; Sun, 15 Oct 2000 18:26:19 -0400 (EDT) From: degraz@sbohm.yi.org Received: from sbohm.yi.org [127.0.0.1] by sbohm.yi.org [127.0.0.1] with RAW (MDaemon.v2.7.SP4.R) for ; Sun, 15 Oct 2000 19:18:24 -0400 Date: Sun, 15 Oct 2000 19:18:24 -0400 Subject: Root-Like telnet account To: freebsd-questions@FreeBSD.ORG X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG Reply-To: degraz@sbohm.yi.org Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Actual-From: degraz@sbohm.yi.org X-Mailer: WebPOP v2.0 Service Pack 1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I just installed FreeBSD on an older system I have, just to try it out, and would like to be able to telnet into it, and configure things remotely. Is is possible to make it so that I can login from root, or that another account has many of the same pr velages as root, such as modifying configuration files? Also, when I login to through telnet, it connects, and sits for about 1-2 minutes before I get a login dialog. After this, data transfers very quickly. I get the same problem when logging into FTP, the client connects, but then times out. FreeBSD giv s me some message about "icmp-response bandwidth limit 201/200 ppi." Does this have anything to do with the problem, and what can I do about it? Thanks, Travis Troyer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:28:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cluttered.com (w024.z064002058.sjc-ca.dsl.cnc.net [64.2.58.24]) by hub.freebsd.org (Postfix) with ESMTP id EA13737B66C for ; Sun, 15 Oct 2000 15:28:31 -0700 (PDT) Received: from Pretension.collab.net (jsd [10.10.10.3]) by cluttered.com (Postfix) with ESMTP id 1A0BBA6 for ; Sun, 15 Oct 2000 15:28:37 -0700 (PDT) Message-Id: <4.3.2.7.2.20001015152522.00b28008@lasvegas.sfo.collab.net> X-Sender: jsd@lasvegas.sfo.collab.net X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Sun, 15 Oct 2000 15:28:07 -0700 To: freebsd-questions@freebsd.org From: Jon Drukman Subject: sshd: fatal: timeout before authentication 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 Hi there. On my fairly typical 4.1.1-R install, I was using the supplied sshd happily until just recently. I'm not sure what changed, but after a reboot, sshd would work fine for a while and then suddenly stop accepting logins. You'd connect, get the password prompt, supply your password, and then it would just hang forever. The message in syslog is: Oct 15 10:51:33 cluttered sshd[1886]: fatal: Timeout before authentication for 64.208.42.22. This happened regardless of what SSH client I would use to connect. I managed to get around it by installing the latest OpenSSH from source, but I'm curious to know if this is a known problem and/or if there is any fix for it. -jsd- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:30:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe18.law3.hotmail.com [209.185.240.122]) by hub.freebsd.org (Postfix) with ESMTP id CF3CD37B503 for ; Sun, 15 Oct 2000 15:30:45 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 15 Oct 2000 15:30:45 -0700 X-Originating-IP: [64.228.225.134] From: "Martin Gignac" To: Subject: /stand/sysinstall, packages, CDROM and 4.1.1 problem... Date: Sun, 15 Oct 2000 18:30:41 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 15 Oct 2000 22:30:45.0423 (UTC) FILETIME=[8F3B63F0:01C036F7] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I installed FreeBSD 4.1 on a system and used to be able to install packages from CD using /stand/sysinstall without any problems. But ever since I've upgraded sources and made world to 4.1.1-STABLE on Oct. 12th, I get the foloowing error in /stand/sysinstall whenever I try to install packages from the FreeBSD CD-ROMs: Error mounting /dev/acd0c on /dist: Input/output error (5) cd0: READ_BIG - ILLEGAL REQUEST asc=21 ascq=00 error=04 If I simply mount the CD to /cdrom and use pkg_add, I can install stuff no problem. So this is not a critical problem by any means. I'm just curious as to why this is happening. My CD-ROM drive is just a plain Creative Labs 24X IDE unit. Any ideas? Thanks, -Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:31:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe26.law3.hotmail.com [209.185.240.19]) by hub.freebsd.org (Postfix) with ESMTP id C0D3037B66E for ; Sun, 15 Oct 2000 15:31:30 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 15 Oct 2000 15:31:30 -0700 X-Originating-IP: [64.228.225.134] From: "Martin Gignac" To: Subject: ADOM, terminfo and tconv problem... Date: Sun, 15 Oct 2000 18:31:28 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 15 Oct 2000 22:31:30.0626 (UTC) FILETIME=[AA2CD220:01C036F7] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Another question: I've installed the Ancient Domains of Mystery port on my 4.1.1-STABLE system and cannot get it to run. I keep getting the following error on startup: Error opening terminal: cons25 I've tried setting the TERM variable to 'vt100' and 'ansi' but it only changes the error message to: Error opening terminal: vt100 or Error opening terminal: ansi I've read the ADOM README file and it suggests running a program called 'tconv' on FreeBSD systems to create a terminfo database from a termcap file. Seems I can't find a binary called 'tconv', although a 'locate tconv' does show C sources for 'tconv' in /usr/src/usr.bin/tconv. I'm not much of an expert in compiling, but tried to 'make', 'make build' and 'make install' in that directory, but to no avail. How can I create this binary? Should it not be rebuilt whenever I do a make world? Has anybody had the same problem with this port? Any hel would be appreciated. Thanks, -Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:32:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cluttered.com (w024.z064002058.sjc-ca.dsl.cnc.net [64.2.58.24]) by hub.freebsd.org (Postfix) with ESMTP id C7B2037B66F for ; Sun, 15 Oct 2000 15:32:50 -0700 (PDT) Received: from Pretension.collab.net (jsd [10.10.10.3]) by cluttered.com (Postfix) with ESMTP id 9A230A6 for ; Sun, 15 Oct 2000 15:32:56 -0700 (PDT) Message-Id: <4.3.2.7.2.20001015152808.00b275f8@lasvegas.sfo.collab.net> X-Sender: jsd@lasvegas.sfo.collab.net X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Sun, 15 Oct 2000 15:32:26 -0700 To: freebsd-questions@freebsd.org From: Jon Drukman Subject: natd + ipfw in default deny mode 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 I am running 4.1.1-R and doing the typical natd + ipfw thing to let my windows boxes connect to my DSL line through the FreeBSD box. I was wondering if it is possible to run the FreeBSD ipfw configuration in "default deny" mode. I can't get it to work by doing firewall type "simple". Unless I have a pass all rule in the ipfw config, I get this message from natd: Oct 14 19:42:33 cluttered natd[98]: failed to write packet back (Permission denied) I thought having the divert rule early on would work around all the deny rules, but I haven't stumbled on the magic formula. Any example firewall configs would be appreciated. Right now I'm running in "open" mode and explicitly blocking a few troublesome ports (windows networking for example) but obviously it would be nicer to block everything and only accept what I specifically need. In case it matters, the external network (dsl) is on interface dc0. The internal net is 10.10.10.0/24 on interface ed0. My natd lines in rc.conf are: natd_enable="YES" natd_interface="dc0" natd_flags="" My firewall lines are: firewall_enable="YES" firewall_type="open" firewall_logging="YES" -jsd- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 15:50:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 9E2EF37B66E for ; Sun, 15 Oct 2000 15:50:26 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id F0F0B1F26; Sun, 15 Oct 2000 15:50:25 -0700 (PDT) Subject: Re: Root-Like telnet account In-Reply-To: "from degraz@sbohm.yi.org at Oct 15, 2000 07:18:24 pm" To: degraz@sbohm.yi.org Date: Sun, 15 Oct 2000 15:50:25 -0700 (PDT) Cc: freebsd-questions@FreeBSD.ORG From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001015225025.F0F0B1F26@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, Please wrap your lines to 72 characters. > > I just installed FreeBSD on an older system I have, just to try it > out, and would like to be able to telnet into it, and configure > things remotely. Is is possible to make it so that I can login from > root, or that another account has many of the same pr > velages as root, such as modifying configuration files? You can, but you probably don't want to do that. You should create yourself a regular account, put it in the wheel group, and use su(1) when you need to do administrative work. > > Also, when I login to through telnet, it connects, and sits for > about 1-2 minutes before I get a login dialog. After this, data > transfers very quickly. I get the same problem when logging into > FTP, the client connects, but then times out. FreeBSD giv > s me some message about "icmp-response bandwidth limit 201/200 ppi." > Does this have anything to do with the problem, and what can I do > about it? Could be. The symptoms(sp?) you describe are most likely caused by an incorrectly configured resolver. Basically, services like telnet and ftp try to get the DNS name associated with the address the connection is coming from. If the resolver isn't working correctly, it takes a minute of two for the request to time out. Make sure you have your nameservers correct in /etc/resolv.conf. Also take a look at `man resolver`. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Never ascribe to malice, that which can be explained by incompetence." -- Napoleon Bonaparte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 16:30:47 2000 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 BEB9437B66F for ; Sun, 15 Oct 2000 16:30:43 -0700 (PDT) Received: from rac5.wam.umd.edu (IDENT:root@rac5.wam.umd.edu [128.8.10.145]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA11210; Sun, 15 Oct 2000 19:30:37 -0400 (EDT) Received: from rac5.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac5.wam.umd.edu (8.9.3/8.9.3) with SMTP id TAA28518; Sun, 15 Oct 2000 19:30:36 -0400 (EDT) Received: from localhost (culverk@localhost) by rac5.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA28514; Sun, 15 Oct 2000 19:30:36 -0400 (EDT) X-Authentication-Warning: rac5.wam.umd.edu: culverk owned process doing -bs Date: Sun, 15 Oct 2000 19:30:36 -0400 (EDT) From: Kenneth Wayne Culver To: Alfred Perlstein Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kde2 In-Reply-To: <20001015102221.E272@fw.wintelcom.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 Well, it turns out the problems aren't with linux... I just tried... it's only FreeBSD. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Sun, 15 Oct 2000, Alfred Perlstein wrote: > * Kenneth Wayne Culver [001015 06:08] wrote: > > I compiled KDE2rc2 recently, and I have some problems with it. Mainly > > certain things like trying to make the logout window pop up and trying to > > type a URL into Konquerer don't work. These same problems occur when I > > tried to make it work in linux. Anyway, has anyone gotten KDE2 to work > > without any problems on FreeBSD or Linux? > > If the problem is on both FreeBSD and Linux then these questions > and bug reports really belong on the KDE mailing lists. > > It would be a lot better if you reported the problems to them > directly especially since they plan on making a release really > soon. > > -- > -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] > "I have the heart of a child; I keep it in a jar on my desk." > > > 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 Oct 15 16:56: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1b.mail.yahoo.com (smtp3.mail.yahoo.com [128.11.68.135]) by hub.freebsd.org (Postfix) with SMTP id 0000C37B66C for ; Sun, 15 Oct 2000 16:55:50 -0700 (PDT) Received: from pppa89-resalenewyorkmetro12-5r7187.saturn.bbn.com (HELO bisito) (4.54.119.246) by smtp.mail.vip.suc.yahoo.com with SMTP; 15 Oct 2000 23:55:50 -0000 X-Apparently-From: Reply-To: From: "Luis Cubillos" To: Subject: Date: Sun, 15 Oct 2000 19:54:55 -0400 Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01C036E1.CA732860" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0004_01C036E1.CA732860 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit auth 7e59c321 subscribe freebsd-questions bisito2@yahoo.com ------=_NextPart_000_0004_01C036E1.CA732860 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

auth 7e59c321 subscribe freebsd-questions bisito2@yahoo.com

 
 
------=_NextPart_000_0004_01C036E1.CA732860-- _________________________________________________________ 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 Sun Oct 15 17:18:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from n5ial.gnt.com (n5ial.gnt.com [204.49.69.6]) by hub.freebsd.org (Postfix) with ESMTP id 4818A37B66D for ; Sun, 15 Oct 2000 17:18:21 -0700 (PDT) Received: (from jim@localhost) by n5ial.gnt.com (8.7.5/8.7.3) id TAA07577 for freebsd-questions@FreeBSD.ORG; Sun, 15 Oct 2000 19:17:00 -0500 Date: Sun, 15 Oct 2000 19:17:00 -0500 From: Jim Graham To: freebsd-questions@FreeBSD.ORG Subject: Re: ftp: "500 Illegal PORT range rejected." Message-ID: <20001015191700.B7531@n5ial.gnt.net> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <20001015133844.A3245@n5ial.gnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <20001015133844.A3245@n5ial.gnt.net>; from Jim Graham on Sun, Oct 15, 2000 at 01:38:44PM -0500 X-PGP: see http://www.gnt.net/~n5ial for PGP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Oct 15, 2000 at 01:38:44PM -0500, I wrote: > -- > 73 DE N5IAL (/4) MiSTie #49997 < Running Linux 2.2.12 > ^^^^^^^^^^^^^^^^^^^^ I *REALLY* need to get around to changing those .signatures.... :-) Later, --jim -- 73 DE N5IAL (/4) | "Now what *you* need is a proper pint of jim@n5ial.gnt.net | porter poured in a proper pewter porter ICBM / Hurricane: | pot.." 30.39735N 86.60439W | --Peter Dalgaard in alt.sysadmin.recovery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 17:21:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id DAFD437B66C for ; Sun, 15 Oct 2000 17:21:28 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id RAA05262; Sun, 15 Oct 2000 17:21:27 -0700 Message-ID: <39EA4A07.8B3AFF8B@urx.com> Date: Sun, 15 Oct 2000 17:21:27 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Martin Gignac Cc: freebsd-questions@FreeBSD.ORG Subject: Re: /stand/sysinstall, packages, CDROM and 4.1.1 problem... References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Martin Gignac wrote: > > Hi, > > I installed FreeBSD 4.1 on a system and used to be able to install packages > from CD using /stand/sysinstall without any problems. > > But ever since I've upgraded sources and made world to 4.1.1-STABLE on Oct. > 12th, I get the foloowing error in /stand/sysinstall whenever I try to > install packages from the FreeBSD CD-ROMs: > > Error mounting /dev/acd0c on /dist: Input/output error (5) > > cd0: READ_BIG - ILLEGAL REQUEST asc=21 ascq=00 error=04 > > If I simply mount the CD to /cdrom and use pkg_add, I can install stuff no > problem. So this is not a critical problem by any means. I'm just curious as > to why this is happening. You probably cvsuped to 4.1.1 and didn't rebuild sysinstall. You have to cd /usr/src/release/sysinstall and do a make and make install before you can run /stand/sysinstall on 4.1.1 Kent > > My CD-ROM drive is just a plain Creative Labs 24X IDE unit. > > Any ideas? > > Thanks, > -Martin > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 17:39:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail1.sdc1.sfba.home.com (femail1.sdc1.sfba.home.com [24.0.95.81]) by hub.freebsd.org (Postfix) with ESMTP id 6D6F737B502 for ; Sun, 15 Oct 2000 17:39:28 -0700 (PDT) Received: from home.com ([24.177.36.45]) by femail1.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001016003914.SAQC5267.femail1.sdc1.sfba.home.com@home.com> for ; Sun, 15 Oct 2000 17:39:14 -0700 Message-ID: <39EA4EFF.A198B488@home.com> Date: Sun, 15 Oct 2000 17:42:39 -0700 From: loconet Organization: loconet X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Help with ipfilter Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was wundering why freebsd isnt updated to 3.4.11 since i allways update ipfilter to the lastest but having to reisntall ipfilter due to cvsup keeps on changeing it back to 3.4.8 so i was wundering will it be updated in 4.2 or sooner? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 17:41:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 6490937B66C for ; Sun, 15 Oct 2000 17:41:46 -0700 (PDT) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id e9G0fiD28201; Sun, 15 Oct 2000 19:41:44 -0500 (CDT) (envelope-from dan) Date: Sun, 15 Oct 2000 19:41:44 -0500 From: Dan Nelson To: chaz&diane goodsell Cc: questions@FreeBSD.ORG Subject: Re: Easy way to Adjust amount of RAM Message-ID: <20001015194144.A16850@dan.emsphone.com> References: <002901c035db$b52848c0$5c3dfdcc@0016453202> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: <002901c035db$b52848c0$5c3dfdcc@0016453202>; from "chaz&diane goodsell" on Sat Oct 14 08:38:50 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Oct 14), chaz&diane goodsell said: > I am trying to fumble through my first successful install of FreeBSD > 4.0. I am installing the OS on a Compaq 2500, with 5 "4.3 GiG HDD" > 320MG of RAM and dual processors. I'm not ready to tackle the SMP > yet. I am disappointed with the fact that BSD is only seeing 16MG of > RAM. Is there an easy way to adjust this setting? All the > documentation I have seen references MAXMEM. I was hoping there is a > control file that could be edited VS recompiling the Kernel. Thank > you in advance for your assistance. Compaqs have never reported their RAM correctly and always need to have the correct value hardcoded. Edit (or create) /boot/loader.conf, add the line set hw.physmem="320M" and reboot. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 17:57: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe41.law3.hotmail.com [209.185.240.209]) by hub.freebsd.org (Postfix) with ESMTP id B87C437B694 for ; Sun, 15 Oct 2000 17:57:00 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 15 Oct 2000 17:57:00 -0700 X-Originating-IP: [64.228.225.110] From: "Martin Gignac" To: Cc: References: <39EA4A07.8B3AFF8B@urx.com> Subject: Re: /stand/sysinstall, packages, CDROM and 4.1.1 problem... Date: Sun, 15 Oct 2000 20:56:54 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 16 Oct 2000 00:57:00.0492 (UTC) FILETIME=[FD94A8C0:01C0370B] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I guess you learn something new everyday. :) Of course, you were right. I rebuilt sysinstall as you suggested and everything is fine. I always assumed that 'make world' rebuilt everything save for configuration files. I consulted the handbook after your message and there it was: /stand is not rebuilt automatically. Thanks for the lesson! -Martin ----- Original Message ----- From: "Kent Stewart" To: "Martin Gignac" Cc: Sent: Sunday, October 15, 2000 20:21 Subject: Re: /stand/sysinstall, packages, CDROM and 4.1.1 problem... > > > Martin Gignac wrote: > > > > Hi, > > > > I installed FreeBSD 4.1 on a system and used to be able to install packages > > from CD using /stand/sysinstall without any problems. > > > > But ever since I've upgraded sources and made world to 4.1.1-STABLE on Oct. > > 12th, I get the foloowing error in /stand/sysinstall whenever I try to > > install packages from the FreeBSD CD-ROMs: > > > > Error mounting /dev/acd0c on /dist: Input/output error (5) > > > > cd0: READ_BIG - ILLEGAL REQUEST asc=21 ascq=00 error=04 > > > > If I simply mount the CD to /cdrom and use pkg_add, I can install stuff no > > problem. So this is not a critical problem by any means. I'm just curious as > > to why this is happening. > > You probably cvsuped to 4.1.1 and didn't rebuild sysinstall. You have > to > cd /usr/src/release/sysinstall and do a make and make install before > you can run /stand/sysinstall on 4.1.1 > > Kent > > > > > My CD-ROM drive is just a plain Creative Labs 24X IDE unit. > > > > Any ideas? > > > > Thanks, > > -Martin > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > Kent Stewart > Richland, WA > > mailto:kbstew99@hotmail.com > http://kstewart.urx.com/kstewart/index.html > FreeBSD News http://daily.daemonnews.org/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18: 3:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from outmail3.pacificnet.net (outmail3.pacificnet.net [207.171.0.14]) by hub.freebsd.org (Postfix) with ESMTP id C60D137B66C for ; Sun, 15 Oct 2000 18:03:42 -0700 (PDT) Received: from beelzebub.inside.killermartian.com (usr3-20.pacificnet.net [207.171.38.149]) by outmail3.pacificnet.net (8.9.3/8.9.3) with ESMTP id SAA03121; Sun, 15 Oct 2000 18:03:19 -0700 (PDT) Date: Sun, 15 Oct 2000 18:03:36 -0700 (PDT) From: Stephen Krauth X-Sender: stephenk@beelzebub.inside.killermartian.com To: Mike Meyer Cc: questions@freebsd.org Subject: Re: How do you stop printing? In-Reply-To: <14823.37268.814445.245046@guru.mired.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 13 Oct 2000, Mike Meyer wrote: > Stephen Krauth writes: > > I tried to cancel a huge print job, with extremely frustrating results. > > First mistake: I turned off that printer; that simply made it print single > > lines of garbage on each page. Then I tried 'lprm', which claimed to > > remove the job; I killed -9 lpd and the accompanying other process for > > apsfilter. I unplugged the printer, several times. The *ONLY* thing that > > would stop the madness was rebooting freebsd. > > > > What's the deal? Was some device buffer filled by the kernel and simply > > unclearable no matter what? How do you stop this? > > Removing the job with lprm just takes it out of the queue, it doesn't > do anything to the running daemon. For that, you use lpc. The lpc > command "lpc abort " will terminate the active job on the > that printer and disable the printer. You might want to do "lpc", and > then "abort ", so you can do things like "clean " > and "start " to get the printer works again. You may need to > do an lprm while the printer is down to remove the job from the queue. > > Be warned that aborting the print job doesn't stop the printer - it > just stops the daemon from sending data to it. On a modern printer > with lots of memory, you may want to power cycle and/or reset the > printer before starting it again. Excellent - that's exactly what I was looking for. Thanks! Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18:24:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from outmail3.pacificnet.net (outmail3.pacificnet.net [207.171.0.14]) by hub.freebsd.org (Postfix) with ESMTP id 6A98F37B503 for ; Sun, 15 Oct 2000 18:24:42 -0700 (PDT) Received: from beelzebub.inside.killermartian.com (usr3-20.pacificnet.net [207.171.38.149]) by outmail3.pacificnet.net (8.9.3/8.9.3) with ESMTP id SAA19718 for ; Sun, 15 Oct 2000 18:24:24 -0700 (PDT) Date: Sun, 15 Oct 2000 18:24:41 -0700 (PDT) From: Stephen Krauth X-Sender: stephenk@beelzebub.inside.killermartian.com To: freebsd-questions@freebsd.org Subject: SB Live under 4.1 (I know I know...) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So I've scoured the mail archives and it seems there's no definitive answer on getting the SoundBlaster Live! to work under 4.1. On my machine it has many pops and blips when running wavplay or other programs and eventually hangs the machine. So is there any new news? Or... is there another *PCI* sound card that definately works under FreeBSD? (I just bought the SBLive and will take it back if I know another card will work). Oh, and I'm not too jazzed about using a closed source package just to get sound working (like OSS)... Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18:25:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ideal.net.au (ion.ideal.net.au [203.20.241.5]) by hub.freebsd.org (Postfix) with ESMTP id 05B9A37B502 for ; Sun, 15 Oct 2000 18:25:18 -0700 (PDT) Received: from helium.ideal.net.au (helium.staff.ideal.net.au [202.3.35.2]) by mail.ideal.net.au (8.9.3/8.9.3) with ESMTP id MAA12657 for ; Mon, 16 Oct 2000 12:23:33 +1100 (EST) (envelope-from chris@ideal.net.au) Message-Id: <5.0.0.25.0.20001016120940.00aab410@mail.ideal.net.au> X-Sender: chris@mail.ideal.net.au X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 16 Oct 2000 12:20:02 +1000 To: FreeBSD-questions From: Chris Aitken Subject: Communications with the comm port In-Reply-To: <174395539766.20001012092933@russia.crosswinds.net> 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 Hi all, Just something ive been playing with but cant come up with an answer. What I need to do is communicate direct with a comm port in my FreeBSD box. I have a unit hanging off it and I need to be able to issue it various commands. I know I can use minicom while im in console mode, which works like a charm, however the problem I have it, I need to be able to do it via a php script from a website. Can anyone point me in the right direction as ive really come up against a brick wall on this one. Thanks Chris -- Chris Aitken - Webmaster/Database Designer - IDEAL Internet email: chris@ideal.net.au phone: +61 2 4628 8888 fax: +61 2 4628 8890 -------------------------------------------- Unix -- because a computer's a terrible thing to waste! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18:33:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id F1D7D37B66F for ; Sun, 15 Oct 2000 18:33:15 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id SAA05393; Sun, 15 Oct 2000 18:33:14 -0700 Message-ID: <39EA5ADA.3CA8FF13@urx.com> Date: Sun, 15 Oct 2000 18:33:14 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Martin Gignac Cc: freebsd-questions@FreeBSD.ORG Subject: Re: /stand/sysinstall, packages, CDROM and 4.1.1 problem... References: <39EA4A07.8B3AFF8B@urx.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Martin Gignac wrote: > > I guess you learn something new everyday. :) > > Of course, you were right. I rebuilt sysinstall as you suggested and > everything is fine. I always assumed that 'make world' rebuilt everything > save for configuration files. I consulted the handbook after your message > and there it was: /stand is not rebuilt automatically. I realized that I hadn't upgraded one of my machines so there were at least two of us building sysinstall :). Kent > > Thanks for the lesson! > -Martin > > ----- Original Message ----- > From: "Kent Stewart" > To: "Martin Gignac" > Cc: > Sent: Sunday, October 15, 2000 20:21 > Subject: Re: /stand/sysinstall, packages, CDROM and 4.1.1 problem... > > > > > > > Martin Gignac wrote: > > > > > > Hi, > > > > > > I installed FreeBSD 4.1 on a system and used to be able to install > packages > > > from CD using /stand/sysinstall without any problems. > > > > > > But ever since I've upgraded sources and made world to 4.1.1-STABLE on > Oct. > > > 12th, I get the foloowing error in /stand/sysinstall whenever I try to > > > install packages from the FreeBSD CD-ROMs: > > > > > > Error mounting /dev/acd0c on /dist: Input/output error (5) > > > > > > cd0: READ_BIG - ILLEGAL REQUEST asc=21 ascq=00 error=04 > > > > > > If I simply mount the CD to /cdrom and use pkg_add, I can install stuff > no > > > problem. So this is not a critical problem by any means. I'm just > curious as > > > to why this is happening. > > > > You probably cvsuped to 4.1.1 and didn't rebuild sysinstall. You have > > to > > cd /usr/src/release/sysinstall and do a make and make install before > > you can run /stand/sysinstall on 4.1.1 > > > > Kent > > > > > > > > My CD-ROM drive is just a plain Creative Labs 24X IDE unit. > > > > > > Any ideas? > > > > > > Thanks, > > > -Martin > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > > Kent Stewart > > Richland, WA > > > > mailto:kbstew99@hotmail.com > > http://kstewart.urx.com/kstewart/index.html > > FreeBSD News http://daily.daemonnews.org/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18:37:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web1901.mail.yahoo.com (web1901.mail.yahoo.com [128.11.23.50]) by hub.freebsd.org (Postfix) with SMTP id D41EA37B66C for ; Sun, 15 Oct 2000 18:37:37 -0700 (PDT) Received: (qmail 4320 invoked by uid 60001); 16 Oct 2000 01:37:37 -0000 Message-ID: <20001016013737.4319.qmail@web1901.mail.yahoo.com> Received: from [65.0.211.47] by web1901.mail.yahoo.com; Sun, 15 Oct 2000 18:37:37 PDT Date: Sun, 15 Oct 2000 18:37:37 -0700 (PDT) From: tbone Subject: Install Probs: /dev/card0 on a desktop? To: FreeBSD-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I'm having problems installing FreeBSD 4.0 on a 120MHz Pentium desktop (Packard Bell) using the FreeBSD Power Pack CD-ROM, and I no one could help me on comp.unix.bsd.freebsd.misc. I get this error in the vty1 console (Alt+F2) while trying to install: DEBUG: Can't open PC-card controller /dev/card0 I see this even after I disable a PC-card controller shown in UserConfig. I don't have a laptop, so I assume I don't have a PCMCIA bus controller, so I have no idea why card0 would be mentioned. A detailed description of my problem is attached below. If necessary, I can post an additional message with all messages in vty0 and vty1. Please help! -Ted tbonemp3@yahoo.com -- Detailed Description -- I'm trying to install FreeBSD on an old Packard Bell 120MHz PC with: * a Maxtor 52049H4 20GB HD, and * a Mitsumi CR-2801TE CD-ROM/CD-R drive I'm pretty sure these are compatible (the HD is EIDE, the CD drive is ATAPI compatible). I'm running into a confusing problem over and over again. Here's a detailed description of what happens: 1) I boot El Torito (via CD-ROM) to the first FreeBSD installation screen 2) I select the Visual Mode installation. 3) The next screen shows 8 Network-card related conficts. I disable the network devices to disolve the conflicts. 4) I disable the PC-card controller, since I don't have a PCMCIA slot on my desktop. 5) I save and move onto the sysinstall menu. 6) I select Standard installation 7) In the FDISK Partition Editor, I allocate my non-DOS disk space to FreeBSD. 8) I dedicate my disk usage as follows: 100MB for / 256MB for SWAP (rest) for /usr 9) I choose to install All distributions 10) I choose my CDROM as the media 11) The filesystem is created successfully 12) I choose to install All system sources, binaries, and X Windows 13) I instantly get this error on my screen: Installation completed with some errors. You may wish to scroll through the debugging messages on VTY1 with the scroll-lock feature. You can also choose "No" at the next prompt and go back into the installation menus to try and retry whichever operations have failed. I toggle the scroll-lock and page through the messages on both VTY0 and VTY1 and find only the: DEBUG: Can't open PC-card controller /dev/card0 error message. What should I be looking for? I try to boot to my hard drive, it says "no boot loader" and I end up at a dead "boot:" prompt. Does anyone have any idea what's going on here? Please help. :)- ===== tbonemp3@yahoo.com ICQ: 7631386 AIM: tbone22mp3 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 15 18:39:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corb.mc.mpls.visi.com (corb.mc.mpls.visi.com [208.42.156.1]) by hub.freebsd.org (Postfix) with ESMTP id E490B37B502 for ; Sun, 15 Oct 2000 18:39:21 -0700 (PDT) Received: from GAMERA (jfb.dsl.visi.com [209.98.143.40]) by corb.mc.mpls.visi.com (Postfix) with ESMTP id A8AE7810D; Sun, 15 Oct 2000 20:39:03 -0500 (CDT) To: Stephen Krauth Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SB Live under 4.1 (I know I know...) References: From: James Felix Black Date: 15 Oct 2000 20:37:39 -0500 In-Reply-To: Stephen Krauth's message of "Sun, 15 Oct 2000 18:24:41 -0700 (PDT)" Message-ID: Lines: 18 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > So I've scoured the mail archives and it seems there's no definitive > answer on getting the SoundBlaster Live! to work under 4.1. I have a Soundblaster Live! Platinum (the one with the Live Drive breakout box) and I've noticed significant quality problems with the audio under 4.1. It works, and hasn't yet hung my machine, but it's no fun to listen to. Is this a known problem? Under Windows 2k, the audio is perfect, or at least without the significant problems that the pcm driver exhibits. (jfb) -- My fellow Americans. As a young boy, I dreamed of being a baseball, but tonight I say, we must move forward, not backward, upward not forward, and always twirling, twirling, twirling towards freedom. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18:45:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id B320B37B66C for ; Sun, 15 Oct 2000 18:45:22 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id rxnraaaa for ; Mon, 16 Oct 2000 12:49:05 +1000 Message-ID: <39EA5DCD.B455737E@quake.com.au> Date: Mon, 16 Oct 2000 11:45:49 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Alfred Perlstein Cc: freebsd-questions@FreeBSD.ORG Subject: Re: X Hotline Client for FreeBSD References: <39E9D0AE.7D2941D8@quake.com.au> <20001015102505.F272@fw.wintelcom.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred Perlstein wrote: > > * Kal Torak [001015 08:43] wrote: > > Hi, > > I am wondering if anyone knows of a X Hotline client that will > > compile on FreeBSD... I havent been able to find one, there > > are plenty of linux clients but they all fail to compile, most > > need glibc... > > > > Fidelio or something named like that is the best linux client > > I had before I changed over the FreeBSD... > > Someone HAS to have ported a hotline client right? > > > > Thanks for any suggestions :) > > Can you give a URL as to where someone might find these apps? Ok, well www.freshmeat.net has a lot of links for the sites but the best one I found was fidelio which can be found at http://fidelio.sourceforge.net/ *** Kal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 18:47:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id D7FDA37B66C for ; Sun, 15 Oct 2000 18:47:27 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id sxnraaaa for ; Mon, 16 Oct 2000 12:51:10 +1000 Message-ID: <39EA5E4B.A76E988D@quake.com.au> Date: Mon, 16 Oct 2000 11:47:55 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: ahze@slaughter.necro.edu Cc: Alfred Perlstein , freebsd-questions@FreeBSD.ORG Subject: Re: X Hotline Client for FreeBSD References: <20001015172752.30A161078B@baddog.yi.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mike johnson wrote: > > http://fidelio.sourceforge.net/sources.php > > On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > Date: Sun, 15 Oct 2000 10:25:05 -0700 > > To: Kal Torak > > From: Alfred Perlstein > > Subject: Re: X Hotline Client for FreeBSD > > > > * Kal Torak [001015 08:43] wrote: > > > Hi, > > > I am wondering if anyone knows of a X Hotline client that will > > > compile on FreeBSD... I havent been able to find one, there > > > are plenty of linux clients but they all fail to compile, most > > > need glibc... > > > > > > Fidelio or something named like that is the best linux client > > > I had before I changed over the FreeBSD... > > > Someone HAS to have ported a hotline client right? > > > > > > Thanks for any suggestions :) > > > > Can you give a URL as to where someone might find these apps? There site claims Fidelio works on FreeBSD, but it dosent for me... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 19: 7:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from chmls05.mediaone.net (chmls05.mediaone.net [24.147.1.143]) by hub.freebsd.org (Postfix) with ESMTP id 4D3CE37B66C for ; Sun, 15 Oct 2000 19:07:34 -0700 (PDT) Received: from mailtag.com (h002078cea061.ne.mediaone.net [24.147.92.176]) by chmls05.mediaone.net (8.8.7/8.8.7) with ESMTP id WAA21773 for ; Sun, 15 Oct 2000 22:07:32 -0400 (EDT) Message-ID: <39EA62C8.5091939F@mailtag.com> Date: Sun, 15 Oct 2000 22:07:05 -0400 From: Len Huppe Reply-To: huppe@mailtag.com Organization: HTS X-Mailer: Mozilla 4.74 (Macintosh; U; PPC) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: very important networking question Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi All, I would like to ask a question about TCP/IP networking on FreeBSD. I need to know for sure if a FreeBSD system with the following setup would send out RIP and ARP packets onto the Wan via xl0: kernel config: options inet options IPDIVERT options IPFIREWALL options IPFIREWALL_DEFAULT_TO_ACCEPT device fxp # Intel Etherexpress device miibus # mii bus for the 3Com device xl # #com 3C905 pseudo-device ether pseudo-device loop pseudo-device bpf /etc/rc.conf network_intercfaces="xl0 lo0" ifconfig_xl0="DHCP" ifcongif_fxp0="inet 192.168.1.1 netmask 255.255.255.0" natd_enable="YES" natd_interface="xl0" firewall_enable="YES" firewall_type="OPEN" gateway_enable="YES" The firewall rules were set to open because I did not yet know how to set them up. To the best of my knowledge, this syetm was not configured to be a border gateway. Why then is Mediaone claiming that is was sending out RIP and ARP packets onto their network? My landloard made me take the system down as a proxy abnd replace it with one of those little firewall boxes. He owns the cable modem. any comments? Len Huppe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 19:32:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bsd1.alaptech.com (cable-225-4-237-24.anchorageak.net [24.237.4.225]) by hub.freebsd.org (Postfix) with ESMTP id 78FFD37B503 for ; Sun, 15 Oct 2000 19:32:54 -0700 (PDT) Received: (from kirk@localhost) by bsd1.alaptech.com (8.11.0/8.9.3) id e9G2WD109604 for freebsd-questions@freebsd.org; Sun, 15 Oct 2000 18:32:13 -0800 (AKDT) (envelope-from kirk) Date: Sun, 15 Oct 2000 18:32:12 -0800 From: Kirk Brogdon To: freebsd-questions@freebsd.org Subject: MX loop error after sendmail upgrade Message-ID: <20001015183212.F9383@bsd1.alaptech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i DisOrganization: ALAP Technology - Chugiak, AK USA Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I did a fresh cvsup, buildworld, mergemaster - the usual - and when I try run sendmail with the new sendmail.cf, I get the following error when I send myself an email: (reason: system config error) ----- Transcript of session follows ----- 553 5.3.5 alaptech.com. config error: mail loops back to me (MX problem?) 554 5.3.5 kirk@alaptech.com... Local configuration error I've read the /usr/src/UPDATING regarding the sendmail aliases issues and have created the link, removed and rebuilt the aliases.db with newaliases (although my aliases were already in /etc/mail before I did the mergmaster so I don't think this is an issue). I added my domain to the DM line in the new sendmail.cf and have also created an /etc/mail/local-hosts-names file by copying my sendmail.cw file since it appears that has changed in the new version. If I copy back the old sendmail.cf everything seems to work other than a terse little message saying that my sendmail.cf file is out of date. Does anyone know specifically what is wrong? I have the great big book of Sendmail but it kind of hurts my brain. The old sendmail.cf is version 8.9.3 and the new one is 8.11 Thanks - Kirk -- ALAP Technology PO Box 672298 Chugiak, AK - USA 99567 (907) 688 8843 www.alaptech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 20:20:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from akira.lanfear.com (akira.lanfear.com [208.12.11.174]) by hub.freebsd.org (Postfix) with ESMTP id 3072837B66C for ; Sun, 15 Oct 2000 20:20:26 -0700 (PDT) Received: from jishin (dyn-dial3-226-sea.bazillion.com [64.92.50.226]) by akira.lanfear.com (8.9.3/8.9.3) with SMTP id UAA19011 for ; Sun, 15 Oct 2000 20:20:19 -0700 (PDT) (envelope-from marcw@lanfear.com) Message-ID: <000701c036d4$d6578340$0800000a@lanfear.com> From: "Marc Wandschneider" To: Subject: AWK trivia Date: Sun, 15 Oct 2000 20:22:07 +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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG blaugh! so, i have a file in the following format: SOME_SINGLE_WORD STRING "A quoted String" Where the two things are separated by any amount of whitespace, not including \n. I would like to set up AWK so that I end up having: $1 = SOME_SINGLE_WORD_STRING $2 = "A Quoted STring" for each line/record [with or without the quotes]. this actually appears to be non-trivial. any suggestions? i've zipped through the two texts i have on it, without much luck. thanks! marc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 20:40:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id 8221E37B503 for ; Sun, 15 Oct 2000 20:40:51 -0700 (PDT) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id UAA14136; Sun, 15 Oct 2000 20:40:33 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Sun, 15 Oct 2000 20:40:33 -0700 (PDT) Organization: Polstra & Co., Inc. From: John Polstra To: "Brandon D. Valentine" Subject: Re: cvsup problems (fwd) Cc: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brandon D. Valentine wrote: > reef# cat "checkouts.cvs:." > F 5 971393531 > reef# cat "checkouts.cvs:RELENG_4" > F 5 971394100 That's the whole thing?? The only explanation I can think of is that you might have a refuse file which is preventing everything from being updated. Try this: base= find $base/sup -name 'refuse*' and see if it finds anything. John --- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 20:46:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.canadiangeneral.com (canadiangeneral.com [209.135.123.202]) by hub.freebsd.org (Postfix) with ESMTP id 82ED837B66E for ; Sun, 15 Oct 2000 20:46:22 -0700 (PDT) Received: from canadiangeneral.com [64.39.175.14] by mail.canadiangeneral.com with ESMTP (SMTPD32-5.05) id AB4A95C0282; Sun, 15 Oct 2000 23:51:38 -0400 Message-ID: <39EA7A58.281B861B@canadiangeneral.com> Date: Sun, 15 Oct 2000 23:47:36 -0400 From: Alex Toushek X-Mailer: Mozilla 4.75 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Help with shoutcast server Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed shoutcast server and configured it, but when I goto run it I get "/usr/libexec/ld-elf.so.1: ./sc_serv: Shared object has no run-time symbol table" Where can I find the updated file? I tried to update my libs but it cannot find this file? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 20:51:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from akira.lanfear.com (akira.lanfear.com [208.12.11.174]) by hub.freebsd.org (Postfix) with ESMTP id C2EE137B66D for ; Sun, 15 Oct 2000 20:51:21 -0700 (PDT) Received: from jishin (dyn-dial3-226-sea.bazillion.com [64.92.50.226]) by akira.lanfear.com (8.9.3/8.9.3) with SMTP id UAA19056; Sun, 15 Oct 2000 20:51:15 -0700 (PDT) (envelope-from marcw@lanfear.com) Message-ID: <000b01c036d9$29e74780$0800000a@lanfear.com> From: "Marc Wandschneider" To: "Jim Conner" Cc: References: <5.0.0.25.0.20001015234305.0289a368@mail.enterit.com> Subject: Re: AWK trivia Date: Sun, 15 Oct 2000 20:53:05 +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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hmm ... i was a bit afraid that sed would be the better way of doing that -- i'm using AWK because i want to be able to process each line of input and take STRING "QUoted String" and produce { { STRING }, "Quoted String }, on stdout as output. and then have it do something at the beginning and end (which would probably just work with cat, i suppose :-) thanks! marc. ----- Original Message ----- From: "Jim Conner" To: "Marc Wandschneider" Cc: Sent: Monday, October 16, 2000 5:44 AM Subject: Re: AWK trivia > Use SED > > sed -e "s/$LINE1/$LINE2/g" file > You may have to do some tweaking...but probably not much (with regards to > the double-quotes) > > - Jim > > At 08:22 PM 10/15/2000 +0200, Marc Wandschneider wrote: > > > >blaugh! > > > > so, i have a file in the following format: > > > > SOME_SINGLE_WORD STRING "A quoted String" > > > > Where the two things are separated by any amount of whitespace, not > >including \n. > > > > I would like to set up AWK so that I end up having: > > > > $1 = SOME_SINGLE_WORD_STRING > > $2 = "A Quoted STring" > > > > for each line/record [with or without the quotes]. > > > > this actually appears to be non-trivial. > > > > any suggestions? i've zipped through the two texts i have on it, > >without much luck. > > > > thanks! > > > > marc. > > > > > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of the message > > > - Jim > - NOTJames > - jconner@enterit.com > > - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > - | Today's errors, in contrast: | > - | Windows - "Invalid page fault in module kernel32.dll at 0032:A16F2935" | > - | UNIX - "segmentation fault - core dumped" | > - | Humans - "OOPS, I've fallen and I can't get up" | > - ------------------------------------------------------------------------ -- > - (To view this properly use a non-proportional font in your MUA) > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 20:53:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id 6EC9037B503 for ; Sun, 15 Oct 2000 20:53:16 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9G3r4p67266; Mon, 16 Oct 2000 06:53:04 +0300 (EEST) Date: Mon, 16 Oct 2000 06:53:04 +0300 From: Giorgos Keramidas To: Marc Wandschneider Cc: freebsd-questions@FreeBSD.ORG Subject: Re: AWK trivia Message-ID: <20001016065304.A66023@gray.westgate.gr> References: <000701c036d4$d6578340$0800000a@lanfear.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000701c036d4$d6578340$0800000a@lanfear.com>; from marcw@lanfear.com on Sun, Oct 15, 2000 at 08:22:07PM +0200 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Oct 15, 2000 at 08:22:07PM +0200, Marc Wandschneider wrote: > > so, i have a file in the following format: > > SOME_SINGLE_WORD STRING "A quoted String" > > Where the two things are separated by any amount of whitespace, not > including \n. I would try something like: % sed -e 's/[ ^I]*/:/' to make the first part of the line (the one including SOME_SINGLE_WORD_STRING, in your example) be separated from the rest of the line by a single ':' character. Then it should be fairly easy to have AWK print what you want. % cat format.awk { printf "$1 = %s\n", $1; printf "$2 = "; for (i = 2; i < NF; i++) { printf "%s%s", $i, FS; } printf "%s\n", $NF; } and fire up awk with something like: % sed -e 's/[ ^I]*/:/' | awk -f format.awk -F: Ciao, Giorgos. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 21: 0:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id E110837B66C for ; Sun, 15 Oct 2000 20:59:29 -0700 (PDT) Received: from freebsd.mindspring.com (user-33qtcjh.dialup.mindspring.com [199.174.178.113]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id XAA16369 for ; Sun, 15 Oct 2000 23:59:10 -0400 (EDT) Received: (from david@localhost) by freebsd.mindspring.com (8.11.1/8.11.1) id e9G3x8Z03040 for freebsd-questions@freebsd.org; Sun, 15 Oct 2000 22:59:08 -0500 (CDT) (envelope-from david) Date: Sun, 15 Oct 2000 22:59:07 -0500 From: David Kanter To: FreeBSD questions Subject: FTP is stalling Message-ID: <20001015225907.A3029@freebsd.mindspring.com> Mail-Followup-To: FreeBSD questions Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.1.1-STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to download the teTeX files but the download continually stalls on the teTeX-texmf tarball at about 80 percent to 85 percent complete. This happens no matter what ftp site I got to. I'm using the generic ftp. Any ideas? -- David Kanter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 21:35:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ruby.he.net (ruby.he.net [216.218.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 0F4A537B66D for ; Sun, 15 Oct 2000 21:35:19 -0700 (PDT) Received: from corten5.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by ruby.he.net (8.8.6/8.8.2) with ESMTP id VAA04888; Sun, 15 Oct 2000 21:35:13 -0700 Date: Sun, 15 Oct 2000 21:32:50 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten5 To: Otter Cc: "Mullen, Adam" , freebsd-questions@FreeBSD.ORG Subject: RE: Netgear FA312 10/100 Ethernet Nic 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 At Sun, 15 Oct 2000 it looks like Otter composed: O-->Adam, O-->Under 4.1.1, the FA310 works like a champ using the dc driver. After O-->picking up a NetGear 311 yesterday, I see that it doesn't work with dc O-->or any other driver in the 4.1 GENERIC kernel I was attempting to O-->install it on. Once I pull the 310 and compare chipsets, I'll let you O-->know the difference. For what it's worth, I get the same result you do O-->on my 311-- no recognition. O-->-Otter I got stuck with one on a "buy hub, get card free" deal at Staples and failed to notice it was not a 310. Here is the recent source code which may or may not help you. http://www.scyld.com/network/ethercard.html -- Bill Schoolcraft http://wiliweld.com PO Box 210076 San Francisco, CA 94121 " saevis tranquillus in undis " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 21:38:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 7520B37B502 for ; Sun, 15 Oct 2000 21:38:29 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9G4cRA20493; Sun, 15 Oct 2000 21:38:27 -0700 (PDT) Date: Sun, 15 Oct 2000 21:38:27 -0700 From: Alfred Perlstein To: Kenneth Wayne Culver Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kde2 Message-ID: <20001015213827.L272@fw.wintelcom.net> References: <20001015102221.E272@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from culverk@wam.umd.edu on Sun, Oct 15, 2000 at 07:30:36PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > > * Kenneth Wayne Culver [001015 06:08] wrote: > > > I compiled KDE2rc2 recently, and I have some problems with it. Mainly > > > certain things like trying to make the logout window pop up and trying to > > > type a URL into Konquerer don't work. These same problems occur when I > > > tried to make it work in linux. Anyway, has anyone gotten KDE2 to work > > > without any problems on FreeBSD or Linux? > > > > If the problem is on both FreeBSD and Linux then these questions > > and bug reports really belong on the KDE mailing lists. > > > > It would be a lot better if you reported the problems to them > > directly especially since they plan on making a release really > > soon. * Kenneth Wayne Culver [001015 16:30] wrote: > Well, it turns out the problems aren't with linux... I just tried... it's > only FreeBSD. The KDE developers have told me that they are pretty determined to provide a usable system for FreeBSD, you'd probably still have more luck with them, especially if you're able to provide more detailed bug reports. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 21:40:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 7150B37B66F for ; Sun, 15 Oct 2000 21:40:17 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9G4e8920552; Sun, 15 Oct 2000 21:40:08 -0700 (PDT) Date: Sun, 15 Oct 2000 21:40:08 -0700 From: Alfred Perlstein To: Kal Torak Cc: ahze@baddog.yi.org, freebsd-questions@FreeBSD.ORG Subject: Re: X Hotline Client for FreeBSD Message-ID: <20001015214007.M272@fw.wintelcom.net> References: <20001015172752.30A161078B@baddog.yi.org> <39EA5E4B.A76E988D@quake.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39EA5E4B.A76E988D@quake.com.au>; from kaltorak@quake.com.au on Mon, Oct 16, 2000 at 11:47:55AM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Kal Torak [001015 18:47] wrote: > mike johnson wrote: > > > > http://fidelio.sourceforge.net/sources.php > > > > On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > > Date: Sun, 15 Oct 2000 10:25:05 -0700 > > > To: Kal Torak > > > From: Alfred Perlstein > > > Subject: Re: X Hotline Client for FreeBSD > > > > > > * Kal Torak [001015 08:43] wrote: > > > > Hi, > > > > I am wondering if anyone knows of a X Hotline client that will > > > > compile on FreeBSD... I havent been able to find one, there > > > > are plenty of linux clients but they all fail to compile, most > > > > need glibc... > > > > > > > > Fidelio or something named like that is the best linux client > > > > I had before I changed over the FreeBSD... > > > > Someone HAS to have ported a hotline client right? > > > > > > > > Thanks for any suggestions :) > > > > > > Can you give a URL as to where someone might find these apps? > > There site claims Fidelio works on FreeBSD, but it dosent > for me... It doesn't seem to know how to use our -pthread flag for gcc to compile itself. Empty promises... Perhaps people interested can tell the authors about the problems they are having and that if they have any questions, this list would be a good place to ask for tips on making it compile and run on FreeBSD. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 22: 1:12 2000 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 5E99D37B503 for ; Sun, 15 Oct 2000 22:01:10 -0700 (PDT) Received: from rac1.wam.umd.edu (IDENT:root@rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id BAA00695; Mon, 16 Oct 2000 01:01:07 -0400 (EDT) Received: from rac1.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id BAA14876; Mon, 16 Oct 2000 01:01:07 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id BAA14872; Mon, 16 Oct 2000 01:01:07 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Mon, 16 Oct 2000 01:01:06 -0400 (EDT) From: Kenneth Wayne Culver To: Alfred Perlstein Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kde2 In-Reply-To: <20001015213827.L272@fw.wintelcom.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 Oh, ok, well, I just thought maybe I compiled something wrong, I guess not, I was sending to the FreeBSd list mainly to see if anyone else had seen the same problems. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > > > > * Kenneth Wayne Culver [001015 06:08] wrote: > > > > I compiled KDE2rc2 recently, and I have some problems with it. Mainly > > > > certain things like trying to make the logout window pop up and trying to > > > > type a URL into Konquerer don't work. These same problems occur when I > > > > tried to make it work in linux. Anyway, has anyone gotten KDE2 to work > > > > without any problems on FreeBSD or Linux? > > > > > > If the problem is on both FreeBSD and Linux then these questions > > > and bug reports really belong on the KDE mailing lists. > > > > > > It would be a lot better if you reported the problems to them > > > directly especially since they plan on making a release really > > > soon. > > * Kenneth Wayne Culver [001015 16:30] wrote: > > Well, it turns out the problems aren't with linux... I just tried... it's > > only FreeBSD. > > The KDE developers have told me that they are pretty determined > to provide a usable system for FreeBSD, you'd probably still have > more luck with them, especially if you're able to provide more > detailed bug reports. > > -Alfred > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 22: 8:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.42.130.87]) by hub.freebsd.org (Postfix) with ESMTP id 844B337B66E for ; Sun, 15 Oct 2000 22:08:13 -0700 (PDT) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.9.3/8.9.3) with SMTP id BAA00712; Mon, 16 Oct 2000 01:07:22 GMT (envelope-from matt@gsicomp.on.ca) Message-ID: <002c01c0372f$10088bc0$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: "Alfred Perlstein" , "Kal Torak" Cc: , References: <20001015172752.30A161078B@baddog.yi.org> <39EA5E4B.A76E988D@quake.com.au> <20001015214007.M272@fw.wintelcom.net> Subject: Re: X Hotline Client for FreeBSD Date: Mon, 16 Oct 2000 01:08:02 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > * Kal Torak [001015 18:47] wrote: > > mike johnson wrote: > > > > > > http://fidelio.sourceforge.net/sources.php > > > > > > On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > > > Date: Sun, 15 Oct 2000 10:25:05 -0700 > > > > To: Kal Torak > > > > From: Alfred Perlstein > > > > Subject: Re: X Hotline Client for FreeBSD > > > > > > > > * Kal Torak [001015 08:43] wrote: > > > > > Hi, > > > > > I am wondering if anyone knows of a X Hotline client that will > > > > > compile on FreeBSD... I havent been able to find one, there > > > > > are plenty of linux clients but they all fail to compile, most > > > > > need glibc... > > > > > > > > > > Fidelio or something named like that is the best linux client > > > > > I had before I changed over the FreeBSD... > > > > > Someone HAS to have ported a hotline client right? > > > > > > > > > > Thanks for any suggestions :) > > > > > > > > Can you give a URL as to where someone might find these apps? > > > > There site claims Fidelio works on FreeBSD, but it dosent > > for me... > > It doesn't seem to know how to use our -pthread flag for gcc to > compile itself. Empty promises... Perhaps people interested can > tell the authors about the problems they are having and that if > they have any questions, this list would be a good place to ask > for tips on making it compile and run on FreeBSD. I took a look at it ealier today but gave up since my dual P166 build system didn't like gnome. As for the pthread issue, a simple patch to the configure script will enable the -pthread flag. (See astro/seti_applet/Makefile for an example) -- Matthew Emmerton GSI Computer Services +1 (800) 217 5409 (Canada) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 22:24:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail9.bigmailbox.com (mail9.bigmailbox.com [209.132.220.40]) by hub.freebsd.org (Postfix) with ESMTP id 5636D37B66C for ; Sun, 15 Oct 2000 22:24:46 -0700 (PDT) Received: œby mail9.bigmailbox.com (8.8.7/8.8.7) id WAA09521; Sun, 15 Oct 2000 22:30:42 -0700 Date: Sun, 15 Oct 2000 22:30:42 -0700 Message-Id: <200010160530.WAA09521@mail9.bigmailbox.com> Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary X-Mailer: MIME-tools 4.104 (Entity 4.116) Mime-Version: 1.0 X-Originating-Ip: [203.96.152.184] From: "Richard Shea" To: freebsd-questions@FreeBSD.ORG Subject: rc.firewall vs hosts.allow ? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi - I have a FreeBSD machine which acts as a firewall and to which I now want to allow a limited amount of ftp access. The firewall rules at the moment stop any incoming FTP. In the future I want users from a small set of known domains to be able to get on and leave files. BTW FWIW this would not be anonymous ftp. I thought about adding rules to rc.firewall to specifically allow incoming ftp from those domains but then I thought about letting through all incoming ftp and using hosts.allow to deny access to all but the 'good' domains. Is this just a question of taste or are there some issues here I haven't noticed ? Is there a 'right' way - maybe totally different from those I've mentioned. In some ways I like the idea of keeping the firewall rules simple albeit (in this case) considerably relaxed. Any thoughts would be welcomed. regard richard shea. ------------------------------------------------------------ --== Sent via Deja.com http://www.deja.com/ ==-- Before you buy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 22:47:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail12.intelnet.net.gt (mail12.intelnet.net.gt [216.230.128.18]) by hub.freebsd.org (Postfix) with ESMTP id 4A50537B66F for ; Sun, 15 Oct 2000 22:47:16 -0700 (PDT) Received: from genopre (UD182-134.intelnet.net.gt [216.230.134.182] (may be forged)) by mail12.intelnet.net.gt (Pro-8.9.3/8.9.3) with SMTP id XAA19480 for ; Sun, 15 Oct 2000 23:44:52 +0600 (GMT) Message-ID: <001101c0372c$3f11e540$b686e6d8@genopre.net.gt> From: "Inskip Thomas C." To: Subject: subscribe Date: Sun, 15 Oct 2000 23:45:47 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0006_01C03702.0B003880" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C03702.0B003880 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable subscribe FreeBSD-questions ------=_NextPart_000_0006_01C03702.0B003880 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
subscribe=20 FreeBSD-questions
------=_NextPart_000_0006_01C03702.0B003880-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 23:49:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id 2D5F137B673 for ; Sun, 15 Oct 2000 23:49:35 -0700 (PDT) Received: (qmail 16001 invoked by uid 0); 16 Oct 2000 06:49:33 -0000 Received: from p3e9d06b8.dip0.t-ipconnect.de (HELO gmx.net) (62.157.6.184) by mail.gmx.net with SMTP; 16 Oct 2000 06:49:33 -0000 Message-ID: <39EAA4E9.B5F3B2FB@gmx.net> Date: Mon, 16 Oct 2000 08:49:13 +0200 From: Klaus Haeberlein X-Mailer: Mozilla 4.7 [de]C-NSCPCD (Win95; I) X-Accept-Language: de MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: isdn card setup Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi to all luckely I could install FreeBSD and get it to run. The ethernet card is not a problem anymore. But I can not set up a dial out configuration with an internal ISDN card (AVM Fritz! Classic). Does anybody know how to do this, because I could not find any hint or instructions in the handbook or mailing lists. klaus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 15 23:56:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc2.bc.home.com (mail2.rdc2.bc.home.com [24.2.10.85]) by hub.freebsd.org (Postfix) with ESMTP id 4806F37B670 for ; Sun, 15 Oct 2000 23:56:37 -0700 (PDT) Received: from godlike ([24.69.237.141]) by mail2.rdc2.bc.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001016065636.WIZG8768.mail2.rdc2.bc.home.com@godlike> for ; Sun, 15 Oct 2000 23:56:36 -0700 Message-ID: <001601c03807$7a96bec0$8ded4518@kldt1.bc.wave.home.com> From: "Mike Batchelor" To: Subject: ALT Key Date: Mon, 16 Oct 2000 23:57:13 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0013_01C037CC.CDF4C340" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0013_01C037CC.CDF4C340 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi there, I have a problem with getting my ALT keys working in a freshly installed = 4.1.1-RELEASE version of FreeBSD. My alt-keys work fine in Windows so I = don't think it's a problem with the keyboard... I also tried another = keyboard with the same results. In Freebsd the keyboard mapping has been set to the US ISO keymap. Pressing ALT-1 for example, it is as if I was not even holding the ALT = key down... just pressing the 1 key. I noticed this mainly in BitchX = where I could not switch windows.. yet could from a different computer = via telnet. Could you please help me out if you have any info? Thanks a lot! ------=_NextPart_000_0013_01C037CC.CDF4C340 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi there,
 
I have a problem with getting my ALT = keys working=20 in a freshly installed 4.1.1-RELEASE version of FreeBSD.  My = alt-keys work=20 fine in Windows so I don't think it's a problem with the keyboard... = I also=20 tried another keyboard with the same results.
 
In Freebsd the = keyboard mapping has been=20 set to the US ISO keymap.
 
Pressing ALT-1 for example, it is = as if I was=20 not even holding the ALT key down... just pressing the 1 = key.  I=20 noticed this mainly in BitchX where I could not switch windows.. = yet could=20 from a different computer via telnet.
 
Could you please help me out if you = have any=20 info?
 
Thanks a = lot!
------=_NextPart_000_0013_01C037CC.CDF4C340-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 0: 1: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail2.sdc1.sfba.home.com (femail2.sdc1.sfba.home.com [24.0.95.82]) by hub.freebsd.org (Postfix) with ESMTP id 97D9937B66E for ; Mon, 16 Oct 2000 00:01:05 -0700 (PDT) Received: from c1155979a ([24.23.102.251]) by femail2.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001013023523.KYLL26920.femail2.sdc1.sfba.home.com@c1155979a> for ; Thu, 12 Oct 2000 19:35:23 -0700 From: "Preben B. Hansen" To: Subject: I my video card supported Date: Thu, 12 Oct 2000 22:37:34 -0500 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0003_01C0349D.039FFBA0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MS-TNEF-Correlator: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C0349D.039FFBA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I do not know what to choose when I set up the graphical Xfree86 interface. I have a "Hercules 3D Prophet II GTS 64MB" Best regards, Preben Hansen ------=_NextPart_000_0003_01C0349D.039FFBA0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" eJ8+IiIDAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEGgAMADgAAANAHCgAMABYAJQAAAAQALAEB A5AGAEwFAAAlAAAACwACAAEAAAALACMAAAAAAAMAJgAAAAAACwApAAAAAAADADYAAAAAAB4AcAAB AAAAGwAAAEkgbXkgdmlkZW8gY2FyZCBzdXBwb3J0ZWQgAAACAXEAAQAAABYAAAABwDTG7EOIG6tk oIsR1IEMANC3FtvMAAACAR0MAQAAABQAAABTTVRQOlBKQkgxQEhPTUUuQ09NAAsAAQ4AAAAAQAAG DgAWGNjGNMABAgEKDgEAAAAYAAAAAAAAAGuAq10GntQRgQwA0LcW28zCgAAACwAfDgEAAAACAQkQ AQAAAP0AAAD5AAAAIAEAAExaRnUDTvNyAwAKAHJjcGcxMjUWMgD4C2BuDhAwMzNPAfcCpAPjAgBj aArAc7BldDAgBxMCgH0KgZJ2CJB3awuAZDQMYA5jAFALAwu1IEkgZNBvIG5vBUBrFCAH4DZ3EPAF QHQUABDgb28fESAUoQnwE8ERISB1cIsU8BWwIAnAYXBoDeAZB0AgWANQCeA4NiCVC4B0BJBmANBl LgqiFwqAE9AQ8HYVgGEgIiJIBJBjdWwHkTNEXCBQA2AW8BYhSRPQR4JUBfA2NE1CIgrjuwqECoBC B5AFQAlwZwsRTHMsGIQaQGViFcFILwBxCfAYhBHhAB7wAAAACwABgAggBgAAAAAAwAAAAAAAAEYA AAAAA4UAAAAAAAADAAOACCAGAAAAAADAAAAAAAAARgAAAAAQhQAAAAAAAAMAB4AIIAYAAAAAAMAA AAAAAABGAAAAAFKFAAAnagEAHgAJgAggBgAAAAAAwAAAAAAAAEYAAAAAVIUAAAEAAAAEAAAAOS4w AB4ACoAIIAYAAAAAAMAAAAAAAABGAAAAADaFAAABAAAAAQAAAAAAAAAeAAuACCAGAAAAAADAAAAA AAAARgAAAAA3hQAAAQAAAAEAAAAAAAAAHgAMgAggBgAAAAAAwAAAAAAAAEYAAAAAOIUAAAEAAAAB AAAAAAAAAAsADYAIIAYAAAAAAMAAAAAAAABGAAAAAIKFAAABAAAACwA6gAggBgAAAAAAwAAAAAAA AEYAAAAADoUAAAAAAAADADyACCAGAAAAAADAAAAAAAAARgAAAAARhQAAAAAAAAMAPYAIIAYAAAAA AMAAAAAAAABGAAAAABiFAAAAAAAACwBcgAggBgAAAAAAwAAAAAAAAEYAAAAABoUAAAAAAAADAF2A CCAGAAAAAADAAAAAAAAARgAAAAABhQAAAAAAAAIB+A8BAAAAEAAAAGuAq10GntQRgQwA0LcW28wC AfoPAQAAABAAAABrgKtdBp7UEYEMANC3FtvMAgH7DwEAAACCAAAAAAAAADihuxAF5RAaobsIACsq VsIAAFBTVFBSWC5ETEwAAAAAAAAAAE5JVEH5v7gBAKoAN9luAAAAQzpcV0lORE9XU1xMb2NhbCBT ZXR0aW5nc1xBcHBsaWNhdGlvbiBEYXRhXE1pY3Jvc29mdFxPdXRsb29rXG91dGxvb2sucHN0AAAA AwD+DwUAAAADAA00/TcAAAIBfwABAAAALgAAADxORUJCSUJBTUdMRkFCTUVMTk5GQ0NFQUZDQUFB LnBqYmgxQGhvbWUuY29tPgAAAAMABhDuwcWZAwAHEHYAAAADABAQAAAAAAMAERAAAAAAHgAIEAEA AABlAAAASURPTk9US05PV1dIQVRUT0NIT09TRVdIRU5JU0VUVVBUSEVHUkFQSElDQUxYRlJFRTg2 SU5URVJGQUNFSUhBVkVBIkhFUkNVTEVTM0RQUk9QSEVUSUlHVFM2NE1CIkJFU1RSRQAAAADlBQ== ------=_NextPart_000_0003_01C0349D.039FFBA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 0: 2:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 3241B37B66D for ; Mon, 16 Oct 2000 00:02:14 -0700 (PDT) Received: from hyperion.informatik.rwth-aachen.de (hyperion.Informatik.RWTH-Aachen.DE [137.226.112.212]) by nets5.rz.rwth-aachen.de (8.10.1/8.10.1/7) with ESMTP id e9G72Bm11145; Mon, 16 Oct 2000 09:02:11 +0200 (MET DST) Received: from agamemnon.informatik.rwth-aachen.de (agamemnon.Informatik.RWTH-Aachen.DE [137.226.194.74]) by hyperion.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1/2) with ESMTP id JAA25068; Mon, 16 Oct 2000 09:01:27 +0200 (MET DST) Received: (from stolz@localhost) by agamemnon.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1-gb-2) id JAA08500; Mon, 16 Oct 2000 09:02:09 +0200 (MET DST) Date: Mon, 16 Oct 2000 09:02:09 +0200 From: Volker Stolz To: Klaus Haeberlein Cc: freebsd-questions@FreeBSD.ORG Subject: Re: isdn card setup Message-ID: <20001016090209.B8462@agamemnon.informatik.rwth-aachen.de> References: <39EAA4E9.B5F3B2FB@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39EAA4E9.B5F3B2FB@gmx.net>; from KHaeberlein@gmx.net on Mon, Oct 16, 2000 at 08:49:13AM +0200 Organization: Chair for CS II, Anomalous Programming Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Oct 16, 2000 at 08:49:13AM +0200, Klaus Haeberlein wrote: > luckely I could install FreeBSD and get it to run. The ethernet card is > not a problem anymore. But I can not set up a dial out configuration > with an internal ISDN card (AVM Fritz! Classic). Recompile your kernel with the required options from LINT and do a "man isdnd" for further configuration. -- Volker Stolz * stolz@i2.informatik.rwth-aachen.de * PGP + S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 0: 4:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id C071437B503 for ; Mon, 16 Oct 2000 00:04:53 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13l4JD-0000CP-00 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 10:03:43 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13l4LL-000JU7-00 for freebsd-questions@FreeBSD.org; Mon, 16 Oct 2000 10:05:55 +0300 Date: Mon, 16 Oct 2000 10:05:55 +0300 From: Odhiambo Washington To: freebsd-questions@FreeBSD.org Subject: Re: HELP!!! Message-ID: <20001016100555.C74309@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-questions@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Chris Prance" on Sun, Oct 15, 2000 at 06:24:47PM -0400 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 10:05AM up 7 days, 12:53, 2 users, load averages: 0.01, 0.02, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Chris Prance [20001016 01:15]: =>To whomever it may concern, => =>I NEED HELP, ahah, I knew that already. Sorry to the point. I'm having =>problems upgrading from 3.4 stable to 4.0 stable. I have included my =>configu file and the error message I recieved upon running 'make buildkernel =>KERNEL=MYKERNEL' any answers or suggestions whould be greatly appreciated. => =>Thanks, =>Chris Prance Did you do a make buildworld before starting kernel building? -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. The brain is a wonderful organ; it starts working the moment you get up in the morning and does not stop until you get into the office. -Robert Frost To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 0: 7:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web6305.mail.yahoo.com (web6305.mail.yahoo.com [128.11.22.142]) by hub.freebsd.org (Postfix) with SMTP id 61D2137B502 for ; Mon, 16 Oct 2000 00:07:41 -0700 (PDT) Message-ID: <20001016070741.24118.qmail@web6305.mail.yahoo.com> Received: from [64.161.130.86] by web6305.mail.yahoo.com; Mon, 16 Oct 2000 00:07:41 PDT Date: Mon, 16 Oct 2000 00:07:41 -0700 (PDT) From: Christian Lacunza Subject: Re: AWK trivia To: Marc Wandschneider Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi Marc. apparently /usr/bin/awk is really gawk, so you can set FS to a regexp like this: /usr/bin/awk -F ' *"' and that does what you wanted. -- christian. > blaugh! > > so, i have a file in the following format: > > SOME_SINGLE_WORD STRING "A quoted String" > > Where the two things are separated by any amount of whitespace, not > including \n. > > I would like to set up AWK so that I end up having: > > $1 = SOME_SINGLE_WORD_STRING > $2 = "A Quoted STring" > > for each line/record [with or without the quotes]. > > this actually appears to be non-trivial. > > any suggestions? i've zipped through the two texts i have on it, > without much luck. > > thanks! > > marc. __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 0:17: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web3802.mail.yahoo.com (web3802.mail.yahoo.com [204.71.203.173]) by hub.freebsd.org (Postfix) with SMTP id EB08937B66D for ; Mon, 16 Oct 2000 00:17:01 -0700 (PDT) Message-ID: <20001016071701.18766.qmail@web3802.mail.yahoo.com> Received: from [216.126.138.151] by web3802.mail.yahoo.com; Mon, 16 Oct 2000 00:17:01 PDT Date: Mon, 16 Oct 2000 00:17:01 -0700 (PDT) From: Chris Jentile Subject: question.. 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 I am always getting the following warning message. Gtk-WARNING**:Unable to locate loadable module in module_path: "libnotif.so" I have not been able to find this anywhere on the web. Do you know where I can find this module? thanks in advance Chris __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 0:37:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pikachu.rt.net.tr (pikachu.rt.net.tr [212.65.128.9]) by hub.freebsd.org (Postfix) with SMTP id 4453237B66C for ; Mon, 16 Oct 2000 00:37:41 -0700 (PDT) Received: (qmail 24826 invoked from network); 13 Oct 2000 15:38:14 -0000 Received: from unknown (HELO Debug) (212.65.128.4) by 0 with SMTP; 13 Oct 2000 15:38:14 -0000 To: vicky@piki.net, freebsd-questions@freebsd.org From: yenigul@rt.net.tr Subject: Re: a Request ;) Date: Fri, 13 Oct 2000 18:37:17 Turkey X-Mailer: Endymion MailMan Standard Edition v3.0.19 Message-Id: <20001016073741.4453237B66C@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi Dear sirs / madams > (which I don't intend to take it from FreeBSD homepage - www.freebsd.org), I need direct send from you ;)) > wrong idea !!!! you can find all thing that you are looking for > Thank you very much, I'm lookin' forward for your answers, and long live FreeBSD!!! > > Best regards, > Vicky > > > > > 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 Oct 16 0:42:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-ether.rz.uni-ulm.de [134.60.1.36]) by hub.freebsd.org (Postfix) with ESMTP id 22CAF37B670 for ; Mon, 16 Oct 2000 00:42:40 -0700 (PDT) Received: from gmx.de (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with ESMTP id JAA26671; Mon, 16 Oct 2000 09:42:30 +0200 (MEST) Message-ID: <39EAB166.1A947A93@gmx.de> Date: Mon, 16 Oct 2000 09:42:30 +0200 From: Siegbert Baude X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: de, en MIME-Version: 1.0 To: Jon Stanley Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 4.1.1-RELEASE and Microsoft Intellimouse References: Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Jon, > I am attempting to use a Microsoft Intellimouse optical (not very > concerned about all five buttons working or anything like that. Just a > generic mouse would do fine for me right now). The mouse is very erattic > on the screen to the point that nothing can be accomplished with it. It > is a USB mouse that is converted to PS/2 with the little adapter thingy > that came with it. If this is any help it's also going into a Belkin KVM > switch. When I was running Red Hat (on the same hardware with the same > switch) it worked fine. So I know that there is something that I am > missing to get this to work. Any suggestions? I have exactly the same mouse, also with the PS/2 Adapter. Iīm running 4.1 Stable and in my configuration I have: /etc/XF86Config: Device "/dev/mouse" /etc/rc.conf: moused_port="/dev/psm0" moused_type="auto" moused_enable="YES" moused_flags="-z 4" The only problem Iīm facing until now are sporadic imwheel core dumps (but I also had them with another wheel mouse by Primax). Until now 3 buttons are working, as I read that for 5 buttons you should switch to XFree 4, which I didnīt attack until now. Hope this helps Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 0:42:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id A2AD937B66E for ; Mon, 16 Oct 2000 00:42:54 -0700 (PDT) Received: from informatique (213.36.48.230) by mail.libertysurf.net (5.1.046) id 39E6E2E50004F555 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 09:42:53 +0200 Message-ID: <001c01c03744$ef2ad780$73c809c0@informatique> From: "Pascal Fosse" To: Subject: PCMCIA and FreeBSD 4.0 Date: Mon, 16 Oct 2000 09:44:37 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0017_01C03755.B26BC910" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0017_01C03755.B26BC910 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I'm trying to install a PCMCIA network card but after install, nothing = is detected. Perhaps, I have to enable an option or something like this = ? The PCMCIA controller is a Texas Instruments PCI 1131 and the network = card, a 3COM. Is someone having some information about this? Thanks. Cordially. Pascal Fosse. ------=_NextPart_000_0017_01C03755.B26BC910 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
I'm trying to install a PCMCIA network=20 card but after install, nothing is detected. Perhaps, I have to = enable an=20 option or something like this ? The PCMCIA controller is a Texas = Instruments PCI=20 1131 and the network card, a 3COM.
 
Is someone having some information = about=20 this?
 
Thanks.
 
Cordially.
 
Pascal = Fosse.
------=_NextPart_000_0017_01C03755.B26BC910-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 0:59:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-ether.rz.uni-ulm.de [134.60.1.36]) by hub.freebsd.org (Postfix) with ESMTP id 624CC37B502 for ; Mon, 16 Oct 2000 00:59:49 -0700 (PDT) Received: from gmx.de (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with ESMTP id JAA29815; Mon, 16 Oct 2000 09:56:01 +0200 (MEST) Message-ID: <39EAB490.8F285E88@gmx.de> Date: Mon, 16 Oct 2000 09:56:00 +0200 From: Siegbert Baude X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: de, en MIME-Version: 1.0 To: "O. Hartmann" Cc: freebsd-questions@freebsd.org Subject: Re: KDE and DES-password encryption failure References: 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, > But I ran > into problems! The encryption scheme for the system is DES, not MD5. > KDE allows to lock screen, but I can not type in any kind of password, > it is not accepted. Only for those users with a MD5 stylish password > in the password database access is granted. For the archives, I see this problem, too. But it only applies to the screen-lock-facilitie. KDM-login is working just fine. Are there other k-tools, which would use passwords? Just to check their behaviour. Until now I always thought, itīs a permission problem, because it worke for root, but not for users. But now I see that root has MD5 password style and users DES. Can anybody explain, why? I didnīt change this, so is this kind of default? > Can anybody tell me how I can figure KDE to accept DES styl passowrds? > Maybe it is only the screen-lock facility, but I do not know so I want to > ask before trying myself to get rid of the problem and likely destroying > the installed system again. I once was told to wait for KDE 2, which would fix the problem, but I doubt now, that there is no simpler solution (and also that it will be fixed in KDE 2, as the prolem wasnīt understood completely until now. At least this is the first time I see someone pointing to different pw-encryption schemes instead of root-permission problems. Should this be forwarded to some KDE list, maybe?) Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 1: 0:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id B553D37B66D for ; Mon, 16 Oct 2000 01:00:07 -0700 (PDT) Received: from informatique (213.36.48.230) by mail.libertysurf.net (5.1.046) id 39E687E80005B86B for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 10:00:03 +0200 Message-ID: <006701c03747$54b52fe0$73c809c0@informatique> From: "Pascal Fosse" To: Subject: PCMCIA and FreeBSD 4.0 Date: Mon, 16 Oct 2000 10:01:46 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0064_01C03758.17C3C6D0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0064_01C03758.17C3C6D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm trying to install a PCMCIA network card but after install, nothing = is detected. Perhaps, I have to enable an option or something like this = ? The PCMCIA controller is a Texas Instruments PCI 1131 and the network = card, a 3COM. Is someone having some information about this? Thanks. Cordially. Pascal Fosse. ------=_NextPart_000_0064_01C03758.17C3C6D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'm trying to install a PCMCIA network=20 card but after install, nothing is detected. Perhaps, I have to = enable an=20 option or something like this ? The PCMCIA controller is a Texas = Instruments PCI=20 1131 and the network card, a 3COM.
 
Is someone having some information = about=20 this?
 
Thanks.
 
Cordially.
 
Pascal=20 Fosse.
------=_NextPart_000_0064_01C03758.17C3C6D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 1: 2:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx.ntvinet.net (simsim.memonet.ru [62.212.32.66]) by hub.freebsd.org (Postfix) with ESMTP id 2320837B66D for ; Mon, 16 Oct 2000 01:02:12 -0700 (PDT) Received: from ntvi.ru (nest.memonet.ru [62.212.32.60]) by mx.ntvinet.net (8.9.3/8.9-V) with ESMTP id MAA05875; Mon, 16 Oct 2000 12:00:50 +0400 (MSD) X-Authentication-Warning: simsim.ntvinet.net: Host nest.memonet.ru [62.212.32.60] claimed to be ntvi.ru Message-ID: <39EAC394.1DA3F2BC@ntvi.ru> Date: Mon, 16 Oct 2000 12:00:04 +0300 From: Fedor Gnuchev X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.8 i86pc) X-Accept-Language: en MIME-Version: 1.0 To: Chris Dillon Cc: Michael Lucas , freebsd-questions@FreeBSD.ORG Subject: Re: NetBackup client for FreeBSD References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chris Dillon wrote: > On Fri, 13 Oct 2000, Michael Lucas wrote: > > > Probably because nobody knew about it. ;) We're always happy to > > list vendors. > OK, then sligthly unrelated : AMI (www.ami.com) had put FreeBSD in the list of OSes that have drivers for MegaRAID Elite 1600. Again - no reference to AMI on FreeBSD pages, while list of new supported controllers grows. Same story with former Mylex (now Adaptec) Accell/eXtreme RAIDs. Bottom line - efforts invested in driver development are not adequately promoted :-) The implication is really unfair - while there is a number of companies building extremely successfull FreeBSD-based products (just few to mention - iMimic, F5 Networks), rest of the world is confused by misleading lack information on new h/w support. > > I'm going to actually _test_ this support out as soon as they send me > my evaluation demo for NetBackup BusinessServer 3.4. I wish it didn't > cost $1500 (should I choose to buy it), but it was about the only > thing I could find with both FreeBSD and NT support. If I don't have > to call their tech-support to get the FreeBSD client working on all > most likely you'll have to call them - and be prepared for a delay since they have very few customers with FreeBSD clients. Yet it works perfectly - I know several installations with 3.x, though not sure about 2.2.8. And you can consider talking to tech support as good investment - they do record all transactions, so next request will be smoother :-), not to mention that it will increase tech.support awareness of FreeBSD. > three of my 2.2.8, 3.5, and 4.1.1 boxen, I'll give it a hearty > recommendation. :-) > > -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net > FreeBSD: The fastest and most stable server OS on the planet. > For Intel x86 and Alpha architectures. ( http://www.freebsd.org ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 1:32: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-ether.rz.uni-ulm.de [134.60.1.36]) by hub.freebsd.org (Postfix) with ESMTP id 00F6037B66D for ; Mon, 16 Oct 2000 01:32:00 -0700 (PDT) Received: from gmx.de (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with ESMTP id KAA08155; Mon, 16 Oct 2000 10:31:29 +0200 (MEST) Message-ID: <39EABCE1.9F0A770A@gmx.de> Date: Mon, 16 Oct 2000 10:31:29 +0200 From: Siegbert Baude X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: de, en MIME-Version: 1.0 To: Bill Schoolcraft Cc: FBSD Subject: Re: Manually setting 'dc0' to half-duplex ? References: 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 Bill, > I've been fishing around for the file to set my NIC to > half-duplex from full-duplex. Can anyone offer any pointers ? > The card is set to 'auto' in the /etc/defaults/rc.conf file > and I won't go into the error I received when I took out the 'auto' > and put in '10baseT/UTP' as I misread in haste in the manpage. Shouldnīt work: ifconfig media 10baseT/UTP mediaopt half-duplex But didnīt try myself. hth Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 1:52:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 1966C37B66C for ; Mon, 16 Oct 2000 01:52:13 -0700 (PDT) Received: (qmail 34809 invoked by uid 100); 16 Oct 2000 08:52:12 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14826.49596.116944.205148@guru.mired.org> Date: Mon, 16 Oct 2000 03:52:12 -0500 (CDT) To: "Richard Shea" Cc: questions@freebsd.org Subject: Re: rc.firewall vs hosts.allow ? In-Reply-To: <11203552@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Richard Shea writes: > Hi - I have a FreeBSD machine which acts as a firewall and to which I now want to allow a limited amount of ftp access. The firewall rules at the moment stop any incoming FTP. In the future I want users from a small set of known domains to be able to get on and leave files. BTW FWIW this would not be anonymous ftp. > > I thought about adding rules to rc.firewall to specifically allow incoming ftp from those domains but then I thought about letting through all incoming ftp and using hosts.allow to deny access to all but the 'good' domains. > > Is this just a question of taste or are there some issues here I haven't noticed ? Is there a 'right' way - maybe totally different from those I've mentioned. hosts.allow is the config file for the tcp wrappers package; rc.firewall is a config script for the kernel ip filtering facility. Both are tools one can use to build a firewall. ipfw seems to be the prefered method to use these days, but don't quote me. I'd say not to use both, but choose one or the other. That's because having all the security information in one place makes it that much less likely that you'll make a mistake because you don't have the information in the other place. ; Mon, 16 Oct 2000 01:59:10 -0700 (PDT) Received: (qmail 57015 invoked by uid 100); 16 Oct 2000 08:59:10 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14826.50014.195908.611522@guru.mired.org> Date: Mon, 16 Oct 2000 03:59:10 -0500 (CDT) To: Robert LaThanh Cc: questions@freebsd.org Subject: Re: Crash every 45 days in 4.0-RELEASE (sometimes sooner) In-Reply-To: <130095636@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Robert LaThanh writes: > (I'm not sure if this is the right group to be posting to, can someone > tell me which group would be more appropriate?) No, this is the right group. > My web server used to be running Red Hat Linux 5.2 and had reached an > uptime of about 150 days. This summer I switched over to FreeBSD > 4.0-RELEASE and I haven't been able to get an uptime of more than 45 > days. While browsing through kernel code I noticed a comment that read: > "Increment time in/out of memory and sleep time (if sleeping). We ignore [...] > About 6 times a day I get the message "/kernel: dc0: TX underrun -- > resetting". It doesn't seem to be affecting the availability of my > server at all, it still seems to perform as expected, otherwise. Could > this have anything to do with the crashing? Check the dc(4) man page. It's the driver reacting to the host not getting data to the NIC fast enough. It's almost certainly ignorable. > Where should I look for the cause of my crashes? I only know to look > at /var/log/messages, but the only unusual messages there are the TX > underrun ones. The best place to look is in the crash dump your system is taking after each crash. The "crash" man page discusses how to do that, as well as providing pointers to how to enable crash dumps if you haven't done so. ; Mon, 16 Oct 2000 02:05:01 -0700 (PDT) Received: from gmx.de (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with ESMTP id LAA16758; Mon, 16 Oct 2000 11:04:54 +0200 (MEST) Message-ID: <39EAC4B6.88E973A9@gmx.de> Date: Mon, 16 Oct 2000 11:04:54 +0200 From: Siegbert Baude X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: de, en MIME-Version: 1.0 To: Bill Schoolcraft , FBSD Subject: Re: Manually setting 'dc0' to half-duplex ? References: <39EABCE1.9F0A770A@gmx.de> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stupid me, next time I check first :-( > Shouldnīt work: > > ifconfig media 10baseT/UTP mediaopt half-duplex > > But didnīt try myself. This gives me a "device not configured" error. At least for the rl driver: ifconfig media 10baseT/UTP refers to half-duplex and ifconfig media 10baseT/UTP mediaopt full-duplex defaults to full-duplex Just read in the archives that this is true also for the intel ether express cards. The man page for rl is very confusing about this, because the relevant parts read like: 10baseT/UTP Set 10Mbps operation. The mediaopt option can also be used to select either full-duplex or half-duplex modes. 100baseTX Set 100Mbps (fast ethernet) operation. The mediaopt option can also be used to select either full-duplex or half-duplex modes. The rl driver supports the following media options: full-duplex Force full duplex operation half-duplex Force half duplex operation. *end man page* This is apparently wrong. I never checked how to change docs. Anybody has a suggestion, what I should do now? Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 2: 5:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id 01C0C37B66C for ; Mon, 16 Oct 2000 02:05:07 -0700 (PDT) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id NAA44236 for ; Mon, 16 Oct 2000 13:27:30 +0400 (MSD) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id e9G94PD29667 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 13:04:25 +0400 Date: Mon, 16 Oct 2000 13:04:25 +0400 From: Igor Roboul To: freebsd-questions@freebsd.org Subject: Re: ALT Key Message-ID: <20001016130425.A29234@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@freebsd.org References: <001601c03807$7a96bec0$8ded4518@kldt1.bc.wave.home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <001601c03807$7a96bec0$8ded4518@kldt1.bc.wave.home.com>; from smujohnson@home.com on Mon, Oct 16, 2000 at 11:57:13PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Oct 16, 2000 at 11:57:13PM -0700, Mike Batchelor wrote: > Pressing ALT-1 for example, it is as if I was not even holding the ALT key down... just pressing the 1 key. I noticed this mainly in BitchX where I could not switch windows.. yet could from a different computer via telnet. I think, this is problem with Alt/Meta If you have keyboard with "Windows" keys, then Meta is key with "Windows banner" and Alt is just Alt key. If you had keyboard without "WinKeys" then on that keyboard Alt was also Meta. So, try "Windows banner" key with BitchX. -- Igor Roboul, Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 2:29:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from beta.root-servers.ch (beta.root-servers.ch [195.49.33.19]) by hub.freebsd.org (Postfix) with SMTP id 4E87E37B502 for ; Mon, 16 Oct 2000 02:29:13 -0700 (PDT) Received: (qmail 14651 invoked from network); 16 Oct 2000 09:29:11 -0000 Received: from unknown (HELO WORK) (62.2.106.244) by beta.root-servers.ch with SMTP; 16 Oct 2000 09:29:11 -0000 Date: Mon, 16 Oct 2000 11:32:53 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.47 Beta/7) UNREG / CD5BF9353B3B7091 Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <1065874527.20001016113253@buz.ch> To: Muditha Gunatilake Cc: questions@freebsd.org Subject: Re: Rackmount Servers In-reply-To: <39EAC92A.A3F91F0D@seychelles.net> References: <39EAC92A.A3F91F0D@seychelles.net> 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 Hello Muditha, Monday, October 16, 2000, 11:23:55 AM, you wrote: > We are a small ISP running FreeBSD. I am interested in purchasing rack > mount servers to replace the seprate individual servers we have at > present. > *) The server have to be very reliable and solid hardware. > *) Price is not the main issue > *) Been located in a small Island far away from anywhere..we do not > have easy access to suppliers for replacements, spares etc....hence > reliability. > Would you recommend going for compaq or dell solution? Neither of the two (but if you really want: Dell or IBM). Personally, I'd recommend that you build your servers your selves, that way you know what there's in there and even more important: you know how to fix the hardware if it breaks. Not that easy with the proprietary crap the big vendors (especially Compaq but IBM as well) use. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 4:16:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id C2D3137B670 for ; Mon, 16 Oct 2000 04:16:25 -0700 (PDT) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id e9GBGOn13518 for ; Mon, 16 Oct 2000 13:16:24 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Mon, 16 Oct 2000 13:16:17 +0200 (CEST) From: Micke Josefsson To: freebsd-questions@freebsd.org Subject: Slightly off topic: Wangtek 5150ES Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I recently found an old Wangtek 5150 ES tape drive in the basement. I can't get it to work. It identifies during boot as: sa0 at ncr0 bus 0 target 2 lun 0 sa0: Removable Sequential Access SCSI-CCS device sa0: 3.300MB/s transfers And also does mt-commands as expected but tar'ring or dump'ing to it makes it squirm a bit. mt status: lagrange# mt -f /dev/rsa0 stat Mode Density Blocksize bpi Compression Current: 0x10:QIC-150 512 bytes 10000 unsupported ---------available modes--------- 0: 0x10:QIC-150 512 bytes 10000 unsupported 1: 0x10:QIC-150 512 bytes 10000 unsupported 2: 0x10:QIC-150 512 bytes 10000 unsupported 3: 0x10:QIC-150 512 bytes 10000 unsupported --------------------------------- Current Driver State: at rest. --------------------------------- File Number: 0 Record Number: 0 But: lagrange# tar cf /dev/rsa0 vinum.4.ps tar: can't write to /dev/rsa0 : Invalid argument. (vinum.4.ps is just a plain text file) Where do I go wrong? I have a 525Meg tape in the drive. Is it possible that the tape is not recognized? Do I have to use another (150Meg?) tape? This is not strictly a FreeBSD-question, I know, but it sits on a FreeBSD box so...? Help appreciated! /Micke . ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 4:49:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web10207.mail.yahoo.com (web10207.mail.yahoo.com [216.136.130.71]) by hub.freebsd.org (Postfix) with SMTP id 726F737B502 for ; Mon, 16 Oct 2000 04:49:58 -0700 (PDT) Message-ID: <20001016114958.65809.qmail@web10207.mail.yahoo.com> Received: from [212.253.216.201] by web10207.mail.yahoo.com; Mon, 16 Oct 2000 04:49:58 PDT Date: Mon, 16 Oct 2000 04:49:58 -0700 (PDT) From: tan ser Subject: AGILER 8 BUTON JOYPAD 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 PLEASE SEND ME AGILER 8 BUTON JOYPAD DRIVERS..THANKS ! __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 5: 0:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail0.bna.bellsouth.net (mail0.bna.bellsouth.net [205.152.150.12]) by hub.freebsd.org (Postfix) with ESMTP id 6901437B670 for ; Mon, 16 Oct 2000 05:00:28 -0700 (PDT) Received: from bellsouth.net (adsl-61-188-127.bna.bellsouth.net [208.61.188.127]) by mail0.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id IAA00193; Mon, 16 Oct 2000 08:00:24 -0400 (EDT) Message-ID: <39EAEF8D.197E962B@bellsouth.net> Date: Mon, 16 Oct 2000 07:07:41 -0500 From: Drew Sanford X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Otter Cc: "Mullen, Adam" , freebsd-questions@FreeBSD.ORG Subject: Re: Netgear FA312 10/100 Ethernet Nic References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've also seen this behavior. The 310 is golden, and I'm glad I have extras laying around, because for the money, you can't beat them in my opinion. Can anyone tell what broke these cards, and better yet, once we know that, would anyone fix up the driver for it? That would be great:) Otter wrote: > > Adam, > Under 4.1.1, the FA310 works like a champ using the dc driver. After > picking up a NetGear 311 yesterday, I see that it doesn't work with dc > or any other driver in the 4.1 GENERIC kernel I was attempting to > install it on. Once I pull the 310 and compare chipsets, I'll let you > know the difference. For what it's worth, I get the same result you do > on my 311-- no recognition. > -Otter > > }-----Original Message----- > }From: owner-freebsd-questions@FreeBSD.ORG > }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Mullen, Adam > }Sent: Sunday, October 15, 2000 1:58 PM > }To: 'freebsd-questions@FreeBSD.ORG' > }Cc: Mullen, Adam > }Subject: Netgear FA312 10/100 Ethernet Nic > } > } > }I recently bought a Netgear FA312 Nic based off of the fact that they > }claimed it ran under Linux. Well, not quite that simple. > }It runs under > }Linux under the kernel they developed it for. To say the > }least, I've thrown > }Linux out the door and am now running FreeBSD. I can't get > }this card to > }work here either. I've found that under OpenBSD they > }suggest useing the sis > }drivers. I've tried compiling the sis code into the kernel > }but no such > }luck. My latest escapade was to compile all of the network > }drivers into the > }kernel and see what happens. When I do an ifconfig -a, > }nothing shows up > }besides the nomal loopback. When I do dmesg | grep -i inet, > }nothing shows > }up. Has anyone else made attempts to use the FA312 Nic and > }does anyone know > }if this is even possible? > } > }Cheers, Adam > } > }Adam D. Mullen > }Compaq Premier Support > }Compaq Corp., Austin TX > }Phone: (800) 255-5010 > }Email adam.mullen@compaq.com -- Drew Sanford lauasanf@bellsouth.net or drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 5: 4:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.bna.bellsouth.net (mail1.bna.bellsouth.net [205.152.150.13]) by hub.freebsd.org (Postfix) with ESMTP id A5E4637B66F for ; Mon, 16 Oct 2000 05:04:19 -0700 (PDT) Received: from bellsouth.net (adsl-61-188-127.bna.bellsouth.net [208.61.188.127]) by mail1.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id IAA27559; Mon, 16 Oct 2000 08:04:17 -0400 (EDT) Message-ID: <39EAF02F.1F875DDE@bellsouth.net> Date: Mon, 16 Oct 2000 07:10:23 -0500 From: Drew Sanford X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Stephen Krauth Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SB Live under 4.1 (I know I know...) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm using 4.1, and have a full SBLive (the one with the digital IO daughter card) that works like a champ. As advertised, I simply included the proper device driver in the kernel config, and when all was said and done, it was flawless. Stephen Krauth wrote: > > So I've scoured the mail archives and it seems there's no definitive > answer on getting the SoundBlaster Live! to work under 4.1. On my machine > it has many pops and blips when running wavplay or other programs and > eventually hangs the machine. > > So is there any new news? > > Or... is there another *PCI* sound card that definately works under > FreeBSD? (I just bought the SBLive and will take it back if I know > another card will work). Oh, and I'm not too jazzed about using a closed > source package just to get sound working (like OSS)... > > Steve K. U.F.O. - "For the feeler gauge in you." -- Drew Sanford lauasanf@bellsouth.net or drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 5: 8:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from new-smtp2.ihug.com.au (new-smtp2.ihug.com.au [203.109.250.28]) by hub.freebsd.org (Postfix) with ESMTP id 21F4B37B502 for ; Mon, 16 Oct 2000 05:08:16 -0700 (PDT) Received: from death.mega-tokyo.com (p13-max17.mel.ihug.com.au [203.173.171.13]) by new-smtp2.ihug.com.au (8.9.3/8.9.3) with ESMTP id XAA27168 for ; Mon, 16 Oct 2000 23:08:02 +1100 X-Authentication-Warning: new-smtp2.ihug.com.au: Host p13-max17.mel.ihug.com.au [203.173.171.13] claimed to be death.mega-tokyo.com Message-Id: <5.0.0.25.2.20001016230943.02f18e98@pop.ihug.com.au> X-Sender: sgeorge@pop.ihug.com.au X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 16 Oct 2000 23:10:40 +1000 To: freebsd-questions@FreeBSD.ORG From: Stuart George Subject: Re: Netgear FA312 10/100 Ethernet Nic In-Reply-To: <39EAEF8D.197E962B@bellsouth.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 07:07 AM 16/10/2000 -0500, Drew Sanford wrote: >I've also seen this behavior. The 310 is golden, and I'm glad I have >extras laying around, because for the money, you can't beat them in my >opinion. Can anyone tell what broke these cards, and better yet, once we >know that, would anyone fix up the driver for it? That would be great:) didnt they go through a chipset change? i was poking around some netgear cards, and iirc, the new versions have a different chipset. could be wrong tho... -Stuart "Stewy/Stu/Stew" George +--[ Stuart George Running FreeBSD 4.1 ]--+ Main Homepage http://www.mega-tokyo.com/me [FAQ] Write Your Own OS http://www.mega-tokyo.com/os 3x3 Eyes Fan Fiction Archive http://www.mega-tokyo.com/pai Sarien Sierra Emulator http://www.mega-tokyo.com/sarien To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 5: 8:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from student.netserv.chula.ac.th (student.netserv.chula.ac.th [161.200.192.18]) by hub.freebsd.org (Postfix) with ESMTP id 4CDF937B66D for ; Mon, 16 Oct 2000 05:08:41 -0700 (PDT) Received: from lodoserver (ppp-145.netserv.chula.ac.th [161.200.129.145]) by student.netserv.chula.ac.th (8.9.3/8.9.3) with SMTP id TAA29798 for ; Mon, 16 Oct 2000 19:08:16 +0700 (GMT+0700) From: "Suttiwat Youngklai" <00557321@student.chula.ac.th> To: Subject: How to make Pseudo Device on FreeBSD Date: Mon, 16 Oct 2000 19:14:04 +0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-874" Content-Transfer-Encoding: base64 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.2919.6600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG SGkgLCBhbGwNCglJIHdvdWxkIGxpa2UgdG8gY3JlYXRlICdQc2V1ZG8gRGV2aWNlJyBvbiBGcmVl QlNELCBIb3cgaSBjYW4gZG8gaXQsIHBsZWFzZSByZWNvbW1lbmQgbWUgYnkgZG9jdW1lbnQgb3Ig VVJMIHJlZmVyZW5jZS4NCg0KCWFuZCBJIHdvdWxkIGxpa2UgdG8gc2hhcmUgc29tZSBjb25jZXB0 IGFib3V0IE1ldGhvZCB0byBDb21tdW5pY2F0aW9uIGJldHdlZW4gS2VybmVsIFNwYWNlIGFuZCBV c2VyIFNwYWNlIHByb2dyYW0NCg0KCTEuIFNZU0NUTCBmdW5jdGlvbiBvbiBLRVJORUwgY29kZSBh bmQgc3lzY3RsIHV0aWxpdHkgb24gdXNlciBzcGFjZS4NCgkyLiBLZXJuZWwgVmlydHVhbCBNZW1v cnkNCgkzLiA/Pz8gPCBQc2V1ZG8gRGV2aWNlID4gPz8/DQoNCglQbGVhc2UgcmVjb21tZW5kIG1l IGFib3V0IHRoaXMuIA0KDQoJVGhhbmsgeW91IHZlcnkgbXVjaC4NCg0KICAgICBTdXR0aXdhdCBZ b3VuZ2tsYWkuDQo9PT09PT09PT09PT09PT09PQ0K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 5:13:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id 34B2D37B66D for ; Mon, 16 Oct 2000 05:13:06 -0700 (PDT) Received: (qmail 29973 invoked by uid 0); 16 Oct 2000 12:13:03 -0000 Received: from p3ee23b69.dip.t-dialin.net (HELO Shadow) (62.226.59.105) by mail.gmx.net with SMTP; 16 Oct 2000 12:13:03 -0000 Message-ID: <000501c0376a$26e86780$6501a8c0@Shadow> From: "Matthias Grunwald" To: Subject: tcpmssd & 4.1.1-R & PPPoE Date: Mon, 16 Oct 2000 14:09:11 +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.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, i installed a FBSD 4.1.1 machine to serve as a dsl-router using user ppp and -nat. Unfortunately I have the same windows problem (don't fragment) as most other users. Setting the MTU under Windows 2000 works fine and everything loads quick. Setting the MaxMTU under Windows 98 does unfortunately not work. The system is slow and laggy. Now i would like to use tcpmssd but everytime tcpmssd gets a packet it core dumps (bus error). Using rl0 with ipfw add 100 divert 1234 tcp from any to any out via rl0 setup and /usr/local/bin/tcpmssd -p 1234 -m 1492 -v doesn't work as the packets go out via tun0 (tcpmssd doesn't core dump either) Using tun0 with ipfw add 100 divert 1234 tcp from any to any out via tun0 setup and /usr/local/bin/tcpmssd -p 1234 -m 1492 -v should work but tcpmssd core dumps. I also tried to filter the packets on coming in on dev ed0 (even if this probably makes no sense) and tcpmssd still core dumps: ipfw add 100 divert 1234 tcp from any to any in via ed0 setup /usr/local/bin/tcpmssd -p 1234 -m 1492 -v Here is my configuration: ipfw show: ###################################################### 00100 0 0 divert 1234 log tcp from any to any out xmit tun0 setup 65535 57459 5634710 allow ip from any to any ###################################################### netstat -nr: ######################################################## Internet: Destination Gateway Flags Refs Use Netif Expire default 62.225.254.65 UGSc 54 4921 tun0 10.0.0.2 10.10.1.1 UH 0 0 tun0 10.10.1/24 link#1 UC 0 0 rl0 => 62.225.254.65 62.226.59.105 UH 54 0 tun0 127.0.0.1 127.0.0.1 UH 0 2 lo0 192.168.1 link#2 UC 0 0 ed0 => 192.168.1.101 52:54:5:f7:ab:59 UHLW 2 22052 ed0 837 192.168.1.103 0:20:af:2f:57:4 UHLW 1 14 ed0 1196 ######################################################### ifconfig -a: rl0: external network ed0: internal network ##################################################### ifconfig -a rl0: flags=8843 mtu 1500 inet 10.10.1.1 netmask 0xffffff00 broadcast 10.10.1.255 ether 00:e0:7d:75:47:52 media: autoselect (none) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 100baseTX ed0: flags=8843 mtu 1500 inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 ether 00:e0:7d:79:ca:13 lo0: flags=8049 mtu 16384 inet 127.0.0.1 netmask 0xff000000 ppp0: flags=8010 mtu 1500 tun0: flags=8051 mtu 1492 inet 10.10.1.1 --> 10.0.0.2 netmask 0xff000000 inet 62.226.59.105 --> 62.225.254.65 netmask 0xff000000 Opened by PID 80 ####################################################### ppp.conf: ####################################################### default: set device PPPoE:rl0 set speed sync set cd set mru 1492 set mtu 1492 set authname *mylogin* set authkey *mypass* set log Phase command set dial set login set ifaddr 10.10.1.1/0 10.0.0.2/0 add default HISADDR enable dns set server +3000 1234 nat enable yes set timeout 300 ###################################################### Any ideas? Matthias PS: Please answer to me directly, as I'm not on the list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 5:15: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 25CEA37B66D for ; Mon, 16 Oct 2000 05:14:58 -0700 (PDT) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id e9GCEvn14860 for ; Mon, 16 Oct 2000 14:14:57 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Mon, 16 Oct 2000 14:14:56 +0200 (CEST) From: Micke Josefsson To: freebsd-questions@freebsd.org Subject: stty behaviour odd? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How is it that I (uid=1001(mj) gid=1001(mj) groups=1001(mj), 0(wheel), 68(dialer)) can stty -f /dev/cuaa1 57600 but not stty -f /dev/cuaia1 57600 or stty -f /dev/cuala1 57600 even though: crw-rw---- 1 uucp dialer 28, 129 13 Okt 11:14 /dev/cuaa1 crw-rw---- 1 uucp dialer 28, 161 6 Jun 17:16 /dev/cuaia1 crw-rw---- 1 uucp dialer 28, 193 6 Jun 17:16 /dev/cuala1 If the permissions are the same, I should be able to fiddle with all the cua:s? How do I circumvent this? Set-uid-root on stty does it, but that feels like a H-bomb-to-kill-a-fly approach. /Micke ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 6:39:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 6D2BA37B66D for ; Mon, 16 Oct 2000 06:39:33 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13lAU7-00089D-00; Mon, 16 Oct 2000 15:39:23 +0200 Received: (from daemon@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9GDH2P24960 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 15:17:02 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Slightly off topic: Wangtek 5150ES Date: Mon, 16 Oct 2000 13:17:02 +0000 (UTC) Message-ID: <8sev4e$obn$1@kemoauc.mips.inka.de> References: Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Micke Josefsson wrote: > sa0 at ncr0 bus 0 target 2 lun 0 > sa0: Removable Sequential Access SCSI-CCS device > sa0: 3.300MB/s transfers > lagrange# tar cf /dev/rsa0 vinum.4.ps > tar: can't write to /dev/rsa0 : Invalid argument. > Where do I go wrong? I have a 525Meg tape in the drive. Is it > possible that the tape is not recognized? Good you mentioned this, because that's a failure mode I'd have never thought of. Yes, of course you need a QIC-150 tape. Tape type recognition is automatic for QIC drives, although I don't know the exact mechanism. A higher capacity tape than the drive was build for is simply an unknown tape type that the drive will refuse to read or write. > Do I have to use another (150Meg?) tape? The documentation that came with the drive mentions the supported tape types. These should be DC6150 (QIC-150, 150MB) and DC6250 (QIC-150, longer tape, 250MB) plus a few older types (QIC-120, QIC-24) that are still supported for compatibility reasons. Second-hand DC6[12]50 tapes are ubiquitous, and the tapes are very longlived, so you should have little trouble finding some. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 6:46: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 246E637B66D for ; Mon, 16 Oct 2000 06:45:47 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.0/8.11.0) id e9GDiA278299; Mon, 16 Oct 2000 16:44:10 +0300 (EEST) (envelope-from ru) Date: Mon, 16 Oct 2000 16:44:10 +0300 From: Ruslan Ermilov To: Matthias Grunwald Cc: freebsd-questions@FreeBSD.ORG Subject: Re: tcpmssd & 4.1.1-R & PPPoE Message-ID: <20001016164410.A78125@sunbay.com> Mail-Followup-To: Matthias Grunwald , freebsd-questions@FreeBSD.ORG References: <000501c0376a$26e86780$6501a8c0@Shadow> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000501c0376a$26e86780$6501a8c0@Shadow>; from grunwald.matthias@gmx.de on Mon, Oct 16, 2000 at 02:09:11PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Oct 16, 2000 at 02:09:11PM +0200, Matthias Grunwald wrote: > Hi, > > i installed a FBSD 4.1.1 machine to serve as a dsl-router using user ppp > and -nat. Unfortunately I have the same windows problem (don't fragment) > as most other users. Setting the MTU under Windows 2000 works fine and > everything loads quick. Setting the MaxMTU under Windows 98 does > unfortunately not work. The system is slow and laggy. > Now i would like to use tcpmssd but everytime tcpmssd gets a packet > it core dumps (bus error). > > Using rl0 with > ipfw add 100 divert 1234 tcp from any to any out via rl0 setup > and > /usr/local/bin/tcpmssd -p 1234 -m 1492 -v > doesn't work as the packets go out via tun0 (tcpmssd doesn't > core dump either) > > Using tun0 with > ipfw add 100 divert 1234 tcp from any to any out via tun0 setup > and > /usr/local/bin/tcpmssd -p 1234 -m 1492 -v > should work but tcpmssd core dumps. > > I also tried to filter the packets on coming in on dev ed0 (even > if this probably makes no sense) and tcpmssd still core dumps: > ipfw add 100 divert 1234 tcp from any to any in via ed0 setup > /usr/local/bin/tcpmssd -p 1234 -m 1492 -v > I've just recompiled it on 4.1.1 (for sure) and ran. Works like expected. Could you compile the tcpmssd with debugging info (-g) and send me the backtrace from the generated core image? -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 6:52:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from exchange.uta.edu (exchange.uta.edu [129.107.56.11]) by hub.freebsd.org (Postfix) with ESMTP id 39DA737B503 for ; Mon, 16 Oct 2000 06:52:55 -0700 (PDT) Received: by exchange.uta.edu with Internet Mail Service (5.5.2448.0) id ; Mon, 16 Oct 2000 08:52:49 -0500 Message-ID: <8CA6FB0217D9D211AE140004AC4CA55608404448@exchange.uta.edu> From: Jason T Hardy To: freebsd-questions@freebsd.org Subject: Question about tools/ directory Date: Mon, 16 Oct 2000 08:52:48 -0500 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 What happened to the tools/ directory on the cd image? I was looking for fdimage.exe to create some boot disks and it seems to be missing? Jason -------------------------------- Jason T. Hardy Software Systems Specialist Office of Information Technology University of Texas at Arlington jthardy@uta.edu (817) 272-7473 Office (817) 272-5477 Fax To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 6:59:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.springwoodsys.com (ns1.springwoodsys.com [12.38.17.16]) by hub.freebsd.org (Postfix) with ESMTP id E66BA37B502 for ; Mon, 16 Oct 2000 06:59:48 -0700 (PDT) Received: from nm99.aepco.com (rtr3.aepco.com [12.38.17.3]) by ns1.springwoodsys.com (8.9.3/8.9.3) with ESMTP id KAA20966; Mon, 16 Oct 2000 10:16:13 -0400 (EDT) (envelope-from bill@springwoodsys.com) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <001f01c0376f$5d7dd8c0$65010180@lojasobino.com.br> Date: Mon, 16 Oct 2000 09:58:22 -0400 (EDT) From: "Bill O'Connell" To: Fabrizzio Batista Subject: Re: Problems with IPSEC Cc: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Oct-00 Fabrizzio Batista wrote: > Bill wrote: > >> The SAD and SPD entries look OK. Are you running a firewall and/or >> NAT on these systems? If so, how are they configured? >> > > Yeah, Iīm running ipfw and NAT. NAT breaks IPSEC ??? > > How can I do to use NAT in my internal interface ? Is this the best > solution ? > > Thanks in advance, > > Fabrizzio > > If your ipfw rules divert packets to natd before ipsec sees them, then that's the problem. You'd have to allow your VPN private addresses to pass before they're diverted to natd, which presents potential security issues. This is why it's probably not a good idea to have the same box be both a firewall and an IPSec security gateway. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 7: 7:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id F075D37B66D for ; Mon, 16 Oct 2000 07:07:12 -0700 (PDT) Received: from magpage.com (poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id e9GE6wE03382; Mon, 16 Oct 2000 10:06:58 -0400 Message-ID: <39EB0B81.FF0EB283@magpage.com> Date: Mon, 16 Oct 2000 10:06:57 -0400 From: Daniel Frazier Organization: Magpage Internet Services X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Siegbert Baude Cc: Jon Stanley , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.1.1-RELEASE and Microsoft Intellimouse References: <39EAB166.1A947A93@gmx.de> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Siegbert Baude wrote: > > I have exactly the same mouse, also with the PS/2 Adapter. Iīm running 4.1 > Stable and in my configuration I have: > > /etc/XF86Config: Device "/dev/mouse" > > /etc/rc.conf: moused_port="/dev/psm0" > moused_type="auto" > moused_enable="YES" > moused_flags="-z 4" > > The only problem Iīm facing until now are sporadic imwheel core dumps (but I > also had them with another wheel mouse by Primax). Until now 3 buttons are > working, as I read that for 5 buttons you should switch to XFree 4, which I > didnīt attack until now. > I've got my intellimouse running fine without having to use imwheel. I did have to add a flag to the device pcm0 line in my kernel config, but after that every thing works flawlessly... Here's what I've got in /etc/XF86Config... Section "Pointer" Protocol "IntelliMouse" Device "/dev/psm0" BaudRate 1200 SampleRate 100 Resolution 200 ZAxisMapping 4 5 Buttons 5 EndSection and here's the line from my kernel config file... device psm0 at atkbdc? irq 12 flags 0x100 hope this helps -- ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 7:33: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ruby.he.net (ruby.he.net [216.218.187.2]) by hub.freebsd.org (Postfix) with ESMTP id B86CD37B671 for ; Mon, 16 Oct 2000 07:33:05 -0700 (PDT) Received: from corten5.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by ruby.he.net (8.8.6/8.8.2) with ESMTP id HAA27584; Mon, 16 Oct 2000 07:33:01 -0700 Date: Mon, 16 Oct 2000 07:30:33 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten5 To: Siegbert Baude Cc: FBSD Subject: Re: Manually setting 'dc0' to half-duplex ? In-Reply-To: <39EABCE1.9F0A770A@gmx.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 At Mon, 16 Oct 2000 it looks like Siegbert Baude composed: SB-->ifconfig media 10baseT/UTP mediaopt half-duplex SB--> SB-->But didn=B4t try myself. SB--> Thanks for the command syntax, I ended up leaving OpenBSD-2.7 on the old Cyrix-586-120 which was giving FreeBSD versions 3.4 through 4.1 the problem and went to a newer 'Slot-1' type machine in another part of my network and FreeBSD-4.1 kicks 'glutamus-maximus' now. Now to figure out why "OpenBSD 2.5, 2.6, 2.7" using dc0 for the NIC card had no problems and FreeBSD did. As a matter of fact,=20 FreeBSD-3.4 was detecting the card as pn0 and FreeBSD-4.1 detected it as a dc0. Oh well. The gift from this whole experience is I can now run both FreeBSD "and" OpenBSD side-by-side on consoles and compare andy differences with the Linux boxes I use at work. I did'nt think of that when first attempting to use the same old machine for the *BSD's. --=20 Bill Schoolcraft http://wiliweld.com PO Box 210076=09 San Francisco, CA 94121=09 " saevis tranquillus in undis " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8: 6: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from home.living-source.lt (home.living-source.lt [195.14.167.237]) by hub.freebsd.org (Postfix) with SMTP id 1E76437B66D for ; Mon, 16 Oct 2000 08:05:55 -0700 (PDT) Received: (qmail 93039 invoked by uid 0); 16 Oct 2000 17:13:19 -0000 Received: from admin.lt.living-source.lt (HELO admin) (192.168.100.20) by home.living-source.lt with SMTP; 16 Oct 2000 17:13:19 -0000 Message-ID: <014201c03782$698676f0$1464a8c0@admin> From: "Aistis Zenkevicius" To: "Bill O'Connell" , "Fabrizzio Batista" Cc: References: Subject: Re: Problems with IPSEC Date: Mon, 16 Oct 2000 17:04:41 +0200 Organization: uab "Living Source Vilnius" 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hilau, don't forget to add a topmost ipfw rule which first passes esp packets, something like : 0010 allow esp from any to any this line solved problems for me some days ago :-) Jenty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:12:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id 92C5D37B670 for ; Mon, 16 Oct 2000 08:12:34 -0700 (PDT) Received: from infop (213.36.48.134) by mail.libertysurf.net (5.1.046) id 39E6E2E50005EB07 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 17:12:30 +0200 Message-ID: <002301c03783$95f0bec0$73c809c0@infop> From: "Pascal Fosse" To: Subject: PCMCIA and FreeBSD 4.0 Date: Mon, 16 Oct 2000 17:13:05 +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.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to install a PCMCIA network card but after install, nothing is detected. Perhaps, I have to enable an option or something like this ? The PCMCIA controller is a Texas Instruments PCI 1131 and the network card, a 3COM 589D Is someone have some information about this? Thanks. Cordially. Pascal Fosse. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:28:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4101.mail.yahoo.com (web4101.mail.yahoo.com [216.115.104.121]) by hub.freebsd.org (Postfix) with SMTP id 38A8437B502 for ; Mon, 16 Oct 2000 08:28:12 -0700 (PDT) Message-ID: <20001016152807.2391.qmail@web4101.mail.yahoo.com> Received: from [64.244.44.98] by web4101.mail.yahoo.com; Mon, 16 Oct 2000 08:28:07 PDT Date: Mon, 16 Oct 2000 08:28:07 -0700 (PDT) From: J A Shamsi Subject: idea To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I have a windows and a unix machine. I want to import the database from windows to unix running mysql. I have an option of importing it as a text file or dbf file. any idea can I import it through mysql or do I have to mount the windows m/c to unix. or id there any possibilty through web sharing? thanks in advnace __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 8:35:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id E16B837B679 for ; Mon, 16 Oct 2000 08:35:28 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9GFZRA07219; Mon, 16 Oct 2000 08:35:27 -0700 (PDT) Date: Mon, 16 Oct 2000 08:35:27 -0700 From: Alfred Perlstein To: J A Shamsi Cc: freebsd-questions@FreeBSD.ORG Subject: Re: idea Message-ID: <20001016083527.S272@fw.wintelcom.net> References: <20001016152807.2391.qmail@web4101.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001016152807.2391.qmail@web4101.mail.yahoo.com>; from jashamsi@yahoo.com on Mon, Oct 16, 2000 at 08:28:07AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * J A Shamsi [001016 08:28] wrote: > Hi > > I have a windows and a unix machine. > I want to import the database from windows > to unix running mysql. > I have an option of importing it as a text file or dbf > file. > > any idea can I import it through mysql or > do I have to mount the windows m/c to unix. > or id there any possibilty through web sharing? You should be able to have windows database output a text file with all your info in it that you can then import into mysql, check your documentation. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:35:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4105.mail.yahoo.com (web4105.mail.yahoo.com [216.115.104.125]) by hub.freebsd.org (Postfix) with SMTP id 224A837B672 for ; Mon, 16 Oct 2000 08:35:55 -0700 (PDT) Message-ID: <20001016153554.12915.qmail@web4105.mail.yahoo.com> Received: from [64.244.44.98] by web4105.mail.yahoo.com; Mon, 16 Oct 2000 08:35:54 PDT Date: Mon, 16 Oct 2000 08:35:54 -0700 (PDT) From: J A Shamsi Subject: need help 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 would like to find all files which are modified/created between some specific dates on my machine if any one has any idea baout that please let me know ASAP thanks __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 8:38:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id BAF6F37B675 for ; Mon, 16 Oct 2000 08:38:41 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9GFcKP07267; Mon, 16 Oct 2000 08:38:20 -0700 (PDT) Date: Mon, 16 Oct 2000 08:38:20 -0700 From: Alfred Perlstein To: J A Shamsi Cc: freebsd-questions@FreeBSD.ORG Subject: Re: need help Message-ID: <20001016083820.T272@fw.wintelcom.net> References: <20001016153554.12915.qmail@web4105.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001016153554.12915.qmail@web4105.mail.yahoo.com>; from jashamsi@yahoo.com on Mon, Oct 16, 2000 at 08:35:54AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * J A Shamsi [001016 08:36] wrote: > Hello > I would like to find all files which are > modified/created > between some specific dates on my machine > > if any one has any idea baout that please > let me know ASAP Please see the -mtime and -ctime options for the find command. something like: find / -mtime 1 -or -ctime 1 should find all files made/touched within the last 24 hours. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:42: 8 2000 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 8590537B675 for ; Mon, 16 Oct 2000 08:42:05 -0700 (PDT) Received: from rac1.wam.umd.edu (IDENT:root@rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id LAA17973; Mon, 16 Oct 2000 11:42:01 -0400 (EDT) Received: from rac1.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id LAA09950; Mon, 16 Oct 2000 11:42:01 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id LAA09945; Mon, 16 Oct 2000 11:42:01 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Mon, 16 Oct 2000 11:42:01 -0400 (EDT) From: Kenneth Wayne Culver To: "Preben B. Hansen" Cc: questions@FreeBSD.ORG Subject: Re: I my video card supported In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That will work, but you need XFree86 4.0.1 or higher... maybe even the cvs version... check out www.xfree86.org for info on obtaining and compiling the cvs version of Xfree86. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Thu, 12 Oct 2000, Preben B. Hansen wrote: > I do not know what to choose when I set up the graphical Xfree86 interface. > I have a "Hercules 3D Prophet II GTS 64MB" > > Best regards, > Preben Hansen > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:45:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from kheops.demo.telefonica.com.pe (kheops.demo.telefonica.com.pe [200.37.84.130]) by hub.freebsd.org (Postfix) with ESMTP id BA3A337B673; Mon, 16 Oct 2000 08:45:18 -0700 (PDT) Received: from elcsa20008 (khephren.demo.telefonica.com.pe [200.37.84.131]) by kheops.demo.telefonica.com.pe (8.11.0/8.11.0) with SMTP id e9GFl7F09248; Mon, 16 Oct 2000 10:47:07 -0500 (PET) Message-ID: <003301c03787$df52c4b0$4d01190a@tp.com.pe> From: "Richard Cotrina" To: Cc: Subject: Winmodem HSP56 Date: Mon, 16 Oct 2000 10:43:45 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, Is the Winmodem PCTel HSP56 supported in FreeBSD ? If not, how easy should be porting the linux module for this winmodem to FreeBSD ? Regards, Richard Cotrina To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:45:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from kheops.demo.telefonica.com.pe (kheops.demo.telefonica.com.pe [200.37.84.130]) by hub.freebsd.org (Postfix) with ESMTP id 6E57537B677; Mon, 16 Oct 2000 08:45:35 -0700 (PDT) Received: from elcsa20008 (khephren.demo.telefonica.com.pe [200.37.84.131]) by kheops.demo.telefonica.com.pe (8.11.0/8.11.0) with SMTP id e9GFlPF28010; Mon, 16 Oct 2000 10:47:25 -0500 (PET) Message-ID: <003401c03787$ea5f4a40$4d01190a@tp.com.pe> From: "Richard Cotrina" To: Cc: Subject: Winmodem HSP56 Date: Mon, 16 Oct 2000 10:43:45 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, Is the Winmodem PCTel HSP56 supported in FreeBSD ? If not, how easy should be porting the linux module for this winmodem to FreeBSD ? Regards, Richard Cotrina To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:48:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id 3538237B66D for ; Mon, 16 Oct 2000 08:48:17 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lCTl-000CPx-00 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 18:47:09 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lCVu-000KaA-00 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 18:49:22 +0300 Date: Mon, 16 Oct 2000 18:49:22 +0300 From: Odhiambo Washington To: freebsd-questions@freebsd.org Subject: Re: need help Message-ID: <20001016184922.C78515@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-questions@freebsd.org References: <20001016153554.12915.qmail@web4105.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001016153554.12915.qmail@web4105.mail.yahoo.com>; from "J A Shamsi" on Mon, Oct 16, 2000 at 08:35:54AM -0700 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 6:39PM up 7 days, 21:27, 1 user, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * J A Shamsi [20001016 18:37]: =>Hello =>I would like to find all files which are =>modified/created between some specific dates on my machine find . -mtime -no_of_days -print (the - sign is for files that were last modified within those no of days) find . -mtime -7 -print [see those files modified within last 7 days] find . -mtime +7 -print [see those which haven't been mod in last 7 days] Better man find -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. It's the same old story; boy meets beer, boy drinks beer... boy gets another beer. -Cheers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 8:50:46 2000 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 35D7937B675; Mon, 16 Oct 2000 08:50:41 -0700 (PDT) Received: from rac5.wam.umd.edu (IDENT:root@rac5.wam.umd.edu [128.8.10.145]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id LAA01262; Mon, 16 Oct 2000 11:49:40 -0400 (EDT) Received: from rac5.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac5.wam.umd.edu (8.9.3/8.9.3) with SMTP id LAA12426; Mon, 16 Oct 2000 11:49:39 -0400 (EDT) Received: from localhost (culverk@localhost) by rac5.wam.umd.edu (8.9.3/8.9.3) with ESMTP id LAA12415; Mon, 16 Oct 2000 11:49:39 -0400 (EDT) X-Authentication-Warning: rac5.wam.umd.edu: culverk owned process doing -bs Date: Mon, 16 Oct 2000 11:49:39 -0400 (EDT) From: Kenneth Wayne Culver To: Richard Cotrina Cc: freebsd-hardware@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: Winmodem HSP56 In-Reply-To: <003401c03787$ea5f4a40$4d01190a@tp.com.pe> 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 winmodems aren't supported in FreeBSD. Porting the module depends on your knowledge of both linux and FreeBSD. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Mon, 16 Oct 2000, Richard Cotrina wrote: > Greetings, > > Is the Winmodem PCTel HSP56 supported in FreeBSD ? > > If not, how easy should be porting the linux module for this winmodem to > FreeBSD ? > > Regards, > > > Richard Cotrina > > > > > > > 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 Oct 16 8:58:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id D07AA37B66F for ; Mon, 16 Oct 2000 08:58:25 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id KAA23969; Mon, 16 Oct 2000 10:59:47 -0500 Message-Id: <200010161559.KAA23969@smtp.intop.net> From: "Charlie Schloemer" To: "'freebsd-questions@freebsd.org'" , "Salmons, Michael" Date: Mon, 16 Oct 2000 11:04:51 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: root is filling up! In-reply-to: <7C63391505B75E449AEABF39791E44E305015AC7@umc-mail02.missouri.edu> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 12 Oct 00, at 15:54, Salmons, Michael wrote: > Does anyone have any tips for keeping root pared down? Being the dangerous > person I am I work in root most of the time (I am doing a lot of tweaking to > get BSD to work with out NT/2k network so I basically eat drink and sleep in > root nowadays) so I have a background image or two for WindowMaker, etc and > it's filling up fast. Can I adjust the size? What sort of files are ok to > trim? (Other than logfiles that is). > > Thanks, > > Michael Salmons Okay, but you might not like this tip. root's home directory is not on /usr, but on /, which is normally big enough. However, if you're running a bunch of X things which like to write their dotfiles to /root, you could easily approach capacity. The solution is don't X as root. If you need root, use 'su -' from an xterm or whatever. That way, you can still have your GUI stuff, but the overhead (dotfiles, etc.) is stored on /usr in the user's home directory you logged in as, not on / like when you login as root. After you transition this stuff to a user account, of course, delete anything you can in /root. root needs little more than shell .rc files in his home directory. I've run into some strangenesses that may or may not apply to you... sometimes when I install FreeBSD, /home is a directory in /, rather than a symlink to /usr/home. Check to see if this applies to you; I have no idea how it happens. Good luck, -Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 9: 4:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dirty.research.bell-labs.com (dirty.research.bell-labs.com [204.178.16.6]) by hub.freebsd.org (Postfix) with SMTP id 1972437B502 for ; Mon, 16 Oct 2000 09:04:02 -0700 (PDT) Received: from grubby.research.bell-labs.com ([135.104.2.9]) by dirty; Mon Oct 16 12:03:59 EDT 2000 Received: from dong-pc.research.bell-labs.com ([135.104.52.213]) by grubby; Mon Oct 16 12:03:58 EDT 2000 Received: from dong-pc.research.bell-labs.com (localhost [127.0.0.1]) by dong-pc.research.bell-labs.com (8.9.3/8.8.8) with ESMTP id MAA17358 for ; Mon, 16 Oct 2000 12:03:58 -0400 (EDT) (envelope-from dong@research.bell-labs.com) Message-Id: <200010161603.MAA17358@dong-pc.research.bell-labs.com> To: questions@freebsd.org Subject: 4.1.1 can't find the root partition in ad0s2 Date: Mon, 16 Oct 2000 12:03:58 -0400 From: Dong Lin Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am installing 4.1.1 on the second partition of a two partition IDE disk, both of which are FreeBSD. After "Commit", the installation program says "can't find the root partition /". I am running 3.3 at the moment on the second partition. The first one is just a regular FreeBSD FS created by newfs after installing 3.3. Here is the output of fdisk wd0: ******* Working on device /dev/rwd0 ******* The data for partition 1 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 63, size 4192902 (2047 Meg), flag 0 beg: cyl 0/ sector 1/ head 1; end: cyl 260/ sector 63/ head 254 The data for partition 2 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 4192965, size 4225095 (2063 Meg), flag 80 (active) beg: cyl 261/ sector 1/ head 0; end: cyl 523/ sector 63/ head 254 Here are the disk labels: /dev/rwd0s1c: # size offset fstype [fsize bsize bps/cpg] c: 4192902 0 unused 0 0 # (Cyl. 0 - 260*) e: 4192902 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 260*) # /dev/rwd0s2c: # size offset fstype [fsize bsize bps/cpg] a: 131072 0 4.2BSD 0 0 0 # (Cyl. 0 - 8*) b: 1048576 131072 swap # (Cyl. 8*- 73*) c: 4225095 0 unused 0 0 # (Cyl. 0 - 262) e: 3045447 1179648 4.2BSD 0 0 0 # (Cyl. 73*- 262*) When installing 4.1.1, all of the following trials was unsuccessful: 1. specify mount points for / /usr on ad0s2a and ad0s2e and toggle newfs flags 2. remove all partitions on ad0s2 and use default allocation for / /usr /var and swap. 3 manually recreate all partitions on ad0s2. The first two approaches got me the "cant find root partition /" error at "commit". The third method caused an error "cant create / in this partition" when specifying mount point /. I am guessing the installtation program gets confused by the first FreeBSD partition ad0s1. It's very likely that if I remove that or make it into a DOS partition things will work. But I would like to keep it as it's a FS mounted by other NFS clients. Can someone tell me how to get around that? Thanks very much. D. Lin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 9:16: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from flatt.cs.colostate.edu (flatt.cs.colostate.edu [129.82.45.245]) by hub.freebsd.org (Postfix) with ESMTP id 3BE4237B66D for ; Mon, 16 Oct 2000 09:15:58 -0700 (PDT) Received: from localhost (denton@localhost) by flatt.cs.colostate.edu (8.9.3/8.9.3) with ESMTP id KAA14745 for ; Mon, 16 Oct 2000 10:15:57 -0600 (MDT) Date: Mon, 16 Oct 2000 10:15:56 -0600 (MDT) From: Jason Denton To: questions@freebsd.org Subject: Problems with PCM device 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 If this is not the right list for this I would appreciate if you would point me in the right direction. I've posted to comp.os.freebsd.misc and not had any luck, likewise with various archive searches. I'm running FreeBSD 4.1.1 upgrade from 4.01 because I had similar problem there and thought the upgrade might help. I have a Trident 4DX sound card from Jaton that I would like to get working. The kernel config file contains the line "device pcm", and the new kernel correctly finds the card at system boot, it gives the following message : pcm0: port 0xd000-0xd0ff mem 0xeffff000-0xefffffff irq 9 at device 14.0 on pci0 I have done "sh MAKEDEV snd0" and this appears to have worked correctly, greating softlinks from dsp to dsp0, ect. When I run mpg123 I get the following error messages : pcm0: play interrupt timeout, channel dead pcm0: play interrupt timeout, channel dead And yes, I do get it twice. Very, very, rarely sound will work. This may be based on wether or not I have previously booted into windows and used the sound card there, but then again it may not. Output from uname -a is : FreeBSD Preacher 4.1.1-STABLE FreeBSD 4.1.1-STABLE #8: Mon Oct 9 20:31:51 MDT 2000 root@Preacher:/usr/src/sys/compile/Preacher i386 Is there some step in sound card setup that I am missing? Do I need to adjust my kernel.config file (I don't seem to have one at present) or add a line in the configuration file for the custom kernel? Or is this a known bug? Is it being worked on or is there someone who can give me enough information about sound in the kernel that I can try writting the patch myself in a short amount of time? Jason Denton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 9:22: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guardian.sftw.com (guardian.sftw.com [209.157.37.25]) by hub.freebsd.org (Postfix) with ESMTP id CC6E237B66D for ; Mon, 16 Oct 2000 09:22:03 -0700 (PDT) Received: from drdeath (DRDEATH.sftw.com [209.157.37.239]) by guardian.sftw.com (8.9.3/8.9.3) with SMTP id JAA45504 for ; Mon, 16 Oct 2000 09:22:03 -0700 (PDT) (envelope-from chrisl@sftw.com) Message-ID: <009001c0378d$5e3f7f70$ef259dd1@sftw.com> From: "Chris Love" To: Subject: Ported app Date: Mon, 16 Oct 2000 09:23:07 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_008D_01C03752.B1C9C410" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_008D_01C03752.B1C9C410 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Greetings.... I was wondering if this may be posted somewhere on your = site.... =20 Thanks, Chris Premier Systems Management Software now available for FreeBSD Enlighten Software Solutions, Inc. is pleased to announce the = availability of EnlightenDSM v3.5 for FreeBSD 4.x. EnlightenDSM extends = its event monitoring and system administration capabilities to FreeBSD = users. With the exponential growth of some of the Internet's busiest sites that = rely on FreeBSD to power their servers, it is imperative to have tools = that will manage these systems collectively on a scaleable basis. = EnlightenDSM, the award-winning product from Enlighten Software = Solutions, Inc. allows individuals to administer and monitor multiple = operating systems including FreeBSD, Linux, Unix and Windows, all from a = single console. Users can manage any number of FreeBSD systems. By = allowing administrators to group machines nto logical pools and = configure and manage them collectively, it increases the overall = availability of servers in the network. By creating single point = administration of users, disks, printers and other resources, = EnlightenDSM makes IT personnel more productive and creates a scalable = IT environment for the business.=20 EnlightenDSM's out-of-box installation and ease of use provides = immediate return on investment. EnlightenDSM offers a cost-effective solution by automating = administrative tasks and monitoring critical operational and performance = characteristics across multiple operating systems from a single console. = This solution confirms Enlighten's commitment to provide a robust system = monitoring and administration solution specifically to meet business = needs. For more information, please visit our web site at www.EnlightenDSM.com = or call us at 650-578-0700. ------=_NextPart_000_008D_01C03752.B1C9C410 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Greetings....  I was wondering if = this may be=20 posted somewhere on your site.... 
 
Thanks,  Chris
 

Premier Systems Management Software now available for=20 FreeBSD

Enlighten Software Solutions, Inc. is pleased to announce the = availability of=20 EnlightenDSM v3.5 for FreeBSD 4.x. EnlightenDSM extends its event = monitoring and=20 system administration capabilities to FreeBSD users.

With the exponential growth of some of the Internet's busiest sites = that rely=20 on FreeBSD to power their servers, it is imperative to have tools that = will=20 manage these systems collectively on a scaleable basis. EnlightenDSM, = the=20 award-winning product from Enlighten Software Solutions, Inc. allows = individuals=20 to administer and monitor multiple operating systems including FreeBSD, = Linux,=20 Unix and Windows, all from a single console. Users can manage any number = of=20 FreeBSD systems. By allowing administrators to group machines nto = logical pools=20 and configure and manage them collectively, it increases the overall=20 availability of servers in the network. By creating single point = administration=20 of users, disks, printers and other resources, EnlightenDSM makes IT = personnel=20 more productive and creates a scalable IT environment for the business. =

EnlightenDSM's out-of-box installation and ease of use provides = immediate=20 return on investment.

EnlightenDSM offers a cost-effective solution by automating = administrative=20 tasks and monitoring critical operational and performance = characteristics across=20 multiple operating systems from a single console. This solution confirms = Enlighten's commitment to provide a robust system monitoring and = administration=20 solution specifically to meet business needs.

For more information, please visit our web site at www.EnlightenDSM.com or call us at=20 650-578-0700.

------=_NextPart_000_008D_01C03752.B1C9C410-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 9:47:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from labna.itmerida.mx (labna.itmerida.mx [200.34.128.2]) by hub.freebsd.org (Postfix) with ESMTP id 9B8D637B66D for ; Mon, 16 Oct 2000 09:47:23 -0700 (PDT) Received: from localhost (xavier@localhost) by labna.itmerida.mx (8.9.3/8.9.3) with SMTP id MAA13336 for ; Mon, 16 Oct 2000 12:02:10 -0500 Date: Mon, 16 Oct 2000 12:02:10 -0500 (CDT) From: "Xavier Alfeirán S." To: questions@FREEBSD.ORG Subject: trouble when doing telnet... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have a question, when I connect via Telnet to the Freebsd server, i got connection normaly, but the login question takes a long time to appear. I checked the resolv.conf file, and it looks fine to me, but as root I receive a lot of messages of error from natd (the server is used to do nat to a LAN). The messages are these: Oct 16 11:35:32 chichen natd[125]: failed to write packet back(Host is down) But everything works fine, just that thing about the login message, that I thought that was because the DNS but i repeat, is well configured. thanks for you comments and answers ------------------------------------------------------------------------------- Xavier alfeiran Sainz la_mente@yahoo.com xavier@labna.itmerida.mx xavier@chichen.itmerida.mx (99) 9468925 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 9:57:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from outmail3.pacificnet.net (outmail3.pacificnet.net [207.171.0.14]) by hub.freebsd.org (Postfix) with ESMTP id 8CA2437B672 for ; Mon, 16 Oct 2000 09:57:55 -0700 (PDT) Received: from usr3-20.pacificnet.net (usr3-20.pacificnet.net [207.171.38.149]) by outmail3.pacificnet.net (8.9.3/8.9.3) with ESMTP id JAA30590; Mon, 16 Oct 2000 09:57:34 -0700 (PDT) Date: Mon, 16 Oct 2000 09:57:52 -0700 (PDT) From: Stephen Krauth X-Sender: stephenk@azazel.inside.killermartian.com To: James Felix Black Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SB Live under 4.1 (I know I know...) 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 15 Oct 2000, James Felix Black wrote: > > So I've scoured the mail archives and it seems there's no definitive > > answer on getting the SoundBlaster Live! to work under 4.1. > > I have a Soundblaster Live! Platinum (the one with the Live Drive > breakout box) and I've noticed significant quality problems with the > audio under 4.1. It works, and hasn't yet hung my machine, but it's > no fun to listen to. > > Is this a known problem? Under Windows 2k, the audio is perfect, or > at least without the significant problems that the pcm driver > exhibits. I've seen messages in the archives claim that it worked fine under 4.0 but became broken like this under 4.1. I'm just hoping a committer will respond saying that it's being worked on... Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10: 6:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from outmail3.pacificnet.net (outmail3.pacificnet.net [207.171.0.14]) by hub.freebsd.org (Postfix) with ESMTP id 3C8F837B66C for ; Mon, 16 Oct 2000 10:06:18 -0700 (PDT) Received: from usr3-20.pacificnet.net (usr3-20.pacificnet.net [207.171.38.149]) by outmail3.pacificnet.net (8.9.3/8.9.3) with ESMTP id KAA28287; Mon, 16 Oct 2000 10:04:55 -0700 (PDT) Date: Mon, 16 Oct 2000 10:05:14 -0700 (PDT) From: Stephen Krauth X-Sender: stephenk@azazel.inside.killermartian.com To: Drew Sanford Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SB Live under 4.1 (I know I know...) In-Reply-To: <39EAF02F.1F875DDE@bellsouth.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Oct 2000, Drew Sanford wrote: > I'm using 4.1, and have a full SBLive (the one with the digital IO > daughter card) that works like a champ. As advertised, I simply included > the proper device driver in the kernel config, and when all was said and > done, it was flawless. Hmm... I don't have the daughter card, though that really shouldn't make a difference. I made sure 'device pci' and 'device pcm' are in the kernel conf, and I've recompiled both with and without the sbc entry. I get the correct response when I cat /dev/sndstat, though dmesg does NOT show the entry that others claim should be there when it works (it does show the Creative emu10ksomething entry though...) Is there anything else I can try? Thanks. > Stephen Krauth wrote: > > > > So I've scoured the mail archives and it seems there's no definitive > > answer on getting the SoundBlaster Live! to work under 4.1. On my machine > > it has many pops and blips when running wavplay or other programs and > > eventually hangs the machine. > > > > So is there any new news? > > > > Or... is there another *PCI* sound card that definately works under > > FreeBSD? (I just bought the SBLive and will take it back if I know > > another card will work). Oh, and I'm not too jazzed about using a closed > > source package just to get sound working (like OSS)... > > > > Steve K. U.F.O. - "For the feeler gauge in you." > > -- > Drew Sanford > lauasanf@bellsouth.net or drew@planetwe.com > Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:20:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id EBA5D37B671 for ; Mon, 16 Oct 2000 10:20:09 -0700 (PDT) Received: (qmail 87991 invoked from network); 16 Oct 2000 17:20:07 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 16 Oct 2000 17:20:07 -0000 Received: (qmail 16890 invoked from network); 16 Oct 2000 17:20:22 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 16 Oct 2000 17:20:22 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.0/8.11.0) id e9GHJtH06794; Mon, 16 Oct 2000 10:19:55 -0700 (PDT) (envelope-from mikko) Date: Mon, 16 Oct 2000 10:19:55 -0700 (PDT) From: Mikko Tyolajarvi Message-Id: <200010161719.e9GHJtH06794@explorer.rsa.com> To: mwm@mired.org Cc: freebsd-questions@freebsd.org Subject: Re: Dynamic DNS server on freebsd? Newsgroups: local.freebsd-questions References: <14825.24053.455214.811803@guru.mired.org> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In local.freebsd-questions you write: >Well, the web site didn't turn up anything. I'd like to set up a >dynamic DNS server on a FreeBSD box. If you're not familiar with the >concept, A machine that boots with a dynamic IP addresses runs a >client whenever the IP address changes, thus causing the DNS server to >change it's records so that the name for that machine now maps to the >new ip address. >Any pointers - especially to software - greatly appreciated. If your clients get their addresses from a DHCP server, and that DHCP server will be running on FreeBSD - use the "isc-dhcp3" port. It supports DDNS updates, as does the BIND version that comes with FreeBSD. For a general client that can send DNS update requests to BIND, see "man nsupdate." The rest is a small matter of configuration :-) $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:25:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id B08A137B672 for ; Mon, 16 Oct 2000 10:25:17 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2J9PX00.7LV; Mon, 16 Oct 2000 12:25:09 -0500 From: Jeremy Vandenhouten To: Jamie Bowden , questions@freebsd.org Message-ID: <13b9d613840d.13840d13b9d6@marquette.edu> Date: Mon, 16 Oct 2000 12:25:09 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: K7V problem? <- Make sure DIMM is in slot 1 X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I know I've chimed in on this topic before... Jamie, Have you tried making the boot floppies to load 4.1.1-R? Since it seems that setup from floppies allowed both NT and 98 to setup properly. Also, just for the purpose of setup you could swap out the LS-120 temporarily for a normal floppy, then after you have FreeBSD on the harddrive(s) you could reconfigure your kernel and replace the floppy with the LS-120. Just a thought... ----- Original Message ----- From: Jamie Bowden Date: Monday, October 16, 2000 12:00 pm Subject: Re: K7V problem? <- Make sure DIMM is in slot 1 > On Mon, 16 Oct 2000, Jin Guojun wrote: > > :> ?NT's boot cd worked. Win98's boot cd failed in the exact same > manner:> ?FreeBSD's does, so I used a Win98 install floppy. > Niether the FreeBSD > :> ?4.1.1-R cdrom, nor a boot floppy from that release will boot. > Yes, I > :> ?tested them on another machine to make sure they work. > : > :So, it is not FreeBSD only issue. > > Yes, it's specific to FreeBSD. > > :> ?As I stated in my initial post, all drives except the LS-120 > are SCSI. > : > :I am not sure that FreeBSD CD can boot from SCSI CD drives. It > may boot > :from IDE drives only (not positive; I know 2.2.8 CD boots on IDE > only;:or perhaps, it is BIOS related issue.) > > BIOS related. I've installed FreeBSD 2.2.8 from SCSI cdrom using > bootableCD with no problems in the past. > > :And little confusion here, all drives are SCSI except the LS-120 ??? > :I know Sun uses SCSI floppy drives, but I doubt PC users use SCSI > floppy.:Just want to make things clear. I am not sure FreeBSD will > boot from a SCSI > :floppy either. If you did have a SCSI floppy drive and a SCSI CD > drive, then > :FreeBSD probably would not boot from either drive. > > I installed FreeBSD from my SCSI CDROM drive on my old FIC PA-2007 > with no > problem. A bootable CD is a bootable CD. > > While there is such a thing as a SCSI floppy drive, I don't have > one. I > don't have a floppy drive at all. I have the LS-120, which is IDE > (if I > could have found a SCSI version, I'd have it instead). The LS-120 > usesstandard 3.5" floppy disks or the 120MB UHD floppies. It > replaces a > traditional floppy drive. > > Jamie Bowden > > -- > "It was half way to Rivendell when the drugs began to take hold" > Hunter S Tolkien "Fear and Loathing in Barad Dur" > Iain Bowen > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" 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 Oct 16 10:26:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 2CD0637B66E for ; Mon, 16 Oct 2000 10:26:42 -0700 (PDT) Received: from hyperion.informatik.rwth-aachen.de (hyperion.Informatik.RWTH-Aachen.DE [137.226.112.212]) by nets5.rz.rwth-aachen.de (8.10.1/8.10.1/7) with ESMTP id e9GHQ8m04432; Mon, 16 Oct 2000 19:26:08 +0200 (MET DST) Received: from agamemnon.informatik.rwth-aachen.de (agamemnon.Informatik.RWTH-Aachen.DE [137.226.194.74]) by hyperion.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1/2) with ESMTP id TAA27247; Mon, 16 Oct 2000 19:26:07 +0200 (MET DST) Received: (from stolz@localhost) by agamemnon.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1-gb-2) id TAA12735; Mon, 16 Oct 2000 19:26:06 +0200 (MET DST) Date: Mon, 16 Oct 2000 19:26:06 +0200 From: Volker Stolz To: =?iso-8859-1?Q?Xavier_Alfeir=E1n_S=2E?= Cc: questions@FreeBSD.ORG Subject: Re: trouble when doing telnet... Message-ID: <20001016192606.A12726@agamemnon.informatik.rwth-aachen.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: ; from xavier@labna.itmerida.mx on Mon, Oct 16, 2000 at 12:02:10PM -0500 Organization: Chair for CS II, Anomalous Programming Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Oct 16, 2000 at 12:02:10PM -0500, Xavier Alfeirán S. wrote: > Hi, I have a question, when I connect via Telnet to the Freebsd server, > i got connection normaly, but the login question takes a long time to > appear. > I checked the resolv.conf file, and it looks fine to me, but as root I > receive a lot of messages of error from natd (the server is used to do > nat to a LAN). The messages are these: > Oct 16 11:35:32 chichen natd[125]: failed to write packet back(Host is > down) > But everything works fine, just that thing about the login message, that > I thought that was because the DNS but i repeat, is well configured. Nope, seems youīve really got a problem doing reverse lookups. Let me guess: When youīre finally connected and do a "who" you only get the IP from the host youīre connected from. Can you give the contents of your resolv.conf and netstat -rn, together with any natd-related stuff youīre doing? -- Volker Stolz * stolz@i2.informatik.rwth-aachen.de * PGP + S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:29: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megamail.megared.com.mx [200.52.207.52]) by hub.freebsd.org (Postfix) with ESMTP id 14E9637B66E for ; Mon, 16 Oct 2000 10:29:01 -0700 (PDT) Received: from localhost (lcroker@localhost) by unix.megared.net.mx (8.11.0/8.11.0) with ESMTP id e9GHPNk51643 for ; Mon, 16 Oct 2000 12:25:23 -0500 (CDT) (envelope-from lcroker@unix.megared.net.mx) Date: Mon, 16 Oct 2000 12:25:23 -0500 (CDT) From: Luis Croker To: freebsd-questions@FreeBSD.ORG Subject: mount a Cd ! 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 !!! How I can to mount a Cdrom in FreeBsd 4.1 ??? I have this line in /etc/fstab.... # Device Mountpoint FStype Options Dump pass /dev/acd0 /cdrom cd9660 ro,noauto 0 0 When the box boots... the acd0 device knows the cdrom reader... What's the command to mount the cdrom ?? Greetings.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:30:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from implode.root.com (root.com [209.102.106.178]) by hub.freebsd.org (Postfix) with ESMTP id 8F85A37B672 for ; Mon, 16 Oct 2000 10:30:44 -0700 (PDT) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id KAA17339; Mon, 16 Oct 2000 10:31:10 -0700 (PDT) Message-Id: <200010161731.KAA17339@implode.root.com> To: David Kanter Cc: FreeBSD questions Subject: Re: FTP is stalling In-reply-to: Your message of "Sun, 15 Oct 2000 22:59:07 CDT." <20001015225907.A3029@freebsd.mindspring.com> From: David Greenman Reply-To: dg@root.com Date: Mon, 16 Oct 2000 10:31:10 -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >I'm trying to download the teTeX files but the download continually stalls >on the teTeX-texmf tarball at about 80 percent to 85 percent complete. This >happens no matter what ftp site I got to. > >I'm using the generic ftp. > >Any ideas? Sounds like a network problem that is fairly close to you topology-wise. Marginal circuits are often sensitive to certain bit patterns. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.com Pave the road of life with opportunities. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:34: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dynamictrade.com (node-d8e93fd2.powerinter.net [216.233.63.210]) by hub.freebsd.org (Postfix) with SMTP id 7A36F37B670 for ; Mon, 16 Oct 2000 10:33:53 -0700 (PDT) Received: (qmail 17456 invoked from network); 16 Oct 2000 17:33:47 -0000 Received: from tyr.internal.3.168.192.in-addr.arpa (HELO dynamictrade.com) (192.168.3.213) by mailhost.internal with SMTP; 16 Oct 2000 17:33:47 -0000 Message-ID: <39EB3C88.3681911F@dynamictrade.com> Date: Mon, 16 Oct 2000 12:36:08 -0500 From: john b p melesky X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Luis Croker Cc: freebsd-questions@FreeBSD.ORG Subject: Re: mount a Cd ! References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > What's the command to mount the cdrom ?? From root's shell, try mount /cdrom That should work. -johnnnnnnn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:35:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 65C1E37B670 for ; Mon, 16 Oct 2000 10:35:23 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13lEAU-0001V7-00 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 18:35:22 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id SAA01856 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 18:35:21 +0100 (BST) (envelope-from jcm) Date: Mon, 16 Oct 2000 18:35:21 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: make configuring for ports Message-ID: <20001016183521.A1770@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am typing this error message from memory, so please let me know if it doesn't make sense. :) I cvsupped after the new ports structure was committed. I tried to make 'play' and was told my ports.mk file (or something like that) was outdated, and that I needed to update it. What does this mean? How do I fix it? What manpage would be appropriate? jcm -- "I drank WHAT ?!" - Socrates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:37:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ndcx.tor.cbc.ca (tormail.cbc.ca [159.33.2.49]) by hub.freebsd.org (Postfix) with ESMTP id 3EAD737B66F for ; Mon, 16 Oct 2000 10:37:21 -0700 (PDT) Received: from cbc.ca (groupgwy.tor.cbc.ca [1.130.102.29]) by ndcx.tor.cbc.ca (8.9.3/8.9.3) with SMTP id NAA29554 for ; Mon, 16 Oct 2000 13:37:10 -0400 (EDT) Received: from CBCSRC-Message_Server by cbc.ca with Novell_GroupWise; Mon, 16 Oct 2000 13:37:10 -0400 Message-Id: X-Mailer: Novell GroupWise Internet Agent 5.5.3.1 Date: Mon, 16 Oct 2000 13:36:37 -0400 From: "Pierre Robidoux" To: Subject: Choice of OS Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, At BSDi web site, they offer 3 OS. (BSD/OS, FreeBSD and Slackware/Linux). What is the diff=E9rence ? Is there a comparaison chart ? Why paying the price of BSD/OS if FreeBSD is the same ? (I thing that there is a difference ... but ... what is that difference?) Why should I buy FreeBDI instead of a Linux distribution ? Thanks, Pierre Robidoux To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:39:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [209.0.55.68]) by hub.freebsd.org (Postfix) with ESMTP id 1A33537B66F; Mon, 16 Oct 2000 10:39:24 -0700 (PDT) Received: by moo.sysabend.org (Postfix, from userid 1004) id BB194755D; Mon, 16 Oct 2000 10:39:30 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id B83A31D89; Mon, 16 Oct 2000 10:39:30 -0700 (PDT) Date: Mon, 16 Oct 2000 10:39:30 -0700 (PDT) From: Jamie Bowden To: Jeremy Vandenhouten Cc: questions@freebsd.org, hardware@FreeBSD.org Subject: Re: K7V problem? <- Make sure DIMM is in slot 1 In-Reply-To: <13b9d613840d.13840d13b9d6@marquette.edu> Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. 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 Oct 2000, Jeremy Vandenhouten wrote: :I know I've chimed in on this topic before... : :Jamie, : :Have you tried making the boot floppies to load 4.1.1-R? Since it seems :that setup from floppies allowed both NT and 98 to setup properly. :Also, just for the purpose of setup you could swap out the LS-120 :temporarily for a normal floppy, then after you have FreeBSD on the :harddrive(s) you could reconfigure your kernel and replace the floppy :with the LS-120. Yes, the boot floppies hang as well, though not hard like the CD. I don't have a spare floppy laying around, but I may try faking it by telling the bios I have one installed, forcing it to a:, and turning boot cdrom back on in the scsi controller (adaptec 2940 uw, sets the cdrom to a: when bootable disk is in the drive). Even if I manage to get freebsd on this machine, and my hopes are dimming, I'm still not sure I'll be able to run X. Anyone know if X supports the GeForce2 GTS for just 2d accelleration? I'm not about to run linux for a video card. I started life on the command line, and while it's not the preferred method, I can go back. At least my laptop runs FreeBSD fine. I don't know what I'd do if I couldn't run it anywhere. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:48:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from labna.itmerida.mx (labna.itmerida.mx [200.34.128.2]) by hub.freebsd.org (Postfix) with ESMTP id B36D637B503 for ; Mon, 16 Oct 2000 10:48:32 -0700 (PDT) Received: from localhost (xavier@localhost) by labna.itmerida.mx (8.9.3/8.9.3) with SMTP id NAA11502; Mon, 16 Oct 2000 13:03:15 -0500 Date: Mon, 16 Oct 2000 13:03:15 -0500 (CDT) From: "Xavier Alfeirán S." To: Volker Stolz Cc: questions@FreeBSD.ORG Subject: Re: trouble when doing telnet... In-Reply-To: <20001016192606.A12726@agamemnon.informatik.rwth-aachen.de> Message-ID: 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 my resolv.conf files goes like this: bash-2.03$ cat resolv.conf domain itmerida.mx nameserver 200.34.128.1 nameserver 200.34.128.2 nameserver 127.0.0.1 =20 the netstat -rn output: bash-2.03$ cat net Routing tables =20 Internet: Destination Gateway Flags Netif Expire default 200.34.128.62 UGSc fxp0 127.0.0.1 127.0.0.1 UH lo0 192.168 link#2 UC vx0 =3D> 192.168.0.5 0:a0:24:54:4f:2c UHLW vx0 701 192.168.0.7 0:c0:df:42:88:69 UHLW vx0 588 192.168.0.11 0:6:29:85:18:8d UHLW vx0 1045 192.168.0.12 0:d0:9:16:75:0 UHLW vx0 415 192.168.0.13 0:e0:7d:2:59:7 UHLW vx0 837 192.168.0.15 52:54:0:e7:75:c5 UHLW vx0 1027 192.168.0.17 0:40:33:e0:21:de UHLW vx0 995 192.168.0.22 0:6:29:f9:6d:eb UHLW vx0 537 192.168.0.23 0:d0:9:1c:20:b8 UHLW vx0 828 192.168.0.26 52:54:4c:4:ce:b8 UHLW vx0 1098 192.168.0.29 0:d0:9:17:38:b6 UHLW vx0 787 192.168.0.30 0:a0:24:54:49:c3 UHLW vx0 328 192.168.0.31 0:50:da:60:a4:a7 UHLW vx0 396 192.168.0.34 0:6:29:85:95:49 UHLW vx0 769 192.168.0.36 0:6:29:f9:72:b9 UHLW vx0 533 192.168.0.37 0:40:33:e0:1f:b3 UHLW vx0 605 192.168.0.40 0:4:ac:66:d6:cb UHLW vx0 412 192.168.0.44 0:a0:24:54:4f:6 UHLW vx0 658 192.168.0.52 0:a0:24:54:39:cd UHLW vx0 629 192.168.0.53 0:a0:24:59:f3:7f UHLW vx0 766 192.168.0.56 0:a0:24:54:4f:83 UHLW vx0 897 192.168.0.57 0:a0:24:5b:29:9 UHLW vx0 654 192.168.0.58 0:a0:24:5b:2c:96 UHLW vx0 537 192.168.0.59 0:a0:24:59:e8:e2 UHLW vx0 521 192.168.0.61 0:a0:24:54:4f:6c UHLW vx0 570 192.168.0.62 0:48:54:3a:b9:12 UHLW vx0 524 192.168.0.63 0:a0:24:5b:2b:fe UHLW vx0 486 192.168.0.65 0:0:21:44:dc:7b UHLW vx0 1100 192.168.0.68 0:a0:24:5b:23:5f UHLW vx0 883 192.168.0.69 0:a0:24:54:5c:32 UHLW vx0 463 192.168.0.71 0:50:da:60:93:82 UHLW vx0 386 192.168.0.72 0:a0:24:5b:3f:fe UHLW vx0 569 192.168.0.76 0:d0:9:4c:ee:78 UHLW vx0 627 192.168.0.77 0:6:29:5:a9:6e UHLW vx0 995 192.168.0.78 0:d0:9:17:2c:ea UHLW vx0 1151 192.168.0.79 0:4:ac:98:60:f1 UHLW vx0 1121 192.168.0.80 0:4:ac:98:41:16 UHLW vx0 535 192.168.0.81 0:d0:9:16:7b:bd UHLW vx0 1161 192.168.0.88 0:d0:9:17:ca:ed UHLW vx0 1042 192.168.0.89 0:a0:24:54:4f:75 UHLW vx0 542 192.168.0.91 0:a0:24:5b:2b:90 UHLW vx0 578 192.168.0.93 0:a0:24:54:5b:fb UHLW vx0 473 192.168.0.94 0:d0:9:16:71:67 UHLW vx0 1130 192.168.0.96 0:e0:7d:72:d7:45 UHLW vx0 1147 192.168.0.124 0:d0:9:17:38:b5 UHLW vx0 1098 192.168.0.125 0:a0:24:5b:2c:76 UHLW vx0 330 192.168.0.127 0:80:ad:7c:48:9 UHLW vx0 446 192.168.0.131 0:a0:24:54:49:bd UHLW vx0 816 192.168.0.132 0:a0:24:59:f2:d2 UHLW vx0 539 192.168.0.133 0:10:5a:14:3e:69 UHLW vx0 562 192.168.0.134 0:c0:df:47:39:49 UHLW vx0 781 192.168.0.135 0:a0:24:59:f2:c4 UHLW vx0 1059 192.168.0.136 0:a0:24:54:36:37 UHLW vx0 1156 192.168.0.138 0:a0:24:54:4a:89 UHLW vx0 641 192.168.0.139 0:a0:24:54:4a:78 UHLW vx0 469 192.168.0.141 0:6:29:5:ba:16 UHLW vx0 41 192.168.0.142 0:40:33:a0:98:6c UHLW vx0 252 192.168.0.144 0:20:18:70:4c:70 UHLW vx0 962 192.168.0.149 0:d0:9:17:c7:85 UHLW vx0 465 192.168.0.152 0:e0:7d:72:d7:47 UHLW vx0 1083 192.168.0.153 0:c0:df:42:82:a4 UHLW vx0 752 192.168.0.154 0:a0:24:5b:3f:fa UHLW vx0 1182 192.168.0.157 0:a0:24:54:49:f1 UHLW vx0 1110 192.168.0.159 0:6:29:5:85:cd UHLW vx0 1130 192.168.0.161 0:40:33:e0:3c:ed UHLW vx0 1002 192.168.0.163 0:d0:9:17:30:7 UHLW vx0 965 192.168.0.164 52:54:0:e9:13:e4 UHLW vx0 700 192.168.0.165 0:d0:9:23:e3:de UHLW vx0 1112 192.168.0.166 0:c0:df:46:a1:4b UHLW vx0 1172 192.168.0.167 0:a0:24:54:4a:7d UHLW vx0 848 192.168.0.168 0:a0:24:59:ef:e9 UHLW vx0 862 192.168.0.169 0:4:ac:66:dc:4d UHLW vx0 1173 192.168.0.171 0:a0:24:54:4a:7b UHLW vx0 1101 192.168.0.175 0:6:29:5:a8:d1 UHLW vx0 534 192.168.0.176 0:a0:24:54:49:c5 UHLW vx0 1095 192.168.0.181 0:a0:24:54:4f:2b UHLW vx0 1131 192.168.0.183 0:a0:24:22:fd:5a UHLW vx0 883 192.168.0.184 0:0:21:c1:f8:98 UHLW vx0 1156 192.168.0.186 0:a0:24:5b:40:20 UHLW vx0 495 192.168.0.189 0:e0:7d:70:21:1e UHLW vx0 1008 192.168.0.192 0:a0:24:5b:2c:bb UHLW vx0 852 192.168.0.199 0:a0:24:5b:2c:7d UHLW vx0 836 192.168.0.200 0:a0:24:59:ef:dc UHLW vx0 1192 192.168.0.201 0:6:29:5:a8:a4 UHLW vx0 841 192.168.0.202 0:0:21:44:dd:2d UHLW vx0 667 192.168.0.206 0:c0:df:46:9c:ad UHLW vx0 1116 192.168.0.207 0:a0:24:59:e8:f0 UHLW vx0 995 192.168.0.209 0:6:29:85:95:f4 UHLW vx0 669 192.168.0.213 0:a0:24:54:4a:72 UHLW vx0 984 192.168.0.216 0:a0:24:54:4a:80 UHLW vx0 990 192.168.0.218 0:a0:24:54:69:fb UHLW vx0 969 192.168.0.224 0:4:ac:e8:4:5 UHLW vx0 730 192.168.0.251 link#2 UHLW vx0 =3D> 192.168.0.252 0:60:97:a5:8d:fe UHLW vx0 1146 192.168.1 link#2 UC vx0 =3D> 192.168.1.10 0:a0:c9:b1:2e:c6 UHLW vx0 343 192.168.1.36 0:6:29:5:ba:21 UHLW vx0 863 192.168.1.38 0:6:29:85:8f:81 UHLW vx0 1001 192.168.1.39 0:80:ad:7b:81:f4 UHLW vx0 1037 192.168.1.206 0:6:29:5:ba:0 UHLW vx0 1134 192.168.1.210 0:d0:9:17:37:1c UHLW vx0 930 192.168.1.242 0:d0:9:17:31:a8 UHLW vx0 1047 192.168.1.246 0:10:5a:16:55:d9 UHLW vx0 781 192.168.2 link#2 UC vx0 =3D> 192.168.2.13 0:6:29:5:bd:a9 UHLW vx0 763 192.168.2.32 0:60:97:22:30:81 UHLW vx0 189 192.168.2.35 0:40:33:a0:99:e UHLW vx0 202 200.34.128/26 link#1 UC fxp0 =3D> 200.34.128.1 8:0:20:82:f6:ae UHLW fxp0 1190 200.34.128.2 8:0:5a:fc:94:db UHLW fxp0 944 200.34.128.7 0:4:ac:e6:1f:bf UHLW lo0 200.34.128.11 0:4:ac:e8:8:ed UHLW fxp0 1090 200.34.128.12 0:a0:24:5b:39:c2 UHLW fxp0 955 200.34.128.30 0:10:30:0:8:49 UHLW fxp0 655 200.34.128.31 0:10:30:0:8:35 UHLW fxp0 655 200.34.128.50 0:c0:49:12:ee:8a UHLW fxp0 983 200.34.128.62 0:b0:4a:9c:74:0 UHLW fxp0 984 =20 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UH lo0 fe80::%fxp0/64 link#1 UC fxp0 fe80::%vx0/64 link#2 UC vx0 fe80::%lo0/64 fe80::1%lo0 Uc lo0 fe80::%gif0/64 fe80::204:acff:fee6:1fbf%gif0 Uc gif0 fe80::204:acff:fee6:1fbf%gif0 ::1 UH lo0 fe80::%gif1/64 fe80::204:acff:fee6:1fbf%gif1 Uc gif1 fe80::204:acff:fee6:1fbf%gif1 ::1 UH lo0 fe80::%gif2/64 fe80::204:acff:fee6:1fbf%gif2 Uc gif2 fe80::204:acff:fee6:1fbf%gif2 ::1 UH lo0 fe80::%gif3/64 fe80::204:acff:fee6:1fbf%gif3 Uc gif3 fe80::204:acff:fee6:1fbf%gif3 ::1 UH lo0 fe80::%stf0/64 fe80::204:acff:fee6:1fbf%stf0 Uc stf0 fe80::204:acff:fee6:1fbf%stf0 ::1 UH lo0 ff01::/32 ::1 U lo0 ff02::%fxp0/32 link#1 UC fxp0 ff02::%vx0/32 link#2 UC vx0 ff02::%lo0/32 fe80::1%lo0 UC lo0 ff02::%gif0/32 fe80::204:acff:fee6:1fbf%gif0 UC gif0 ff02::%gif1/32 fe80::204:acff:fee6:1fbf%gif1 UC gif1 ff02::%gif2/32 fe80::204:acff:fee6:1fbf%gif2 UC gif2 ff02::%gif3/32 fe80::204:acff:fee6:1fbf%gif3 UC gif3 ff02::%stf0/32 fe80::204:acff:fee6:1fbf%stf0 UC stf0 the natd.conf file: bash-2.03$ cat natd.conf interface fxp0 use_sockets yes same_ports yes #dynamic yes=20 and the rc.conf file: ifconfig_fxp0=3D"inet 200.34.128.7 netmask 255.255.255.192" hostname=3D"chichen.itmerida.mx" linux_enable=3D"YES" moused_enable=3D"YES" saver=3D"fire" keymap=3D"spanish.iso.acc" defaultrouter=3D"200.34.128.62" ifconfig_vx0=3D"inet 192.168.0.254 netmask 255.255.255.0" #defaultrouter=3D"192.168.0.1" # -- sysinstall generated deltas -- # check_quotas=3D"NO" keymap=3D"spanish.iso" firewall_enable=3D"YES" firewall_type=3D"open" gateway_enable=3D"YES" natd_enable=3D"YES" natd_interface=3D"fxp0" natd_flags=3D"-f /etc/natd.conf" #ifconfig_vx0=3D"DHCP" I hope all of this helps ---------------------------------------------------------------------------= ---- Xavier alfeiran Sainz la_mente@yahoo.com xavier@labna.itmerida.mx xavier@chichen.itmerida.mx (99) 9468925 On Mon, 16 Oct 2000, Volker Stolz wrote: > On Mon, Oct 16, 2000 at 12:02:10PM -0500, Xavier Alfeir=E1n S. wrote: > > Hi, I have a question, when I connect via Telnet to the Freebsd server, > > i got connection normaly, but the login question takes a long time to > > appear.=20 > > I checked the resolv.conf file, and it looks fine to me, but as root I > > receive a lot of messages of error from natd (the server is used to do > > nat to a LAN). The messages are these: > > Oct 16 11:35:32 chichen natd[125]: failed to write packet back(Host is= =20 > > down) > > But everything works fine, just that thing about the login message, th= at > > I thought that was because the DNS but i repeat, is well configured. >=20 > Nope, seems you=B4ve really got a problem doing reverse lookups. Let > me guess: When you=B4re finally connected and do a "who" you only get the > IP from the host you=B4re connected from. Can you give the contents of > your resolv.conf and netstat -rn, together with any natd-related stuff > you=B4re doing? > --=20 > Volker Stolz * stolz@i2.informatik.rwth-aachen.de * PGP + S/MIME >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 10:59: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sigbus.com (sigbus.com [207.211.10.110]) by hub.freebsd.org (Postfix) with ESMTP id 4873E37B66F for ; Mon, 16 Oct 2000 10:59:02 -0700 (PDT) Received: (from henrich@localhost) by sigbus.com (8.9.3/8.9.3) id KAA21171; Mon, 16 Oct 2000 10:58:41 -0700 (PDT) (envelope-from henrich) Date: Mon, 16 Oct 2000 10:58:40 -0700 From: Charles Henrich To: Greg Lehey Cc: freebsd-questions@FreeBSD.org Subject: Re: Vinum/Fsck 1TB filesystem Message-ID: <20001016105840.C20902@sigbus.com> References: <20001012113054.A9727@sigbus.com> <20001013131107.M2593@wantadilla.lemis.com> <20001013092656.B12492@sigbus.com> <20001014133853.D5353@sydney.worldwide.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <20001014133853.D5353@sydney.worldwide.lemis.com> X-Operating-System: FreeBSD 3.3-RELEASE X-PGP-Fingerprint: 1024/F7 FD C7 3A F5 6A 23 BF 76 C4 B8 C9 6E 41 A4 4F Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Well right now there is data on the drives. Setting it up the first time > > through went flawlessly. I used vinum -stripe to stripe across the two > > 512GB drives, the newfs'd the bad boy and mounted it up. We used it for > > several hours when during the creation of a file write the system puked > > badly. > > I'd like more information on "puked badly". If you had a panic, I'd like to > see the dump. I'm also curious about your 512 GB drives; that's much larger > than any real disk I know of. Are these real disks or a RAID controller? These are external raid units.. > > I finally remembered fsck -b (duh), and it fsck'd off the alternate block > > just fine, corrected a single file error. When I went and touched the > > same file however, the same error conditions occured, and another reboot. > > Panic? No, just the hang again. FreeBSD never panic'd. That filesystem went into a hung state. > Yes, I'd agree. As I said, you're pushing the limit, and you may just be > the first person to ever try to use a 1 TB file system. I was hoping to put together a 2TB system, didnt realize FreeBSD didnt support that as of yet. Is anyone working on a journaled file system for FreeBSD? (Fsck'ing 1TB takes a looong time :) -Crh Charles Henrich Manex Visual Effects henrich@sigbus.com http://www.sigbus.com/~henrich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 11:27: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 6C5E737B503 for ; Mon, 16 Oct 2000 11:26:58 -0700 (PDT) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.9.3/8.9.3) with ESMTP id LAA48060; Mon, 16 Oct 2000 11:26:54 -0700 (PDT) Message-ID: <39EB4BBC.B84A8A9D@transbay.net> Date: Mon, 16 Oct 2000 11:41:00 -0700 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Charlie Schloemer Cc: "'freebsd-questions@freebsd.org'" Subject: Re: root is filling up! References: <200010161559.KAA23969@smtp.intop.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Make a symbolic link from /root to the user space for .netscape and nsmail and nsnews, and .gimp* and anything else that eats space. Make / a big partition. Make something other than /root root's home directory (having /root the home dir means you have root's home dir even if /usr and /var aren't mounted, but if /var and /usr aren't mounted you're probably doing maintenance anyway and should have what you need in other / directories - /bin, /sbin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 11:27:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 9C1DA37B503 for ; Mon, 16 Oct 2000 11:27:33 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2JCLQ00.VNU; Mon, 16 Oct 2000 13:27:26 -0500 From: Jeremy Vandenhouten To: Jamie Bowden , questions@freebsd.org Message-ID: <14ae9414a3bd.14a3bd14ae94@marquette.edu> Date: Mon, 16 Oct 2000 13:27:26 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: K7V problem? <- Make sure DIMM is in slot 1 X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Yes, the boot floppies hang as well, though not hard like the CD. > I don't > have a spare floppy laying around, but I may try faking it by > telling the > bios I have one installed, forcing it to a:, and turning boot > cdrom back > on in the scsi controller (adaptec 2940 uw, sets the cdrom to a: when > bootable disk is in the drive). Interesting, I've been able to do it off a 2940UW with a Plextor Ultraplex as the boot drive, booting right off the cd to setup. This just got me to thinking... Do you have any external devices? If so, disconnect those and try loading. Also what type of termination are you using on your chains? Also I would try fooling around a little in the bios of your adaptec card, or perhaps flashing it to the latest ROM version. > > Even if I manage to get freebsd on this machine, and my hopes are > dimming,I'm still not sure I'll be able to run X. Anyone know if > X supports the > GeForce2 GTS for just 2d accelleration? I'm not about to run > linux for a > video card. I started life on the command line, and while it's > not the > preferred method, I can go back. > Someone on here posted that XFree86 4 supported a Hercules Prophet GTS which is a Geforce 2. Since they both have the same nVidia chipset at heart, you should be able to. Hope that helps or tricking it with the floppy drive does... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 11:42:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [209.0.55.68]) by hub.freebsd.org (Postfix) with ESMTP id 1F70337B66F for ; Mon, 16 Oct 2000 11:42:08 -0700 (PDT) Received: by moo.sysabend.org (Postfix, from userid 1004) id DFD42755E; Mon, 16 Oct 2000 11:42:18 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id DC4821D89; Mon, 16 Oct 2000 11:42:18 -0700 (PDT) Date: Mon, 16 Oct 2000 11:42:18 -0700 (PDT) From: Jamie Bowden To: Jeremy Vandenhouten Cc: questions@freebsd.org Subject: Re: K7V problem? <- Make sure DIMM is in slot 1 In-Reply-To: <14ae9414a3bd.14a3bd14ae94@marquette.edu> Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. 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 Oct 2000, Jeremy Vandenhouten wrote: : :> Yes, the boot floppies hang as well, though not hard like the CD. :> I don't :> have a spare floppy laying around, but I may try faking it by :> telling the :> bios I have one installed, forcing it to a:, and turning boot :> cdrom back :> on in the scsi controller (adaptec 2940 uw, sets the cdrom to a: when :> bootable disk is in the drive). :Interesting, I've been able to do it off a 2940UW with a Plextor :Ultraplex as the boot drive, booting right off the cd to setup. I used this very same scsi controller (bios v1.34.3) on my old FIC PA-2007 mobo to boot and install FreeBSD from CDROM on my UtraPlex as well. This motherboard appears to be slightly odd anyway. My Pure3d2 works fine with the 3dfx reference voodoo2 driver, but the Canopus driver hangs when it tries to initialize the TV-out on the card in NT or 98. I'm really starting to wonder what the hell Asus did for QA on the design. :This just got me to thinking... Do you have any external devices? If :so, disconnect those and try loading. Also what type of termination are :you using on your chains? Termination on both ends is on the device. On the wide interface I have an IBM 4.3G UW SCSI drive, with on board termination. On the narrow interface I have an UltraPlex, an UltraPlex 40max, a PlexWriter 8/20, a Seagate 4G USCSI HDD, and a 4mm DDS-2 tape drive. Termination is via the UltraPlex, which is end of chain, using on board termination. No external devices. :Also I would try fooling around a little in the bios of your adaptec :card, or perhaps flashing it to the latest ROM version. Unless Adaptec has a recent update, 1.34.3 was the latest last time I checked. :> Even if I manage to get freebsd on this machine, and my hopes are :> dimming,I'm still not sure I'll be able to run X. Anyone know if :> X supports the :> GeForce2 GTS for just 2d accelleration? I'm not about to run :> linux for a :> video card. I started life on the command line, and while it's :> not the :> preferred method, I can go back. :Someone on here posted that XFree86 4 supported a Hercules Prophet GTS :which is a Geforce 2. Since they both have the same nVidia chipset at :heart, you should be able to. Good. I'm not concerned with 3d accelleration, but I would like to have X run at 1280x1024x32. :Hope that helps or tricking it with the floppy drive does... I'm still curious about its inability to boot from LS-120. The readme in the floppies directory indicates that booting from LS-120 shouldn't be an issue. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12: 1:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lerami.lerctr.org (lerami.lerctr.org [207.158.72.11]) by hub.freebsd.org (Postfix) with ESMTP id 8D60937B670 for ; Mon, 16 Oct 2000 12:01:32 -0700 (PDT) Received: (from ler@localhost) by lerami.lerctr.org (8.11.1/8.11.1/20000901) id e9GJ1Pw10757 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 14:01:25 -0500 (CDT) (envelope-from ler) Date: Mon, 16 Oct 2000 14:01:24 -0500 From: Larry Rosenman To: freebsd-questions@freebsd.org Subject: FTP Passive using the Standard Daemon Message-ID: <20001016140123.A10483@lerami.lerctr.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline User-Agent: Mutt/1.3.10i X-Mailer: Mutt http://www.mutt.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable How can I limit the standard FTPD in 4.1.1-STABLE (today) to only use a VERY limited number of ports for passive FTP? I'd like to limit it to <100 ports TOTAL.=20 Thanks! PS: I know I can do it with the WU-FTPD, but would rather stick=20 with the standard one.=20 --=20 Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 (voice) Internet: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (UnixWare) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjnrUIMACgkQy80bZ0brkl9KcwCfZoMfP3e8W55kLivtKnq/m/P9 8csAn3AI4kSfpQYSGqSM09Zp+vHaluSg =m8b4 -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12: 9:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-103-58-122.dsl.lsan03.pacbell.net (adsl-216-103-58-122.dsl.lsan03.pacbell.net [216.103.58.122]) by hub.freebsd.org (Postfix) with ESMTP id B69EF37B66E for ; Mon, 16 Oct 2000 12:09:28 -0700 (PDT) Received: from localhost (gareth_b@localhost) by adsl-216-103-58-122.dsl.lsan03.pacbell.net (8.11.0/8.11.0) with ESMTP id e9GC8Nl17075 for ; Mon, 16 Oct 2000 12:08:23 GMT (envelope-from gareth_b@pacbell.net) X-Authentication-Warning: adsl-216-103-58-122.dsl.lsan03.pacbell.net: gareth_b owned process doing -bs Date: Mon, 16 Oct 2000 12:08:23 +0000 (GMT) From: Gareth Boulton X-Sender: gareth_b@baldur To: freebsd-questions@freebsd.org Subject: USB conflict with SCSI HD Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a SanDisk ImageMate Compact Flash reader that uses the umass driver (ie it's the supported one). However, the USB devices rely on the SCSI driver, too. This causes a problem if the boot device is SCSI.... If I have the ImageMate plugged in at boot the system believe that it is da0 and cannot mount the root file system. If I unplug it the system boots fine from da0s1a (as it should). Question: Is there a way of (re)assigning the ImageMate a da? other than 0? If not, which da? device would it show up as if I'm booted off da0? I tried "sh MAKEDEV all" when it was plugged in (usbd was running) and no devices were made. Manually trying all the da? devices other than 0 was without success too. Thanks! :Gareth -- Gravissima calamitas umquam supra | Gareth Boulton Occidentem accidens erat religio Christiana | [Gore Vidal, 1987 CE] | gboulton(@)bigfoot(.)com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:25:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oak.drexeltech.com (oak.drexeltech.com [64.39.31.169]) by hub.freebsd.org (Postfix) with ESMTP id 081E237B66C for ; Mon, 16 Oct 2000 12:25:42 -0700 (PDT) Received: from elmo.johnturner.com (adsl-static-1-C7B2BC85.detroit.mi.ameritech.net [199.178.188.133]) by oak.drexeltech.com (8.9.3/8.9.3) with ESMTP id OAA25771 for ; Mon, 16 Oct 2000 14:34:18 -0500 (CDT) (envelope-from john@johnturner.com) Message-Id: <4.3.2.7.0.20001016152155.00b054d8@mail.johnturner.com> X-Sender: jturner@mail.johnturner.com X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 16 Oct 2000 15:25:38 -0400 To: freebsd-questions@freebsd.org From: John Turner Subject: Install of libtool from ports fails 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 Hello - I'm trying to install MySQL on a 4.0-RELEASE box. MySQL requires libtool. Installing libtool (after a cvsup of the devel tree) generates the following: install -c -o root -g wheel -m 444 ./libtool.info-4 /usr/local/info/libtool.info-4 install-info --info-dir=/usr/local/info /usr/local/info/libtool.info Making install in tests ===> Generating temporary packing list ** Missing package files for libtool-1.3.4. *** Error code 1 Stop in /usr/ports/devel/libtool. *** Error code 1 This is after typing "make install". "make" succeeds without errors. Can anyone offer some help? It's not apparent to me which package files libtool needs, as I thought the whole point behind the ports was that dependencies would be installed automatically. Any help is appreciated. Thanks. - John Turner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:28:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id B4D9C37B502 for ; Mon, 16 Oct 2000 12:28:16 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9ELRkE02013; Sat, 14 Oct 2000 14:27:46 -0700 (PDT) (envelope-from grog) Date: Sat, 14 Oct 2000 14:27:46 -0700 From: Greg Lehey To: Jason Cribbins Cc: FreeBSD Questions Subject: Re: Promise Ultra100 Drivers Message-ID: <20001014142746.M1489@sydney.worldwide.lemis.com> References: <9D35FA2F8EFCD111BA5A00805FA75E87081EEC5B@fdntx001> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <9D35FA2F8EFCD111BA5A00805FA75E87081EEC5B@fdntx001>; from Jason.Cribbins@qwest.com on Wed, Oct 04, 2000 at 09:33:38AM -0400 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday, 4 October 2000 at 9:33:38 -0400, Jason Cribbins wrote: > Greg Lehey wrote: >> When replying to this message, please copy the original recipients. >> If you don't, I may ignore the reply. Please read this message, at the bottom of every reply I send to -questions. >>> Is there any place I can find drivers for a Ultra 100 IDE PCI card from >>> Promise Technology? >> >> Yes. Check http://www.freebsd.org/releases/4.1.1R/notes.html: >> >> The ata(4) driver now has support for ATA100 controllers. > > I am somewhat new to this. I am running 4.1-Stable. Can I just download > some file to add or patch my current system built? No, that's not the way we do things. We prefer to keep things stable, so you need to update your -STABLE source tree. Of course, if it's recent (later than 4.1.1-RELEASE), it already has the support. > I am also told that the Ultra66 driver will work on the Ultra100 > card. How can I redirect the Ultra66 driver to be associated with > the Ultra 100 card when detected? You don't need to do anything. Start it up and look at the dmesg output (saved in /var/run/dmesg.boot) to see what the driver found. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:30:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id D7C7937B66E for ; Mon, 16 Oct 2000 12:29:59 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9ELTNl02027; Sat, 14 Oct 2000 14:29:23 -0700 (PDT) (envelope-from grog) Date: Sat, 14 Oct 2000 14:29:23 -0700 From: Greg Lehey To: Oscar Ricardo Silva Cc: freebsd-questions@FreeBSD.org Subject: Re: Promise Ultra100 Drivers Message-ID: <20001014142923.N1489@sydney.worldwide.lemis.com> References: <9D35FA2F8EFCD111BA5A00805FA75E87081EE7EB@fdntx001> <9D35FA2F8EFCD111BA5A00805FA75E87081EE7EB@fdntx001> <20001004080437.W1760@wantadilla.lemis.com> <4.3.2.7.2.20001010121339.00c56470@mail.utexas.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <4.3.2.7.2.20001010121339.00c56470@mail.utexas.edu>; from oscars@mail.utexas.edu on Tue, Oct 10, 2000 at 12:18:36PM -0500 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday, 10 October 2000 at 12:18:36 -0500, Oscar Ricardo Silva wrote: > At 08:04 AM 10/4/00 +0930, Greg Lehey, you wrote: >> On Friday, 29 September 2000 at 11:04:58 -0400, Jason Cribbins wrote: >>> Is there any place I can find drivers for a Ultra 100 IDE PCI card from >>> Promise Technology? >> >> Yes. Check http://www.freebsd.org/releases/4.1.1R/notes.html: >> >> The ata(4) driver now has support for ATA100 controllers. >> >>> According to the tech support dept they don't have drivers for any >>> OS except Win9x, ME, NT, and 2k. >> >> Correct. A driver is part of an operating system, not part of the >> board. The manufacturers only need to supply drivers for incomplete >> operating systems. >> >>> I am told that Linux has the Ultra 66 drivers built in and this is >>> enough to get an Ultra 100 working...but how to get get these >>> drivers and can they be converted over to BSD? >> >> You can get the Linux drivers in any recent Linux distribution. It >> would take a lot of time to convert them to BSD. I can't think why >> you would want to do this. > > OK, maybe I can't read (and I'm preparing to get ripped on replies) > but I can't find any mention of ATA/100, ATA100, Ultra 100 or > Promise in the 4.1.1 Release Notes. Hmm. Did you check the URL I mentioned above? > I'm going to install 4.1.1 on a machine later today but we're > looking at buying new machines based on the Intel 815 chipset and > before we do I want to make sure that FreeBSD will support that > chipset and also support ATA/100 drives using the new controllers. > I've asked about this chipset before and the only problems people > seem to have were with video. These machines are going to be > servers so we don't need anything more than text console interfaces > so as long as we can get that then we don't have a problem. Well, I suppose my reply comes too late, then. Did you have any problems? Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:30:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id 6CA1D37B503 for ; Mon, 16 Oct 2000 12:30:03 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9ELNrv01978; Sat, 14 Oct 2000 14:23:53 -0700 (PDT) (envelope-from grog) Date: Sat, 14 Oct 2000 14:23:53 -0700 From: Greg Lehey To: Steve Jorgensen , "Paul T. Root" Cc: Jan Knepper , Kenneth Wayne Culver , FreeBSD Questions Subject: Re: Dell Inspiron 5000/7500 Message-ID: <20001014142353.L1489@sydney.worldwide.lemis.com> References: <20001004080703.A4077@horton.iaces.com> <39DA0152.9CF3CDA7@smartsoft.cc> <200010032002.OAA00104@khoral.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="5mCyUwZo2JvN/JJP" X-Mailer: Mutt 1.0i In-Reply-To: <200010032002.OAA00104@khoral.com>; from steve@khoral.com on Tue, Oct 03, 2000 at 02:02:05PM -0600 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --5mCyUwZo2JvN/JJP Content-Type: text/plain; charset=us-ascii On Tuesday, 3 October 2000 at 14:02:05 -0600, Steve Jorgensen wrote: > > I have Inspiron 7500, and am running FreeBSD 4.1-STABLE on it. > It works like a charm. > > Jan Knepper wrote >>> Kenneth Wayne Culver wrote: >>> >>> Did you get X to work at all? > > I've heard XF86 4.x works just fine. However, I'm using the > XF86 3.3.6 server because 4 is still seems to be a bit unstable. > The 3.3.6 server will work just fine 800x600. In order get the > full 1400x1050 or other higher resolutions, you have to follow > the directions at http://www.eecs.umich.edu/~steveh/inspiron/ I don't have web access at the moment, but I suspect this refers to a problem with blanking under 3.3.6. I chose to upgrade to 4.0.1 on my Inspiron 7500. After a little bit of manual configuration, it works fine at 1400x1050. I'm attaching the XF86Config. > One thing you didn't ask about is sound. The 7500 sound is > not currently supported; however, it is being worked on. It works under -CURRENT, but the volume is a little low. I don't recall that I had to do any special configuration. pcm0: port 0x1400-0x14ff irq 5 at device 8.0 on pci0 On Wednesday, 4 October 2000 at 8:07:03 -0500, Paul T. Root wrote: > On Tue, 03 Oct 2000 11:54:58 -0400, Jan Knepper wrote: > > I have it running (4.1) on a 5000. It works pretty well. The internal > modem is a win modem, so it's useless. Newer versions of -CURRENT recognize the card: pci0: at 16.0 irq 5 If you want support, you still need to write it, but at least you now know what it is :-) > I don't have a 3Com card with it. I deliberately didn't buy the card that comes with the machine. We still have difficulty with 100 MB/s PCMCIA Ethernet cards, so I bought a cheap 10 Mb/s clone instead. > I got sound working (only through the headphone jack - known > problem) with the beta code for that sound chip set. The -CURRENT code doesn't seem to have that problem. > I have only been able to get X to work, if I have an external > monitor! Very strange, it comes up on an external monitor then you > can hot swap to the built in. I don't get that. I think that's with > 3.3.6. I suspect that this is related to the blanking problem I mentioned above. > I have do have USB and PCCards working (16 bit not 32 bit CardBus). Right, we don't support CardBus yet. Greg -- Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers --5mCyUwZo2JvN/JJP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=XF86Config Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" EndSection Section "Module" Load "extmod" Load "xie" Load "pex5" Load "glx" Load "dri" Load "GLcore" Load "dbe" Load "record" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "keyboard" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" ModeLine "1400x1050" 107.86 1400 1440 1552 1688 1050 1050 1053 1066 +hsync +vsync EndSection Section "Device" ### Available Driver options are:- #Option "accel" #Option "crt_screen" #Option "composite_sync" #Option "linear" #Option "mmio_cache" #Option "probe_clocks" #Option "shadow_fb" Identifier "Card0" Driver "ati" VendorName "ATI" BoardName "Mach64 LM" ChipSet "ati" ChipId 0x4c4d ChipRev 0x64 BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 1 EndSubSection SubSection "Display" Depth 4 EndSubSection SubSection "Display" Depth 8 EndSubSection SubSection "Display" Depth 15 EndSubSection SubSection "Display" Depth 16 EndSubSection SubSection "Display" Depth 24 Modes "1400x1050" "1280x1024" "1024x768" "800x600" "640x480" EndSubSection EndSection Section "DRI" EndSection --5mCyUwZo2JvN/JJP-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:32:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from echunga.lemis.com (freebie.lemis.com [192.109.197.137]) by hub.freebsd.org (Postfix) with ESMTP id 2860537B670 for ; Mon, 16 Oct 2000 12:32:04 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9E2crf05499; Sat, 14 Oct 2000 13:38:53 +1100 (EST) (envelope-from grog) Date: Sat, 14 Oct 2000 13:38:53 +1100 From: Greg Lehey To: Charles Henrich Cc: freebsd-questions@FreeBSD.org Subject: Re: Vinum/Fsck 1TB filesystem Message-ID: <20001014133853.D5353@sydney.worldwide.lemis.com> References: <20001012113054.A9727@sigbus.com> <20001013131107.M2593@wantadilla.lemis.com> <20001013092656.B12492@sigbus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001013092656.B12492@sigbus.com>; from henrich@sigbus.com on Fri, Oct 13, 2000 at 09:26:56AM -0700 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 13 October 2000 at 9:26:56 -0700, Charles Henrich wrote: > On the subject of Re: Vinum/Fsck 1TB filesystem, Greg Lehey stated: > >> Well, without knowing what went before, no. That's why I ask for the >> information I do at http://www.vinumvm.org/vinum/how-to-debug.html. >> Obviously you'll get this if you forget to newfs, or if newfs fails >> for any reason. It would also be nice to know whether you have ever >> been able to fsck this file system: you're pretty close to the >> theoretical file system size limit. I'd like to investigate this, >> since we don't see many 1 TB file systems, but at the moment I'm flat >> out preparing for the next week of conferences. Is it possible to >> recreate this problem later, and make 2 512 GB file systems for the >> moment? > > Well right now there is data on the drives. Setting it up the first > time through went flawlessly. I used vinum -stripe to stripe across > the two 512GB drives, the newfs'd the bad boy and mounted it up. We > used it for several hours when during the creation of a file write > the system puked badly. I'd like more information on "puked badly". If you had a panic, I'd like to see the dump. I'm also curious about your 512 GB drives; that's much larger than any real disk I know of. Are these real disks or a RAID controller? > During this write the first of the two drives activity lights stayed > on, until I forced a reboot (some processes would not die), when it > came back up the above error occured. OK, looks like a hang. > I finally remembered fsck -b (duh), and it fsck'd off the alternate > block just fine, corrected a single file error. When I went and > touched the same file however, the same error conditions occured, > and another reboot. Panic? > Another fsck, and removing the file and directory structure it was > in, and now everything is working okay. I've not ever seen anything > like this before. Im beginning to think that taking the FS up to > 1TB is just too risky, so will try and break it back down to two > 512GB drives next week after the data is backed up. Yes, I'd agree. As I said, you're pushing the limit, and you may just be the first person to ever try to use a 1 TB file system. > Im curious why fsck is horking so badly on that boot block though, > shouldnt it automagically look for backups ? I'd guess that fsck finds that both superblocks look plausible, so it can't tell which one is "correct". Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:40:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from khoral.com (charon.khoral.com [209.75.155.97]) by hub.freebsd.org (Postfix) with ESMTP id E36AE37B502 for ; Mon, 16 Oct 2000 12:40:12 -0700 (PDT) Received: from benson.alb.khoral.com (benson.alb.khoral.com [10.1.2.11]) by khoral.com (8.9.3/8.9.3) with ESMTP id NAA09691; Mon, 16 Oct 2000 13:40:03 -0600 (MDT) From: Steve Jorgensen Message-Id: <200010161939.NAA21529@benson.alb.khoral.com> Subject: Re: Dell Inspiron 5000/7500 To: grog@lemis.com (Greg Lehey) Date: Mon, 16 Oct 2000 13:39:18 -0600 (MDT) Cc: questions@freebsd.org In-Reply-To: <20001014142353.L1489@sydney.worldwide.lemis.com> from "Greg Lehey" at Oct 14, 2000 02:23:53 PM 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 Greg Lehey wrote >> > One thing you didn't ask about is sound. The 7500 sound is >> > not currently supported; however, it is being worked on. >> >> It works under -CURRENT, but the volume is a little low. I don't >> recall that I had to do any special configuration. >> >> pcm0: port 0x1400-0x14ff irq 5 at device 8.0 on pci0 >> Is this going to get MFC'ed to STABLE? I need the laptop working solid, so I can't afford to install -CURRENT on it. Steve -- ----------------------------------------------------------- Steven Jorgensen steve@khoral.com steve@spukhaus.com ------------------------------+---------------------------- Khoral Research Inc. | PHONE: (505) 837-6500 6200 Uptown Blvd, Suite 200 | FAX: (505) 881-3842 Albuquerque, NM 87110 | URL: http://www.khoral.com/ ----------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:42:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [209.0.55.68]) by hub.freebsd.org (Postfix) with ESMTP id 9516F37B503; Mon, 16 Oct 2000 12:42:52 -0700 (PDT) Received: by moo.sysabend.org (Postfix, from userid 1004) id 4E0AC755B; Mon, 16 Oct 2000 12:43:03 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id 4B4711D89; Mon, 16 Oct 2000 12:43:03 -0700 (PDT) Date: Mon, 16 Oct 2000 12:43:03 -0700 (PDT) From: Jamie Bowden To: hardware@FreeBSD.org Cc: questions@FreeBSD.org Subject: K7V, booting from CDROM. Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Okay, I have successfully booted from CDROM on this machine. Let me give a quick recap of the hardware, and the necessary steps. HW Overview: Motherboard: Asus K7V Processor: Athlon/850 Memory: 256M PC-133 3.3v unbuffered Floppy: LS-120 UHD floppy on IDE SCSI: Adaptec 2940 UW HDD: IBM 4.3G UW SCSI, Seagate 4.0G U SCSI CDROM: Plextor UltraPlex, UltraPlex 40max, PlexWriter 8/20 Tape: Archive Python DDS2 4mm SCSI The big problem is how Adaptec remaps the CDROM drive over A: in the bios for bootable CDs. What I did was as follows: Set Floppy A in BIOS on motherboard to 1.44MB floppy (was set to none) Set halt on errors to None (was set to all) Set first boot device to Legacy Floppy (was set to LS-120) I turned bootable CDs to enabled on the SCSI controller, and insterted bootable CDROM drive. The machine will now boot from the CDROM. I'm still unsure as to why the FreeBSD boot floppy won't boot from the LS-120 drive. The kernel detected it just fine booting from the CD. The above steps would likely allow me to boot the Windows98 CD that failed in the same manner as the FreeBSD one previously. I'm curious as to why the SCSI controller's mapping of its CDROM drive to A: in the BIOS doesn't work with the LS-120 (since the mobo BIOS assigns it A: prior to the scsi bios being loaded). That is outside of the scope of the FreeBSD project. Thanks to all for the various suggestions. I look forward to seeing just how fast FreeBSD is on this machine. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:55:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 6C97D37B66F for ; Mon, 16 Oct 2000 12:55:07 -0700 (PDT) Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) by pike.osd.bsdi.com (8.11.0/8.9.3) with ESMTP id e9GJrq504737; Mon, 16 Oct 2000 12:53:52 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.0/8.11.0) id e9GJq4c34049; Mon, 16 Oct 2000 12:52:04 -0700 (PDT) (envelope-from jhb) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20001014142353.L1489@sydney.worldwide.lemis.com> Date: Mon, 16 Oct 2000 12:52:04 -0700 (PDT) Organization: BSD, Inc. From: John Baldwin To: Greg Lehey Subject: Re: Dell Inspiron 5000/7500 Cc: FreeBSD Questions , Kenneth Wayne Culver , Jan Knepper , "Paul T. Root" , Steve Jorgensen Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 14-Oct-00 Greg Lehey wrote: > I don't have web access at the moment, but I suspect this refers to a > problem with blanking under 3.3.6. I chose to upgrade to 4.0.1 on my > Inspiron 7500. After a little bit of manual configuration, it works > fine at 1400x1050. I'm attaching the XF86Config. For my 5000e, I had to use X-current to get a working server. It is now happily running at 1600x1200. >> One thing you didn't ask about is sound. The 7500 sound is >> not currently supported; however, it is being worked on. > > It works under -CURRENT, but the volume is a little low. I don't > recall that I had to do any special configuration. It has been MFC'd to stable as well. >> I got sound working (only through the headphone jack - known >> problem) with the beta code for that sound chip set. > > The -CURRENT code doesn't seem to have that problem. Yeah, my speakers work just fine here under -current. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:56:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bsd1.alaptech.com (cable-225-4-237-24.anchorageak.net [24.237.4.225]) by hub.freebsd.org (Postfix) with ESMTP id 9F5F437B66C for ; Mon, 16 Oct 2000 12:56:18 -0700 (PDT) Received: (from kirk@localhost) by bsd1.alaptech.com (8.11.0/8.9.3) id e9GJtLe00386 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 11:55:21 -0800 (AKDT) (envelope-from kirk) Date: Mon, 16 Oct 2000 11:55:21 -0800 From: Kirk Brogdon To: freebsd-questions@freebsd.org Subject: natd / tcpdump question Message-ID: <20001016115521.A349@bsd1.alaptech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i DisOrganization: ALAP Technology - Chugiak, AK USA Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I started getting flooded with the "natd[]: failed to write packet back, (host is down) messages. I found some archives where Crist Clark said to run tcpdump on the interface and look for arps that weren't getting an answer. I tried that first on the outside net I/F (fxp0 in my case) since that is how I have the natd interface configured in rc.conf (natd_interface="fxp0"). This gave me what appeared to be every arp request for the cable network. I then tried the tcpdump on my lan I/F (rl0) and got the following: 11:31:47.774308 arp who-has 132.17.0.60 (3:0:0:0:a1:26) tell 132.17.0.6 11:32:05.846045 arp who-has bsd1.alaptech.com tell alap2.alaptech.com 11:32:05.846078 arp reply bsd1.alaptech.com is-at 0:e0:29:70:43:5d 11:32:17.774797 arp who-has 132.17.0.60 (3:0:0:0:a1:26) tell 132.17.0.6 11:32:47.774879 arp who-has 132.17.0.60 (3:0:0:0:a1:26) tell 132.17.0.6 11:33:17.775523 arp who-has 132.17.0.60 (3:0:0:0:a1:26) tell 132.17.0.6 I have no idea who 132.17.0.60 is nor why I would see the requests on my lan I/F. I did a traceroute on that IP and got as far as 132.17.120.11 (about 18 hops). If I try and ping 132.17.0.60, it is refused (I assume it is behind a firewall). Can anyone tell me what is going on and how I can make it stop? I do have my firewall set to open in rc.conf should that have anything to do with it. Thanks - Kirk -- ALAP Technology PO Box 672298 Chugiak, AK - USA 99567 (907) 688 8843 www.alaptech.com Specializing in Open Source Solutions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:57:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from unknown-230-101.pilot.net (unknown-230-101.pilot.net [206.98.230.101]) by hub.freebsd.org (Postfix) with ESMTP id 4AEBA37B66F for ; Mon, 16 Oct 2000 12:57:34 -0700 (PDT) Received: from unknown-239-165.pilot.net (unknown-239-165.pilot.net [206.189.239.165]) by unknown-230-101.pilot.net with ESMTP id PAA11214 for ; Mon, 16 Oct 2000 15:57:33 -0400 (EDT) From: Hao.Zhong@gecits.ge.com Received: from msbatl01itscge.gecits.ge.com (localhost [127.0.0.1]) by unknown-239-165.pilot.net with ESMTP id PAA28121 for ; Mon, 16 Oct 2000 15:57:32 -0400 (EDT) Received: by msbatl01itscge.gecits.ge.com with Internet Mail Service (5.5.2650.21) id <44X8HWDF>; Mon, 16 Oct 2000 15:56:17 -0400 Message-ID: <47B6167F8E69D31194BA0008C7918D4201DE360C@msxcvg02itscge.gecits.ge.com> To: freebsd-questions@FreeBSD.ORG Subject: How to subscribe? Date: Mon, 16 Oct 2000 15:57:23 -0400 X-Mailer: Internet Mail Service (5.5.2650.21) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry for bothering you, but could anyone tell me how to subscribe to this mailing list? I really appreaciate it. Hao Zhong To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 12:59:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 562D437B66E; Mon, 16 Oct 2000 12:59:23 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 7A4266A901; Mon, 16 Oct 2000 21:59:22 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id AF39C63E0056; Mon, 16 Oct 2000 22:04:09 +0200 Message-Id: <5.0.0.25.0.20001016215411.048b8bc0@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 16 Oct 2000 21:59:32 +0200 To: freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org From: Len Conrad Subject: custom boot/install CD 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 After a disk replacement at a remote site with a FreeBSD firewall and the hardware guy's done his deed, we need to be able to boot a custom FreeBSD CD that will script a total FreeBSD custom install to a bare disk, from fdisk through "shutdown now -r". Are there any how-to's in this area? tia, Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 installable binary for NT4 http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 13: 6:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trill.hh.se (trill.hh.se [194.47.5.10]) by hub.freebsd.org (Postfix) with ESMTP id 218FB37B66F for ; Mon, 16 Oct 2000 13:06:54 -0700 (PDT) Received: from gs177.gsten.hh.se (chip@L22-212.gsten.hh.se [194.47.16.177]) by trill.hh.se (8.9.3/8.9.3) with ESMTP id WAA10607 for ; Mon, 16 Oct 2000 22:06:51 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Mon, 16 Oct 2000 22:06:51 +0200 (CEST) From: Joel Bjork To: questions@freeBSD.ORG Subject: Poor network performance Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've set up a p133 as a firewall/gateway with 2 NIC's one for outside traffic and one for internal traffic, the internal NIC is a 3com 905B using the xl driver. It connects to another 905B over crossover cable to my windows machine. When doing ftp transfers between the 2 internal boxes performances is poor at the best, 202kB/sec. I've forced both nics to 100baseTX full-duplex but to no avail, the speed doesn't differ at all from 10baseT/UTP half-duplex or any combination there of. I'm running NAT with rl0 as the natd_interface. Can anyone give me some hints as to what to look for? System information: ifconfig xl0 xl0: flags=8843 mtu 1500 inet 192.168.3.2 netmask 0xffffff00 broadcast 192.168.3.255 ether 00:10:5a:64:7b:5c media: 100baseTX supported media: autoselect 100baseTX 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 10baseT/UTP netstat -r Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default golden-16.hh.se UGSc 14 10818124 rl0 localhost localhost UH 0 257696 lo0 192.168.3 link#1 UC 0 0 xl0 CHIPKO 0:10:5a:ca:a2:fb UHLW 4 245356 xl0 1119 194.47.16.0 ff:ff:ff:ff:ff:ff UHLWb 0 7 rl0 => 194.47.16 link#2 UC 0 0 rl0 golden-16.hh.se 0:30:96:2c:37:8 UHLW 14 0 rl0 1142 L26-311 0:20:af:c0:ab:9d UHLW 0 34 rl0 985 L22-109 52:54:0:da:ad:70 UHLW 0 8 rl0 1187 L22-212 0:30:4f:6:2d:33 UHLW 24 7101136 lo0 CHIPKO is the name I've given to the windows box to make sharity-light work. L22-212 is the name of the FreeBSD box uname -a FreeBSD gs177.gsten.hh.se 3.5-RELEASE FreeBSD 3.5-RELEASE #2: Wed Jul 26 10:49:51 CEST 2000 chip@gs177.gsten.hh.se:/usr/src/sys/compile/LILLMATT i386 ---------------------------------- E-Mail: Joel Bjork Date: 16-Oct-00 Time: 22:06:51 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 13:17:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id D788137B66F for ; Mon, 16 Oct 2000 13:17:44 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9GKHgp18226; Mon, 16 Oct 2000 13:17:42 -0700 (PDT) Date: Mon, 16 Oct 2000 13:17:42 -0700 From: Alfred Perlstein To: Joel Bjork Cc: questions@FreeBSD.ORG Subject: Re: Poor network performance Message-ID: <20001016131741.Q272@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from u98jobj@stud.hh.se on Mon, Oct 16, 2000 at 10:06:51PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Joel Bjork [001016 13:07] wrote: > I've set up a p133 as a firewall/gateway with 2 NIC's one for outside > traffic and one for internal traffic, the internal NIC is a 3com 905B > using the xl driver. It connects to another 905B over crossover cable to > my windows machine. When doing ftp transfers between the 2 internal boxes > performances is poor at the best, 202kB/sec. I've forced both nics to > 100baseTX full-duplex but to no avail, the speed doesn't differ at all > from 10baseT/UTP half-duplex or any combination there of. > > I'm running NAT with rl0 as the natd_interface. > > Can anyone give me some hints as to what to look for? It's possible that the actual limit is in the disk bandwidth, if you are ftp'ing files you may want to attempt to do a transfer without touching disk (remote file 'foo' local file '/dev/null'). Also you should know that the rl cards are junk. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 13:35:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 6297837B66F for ; Mon, 16 Oct 2000 13:35:28 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id KAA43721; Mon, 16 Oct 2000 10:35:18 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Mon, 16 Oct 2000 10:35:18 -1000 (HST) From: Vincent Poy To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Best DSL Router? 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 Sun, 15 Oct 2000, Vincent Poy wrote: > On Sun, 15 Oct 2000, Len Conrad wrote: > > > >ADSL is not full duplex. > > > > Then what is it? half duplex? simplex? > > It can be Adaptive Full Duplex, remember how the Telebit > Packetized Ensemble Protocol (PEP) and USRobotics High Speed Technology > (HST) protocol worked? It's not true Full Duplex. > > > No, xDSL is full duplex at stated rate(s) on two unconditioned wires. > > True but ADSL is shared with voice while HDSL and SDSL isn't on > the same two wires. > > > "ADSL (asymmetric digital subscriber line) is called "asymmetric" > > because most of its two-way or duplex bandwidth is devoted to the > > downstream direction, sending data to the user. Only a small portion > > of bandwidth is available for upstream. > > Published by : Computer Reseller News > > Date : Monday, September 04, 2000" > > That's not the only reason. ADSL is shared with Voice by all the > CLEC's and LEC's. Other forms of DSL could be asymmetric like the Covad > 1.5down, 384k up offering but is not shared by voice. > > > >ADSL is Assymetrical DSL. SDSL is Full Duplex. > > > > You're mixing your terms. xDSL is full duplex. > > > > (A)symmetric refers only to the relative values of the up and down > > signalling rates, not to the media access scheme. > > > > Full duplex refers to the simultaneous send and receive, half duplex > > is only one party sending at a time. This is a one-sender-at-time > > media access scheme, just like 10BaseT Ethernet or Token Ring or ARCnet. > > > > In xDSL, two frequency bands are used to provide two independent > > "media" so each sender can send simultaneously. > > Well, I remember I asked Netopia this question since I had the > Netopia R7100C router and wanted to convert it to a R9100C router, and I > asked them the same question and this was their answer: > > Long answer - A 1.5 Mbitps connection should be around 192 kbytes per > second download, while a 128kbitps should be around a 16 kbyte per second > upload. ADSL is, by definition, asymmetrical and asynchronous, which means > that there is only one pipe that is shared in both directions. So, the > speeds that you are showing are actually in line with the line speeds you > mentioned. > > > >With PacBell ADSL, the upstream 128k is shared with the > > >downstream 1.5Mbps on a standard phone line connected to a Alcatel DSLAM. > > > > There's no band sharing going on. The 128 kbits upchannel has its > > frequency band and simultanously the 1.5 Mb/s channel has a separate > > frequency band. They can both send simultaneously, aka "full duplex". > > They can but how do you explain that the downstream band slows > down whenever the upstream band is in use? Remember, Netopia makes the > xDSL routers so they are familiar with the technology that both Copper > Mountain and Alcatel uses. > > > >If one was downloading only, one does get 150kbytes/sec which > > >193kbytes/sec is the max for a 1.544Mbps connection. If you were > > >uploading, it would be 13kbytes/sec up and the downloads would slow down > > >to 30kbytes/sec. > > > > If there is simultaneous transmission in both directions, as you say > > there is on the BA DSL (at whatever effective signalling rate), then > > the xDSL line is full duplex. > > Not always, remember even with 10BT Ethernet, even though it's > half duplex, it can still send and receive at the same time, just slow. > > > >This is only a problem if you do both simultaneously > > > > Which is a the most common requirement. If you can do both > > simultaneously, then the channel or service is full duplex. A > > classic T1/E1 is full duplex but on 4 wires (each pair is simplex), > > and it can be replaced with xDSL 2 wires, of same speed which is also > > full duplex. > > Yes, a classic T1 is HDSL and full duplex. ADSL is Assymmetrical > and Assynchronous. Both HDSL, SDSL and T1/E1's are Synchronous. > > > >and what happens is the uploads will take up > > >the entire 128kbps > > > > of course, there's nobody else on the line to share that 128 with, > > but that's only one channel of the two available. The 128 up channel > > does not occupy the full up/down bandwidith, only the up > > bandwith. The down channel is a separate channel and frequency band. > > Yes, but you still haven't explained why the up channel would slow > the down channel down. > > > Now if BA lines cannot really support full 1.5/128 signalling rates, > > then that's not an xDSL issue. I've seen some DSL provisoning web > > sites quote a residential address only 144 kb/sec up and down due to > > line quality and line length issues. > > We're actually talking about SBC's PacBell here and not BA. BA is > worst than you think since it's 640k/90k only. The sites you see are > talking about IDSL which is 144kb both ways or 160k both ways and offered > only by Rhythms, Northpoint and Covad and not the LEC's. > > > >so there is no room for the Acknowledgement packets to > > >be sent back for the received packets. > > > > yes, there is, the separate down channel is available, in theory, on > > the full-duplex xDSL line. If in practice, line conditions are so > > poor that effective operation appears to be half-duplex (ie, sending > > up destroys sending down), then that's a line issue, and still > > doesn't mean xDSL is not full duplex. > > Well, if you look at a traditional T1, there is 193ksec available > in both directions so you are able to send the ACK packets back. On a > ADSL circuit, the downstream is faster than the upstream by a big > magnitude. So when you upload, it will normally use up the entire 16k/sec > available which means it'll slow the downloads down because there is no > room for the ack packets to be send back in the upstream link to > acknowledge the packet is received. Ofcourse, if you can knock down the > upstream to only do about 13k, then you will have the 3k worth of room to > send the acknowledgement packets back. It's like someone sends you a > packet and waits for a response but it's delayed because the upstream pipe > of the destination is full and traffic shaping is the only way out of > it. There is a huge discussion going on at the ba.internet newsgroup and > the people there do know what they are talking about. Instead of talking > about it here, it might be better to bring this discussion to the > newsgroups instead where it'll benefit. > > > >That's one reason why I mentioned traffic shaping as that seems to > > >be the only solution. > > > > If 128 kb/sec up transmission destroys the capacity of the 1.5 mb/sec > > down channel such that tcp ACK packets can't be sent down, then > > there's no effective bandwidth to manage. > > Actually there is. If the entire 16k in the up is taken by the > uploading, how will the ack packets make it back to the other end to ack > that the package is received? > > > > > Paradyne MVL does share 768 kbits/sec between the two channels but > > > > that is afaik unique to MVL, which isn't typical xDSL. > > > > > > Yes, but are you uploading and downloading at the same > > >time. That's a different issue altogether. > > > > xDSL is full duplex, period, as you say the Bell Atlantic ADSL is, > > with asymmetric signalling rates. If the line quality + available CO > > bandwidth don't allow full duplex data transmission at max > > (asymmetric) signalling rates, that's not xDSL's pb. "Full duplex" > > and "(a)symmetric signalling rate" refer to two diffent, independent > > characteristics. > > Where was I talking about BA ADSL? I was referring to PacBell > ADSL all along. > > > Here's very readable reference work: > > > > http://www.paradyne.com/sourcebook_offer/index.html > > There are different implementations of ADSL. I'm not sure what BA > uses but PacBell uses Alcatel's and GTE uses Orckit/Fujitsu. Like I > mention above, Netopia should know what they are talking about and so > should Cisco engineers. Netopia, Cisco and 3Com does make Routers > compatible with CopperMountain for SDSL and Alcatel, Orckit for > ADSL. Paradyne which is either still AT&T or formally AT&T would be > history since if Lucent was that great, other companies would not have > put it down in water. As a followup, please discuss this on the following thread on the newsgroups: ba.internet and comp.dcom.xdsl: Date: Mon, 16 Oct 2000 07:42:56 -0700 From: John Navas To: Vincent Poy Newsgroups: comp.dcom.xdsl, ba.internet Subject: Re: Why downloading slows down when uploading with ADSL? [POSTED TO ba.internet; PLEASE REPLY THERE] In <8sd6cn$1es$1@nnrp1.deja.com>, Vincent Poy wrote: >... Anyways, my question is >with PacBell ADSL, when downloading only, one would get somewhere >between 100kbytes/sec to 193kbytes/sec On 1.5 Mbps basic service your maximum FTP download speed is about 160 KBps. >but when one is uploading at >16kbytes/sec, the downloads would slow down to 250-300kbytes/sec. Or worse. >I >know this has something to do with acknowledgement packets not being >able to make it back the upstream pipe quick enough. Correct. When the upstream is saturated, acknowledgement packets have to take their turn on the upstream with the other upstream packets. When the other upstream packets are as big as the downstream packets (e.g., FTP both ways), this effectively slows the downstream to about the same speed as the upstream. >How will this >help and is it with all ADSL implementations or only with PacBell since >I noticed Cable Modems doesn't exhibit this problem. Cable modems do exhibit the problem when they are running at an upstream cap -- the problem can happen with TCP/IP on *any* asymmetric link. >Also, is ADSL >technically full duplex or is it half duplex? Full duplex. >From what Netopia and >Cisco told me, ADSL is Assynchronous and not Synchronous like the other >xDSL implementations. Thanks for any input you can provide. ADSL is synchronous. -- Best regards, John Navas CABLE MODEM/DSL GUIDE: So OII guess you were right that ADSL is Full Duplex but just because it's Full Duplex doesn't mean that you will get the advertised speeds simultaneously in both directions. Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 13:41:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fir.sycamorenet.com (fir.sycamorenet.com [63.65.20.2]) by hub.freebsd.org (Postfix) with ESMTP id A356737B66C for ; Mon, 16 Oct 2000 13:41:10 -0700 (PDT) Received: by FIR with Internet Mail Service (5.5.2650.21) id ; Mon, 16 Oct 2000 16:26:15 -0400 Message-ID: <5B38C8A7BD6AD311A1BC009027B6C224014648B2@pine.sycamorenet.com> From: "Shen, Qifeng" To: "'questions@freebsd.org'" Cc: "Shen, Qifeng" Subject: source code for FreeBSD Date: Mon, 16 Oct 2000 16:43:56 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have a CD that came with "FreeBSD Handbook" edited by Jim Mock. The reason I got the book and the CD is to look into the source code. I'd like to know if is possible to get the source code out of the CD in a readable format without actually installed BSD on my PC (Windows NT). If it is, would you let me know how. Of course, if you have a web/ftp site that I get source code from, it may even be better. Thank you. Qifeng Shen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 13:47:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web109.yahoomail.com (web109.mail.yahoo.com [205.180.60.76]) by hub.freebsd.org (Postfix) with SMTP id 1352937B66E for ; Mon, 16 Oct 2000 13:47:41 -0700 (PDT) Received: (qmail 28470 invoked by uid 60001); 16 Oct 2000 20:47:35 -0000 Message-ID: <20001016204735.28469.qmail@web109.yahoomail.com> Received: from [209.247.40.201] by web109.yahoomail.com; Mon, 16 Oct 2000 13:47:35 PDT Date: Mon, 16 Oct 2000 13:47:35 -0700 (PDT) From: Guolin Cheng Subject: Re: Reserved ports too limited for amd (automount) on FreeBSD 4.1 To: Matt Heckaman , 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 Matt Heckaman, Thanks. But in fact, I already added the following lines into the file /etc/sysctl.conf: net.inet.ip.portrange.lowfirst=2023 net.inet.ip.portrange.first=2024 But net.inet.ip.portrange.lowfirst is still 1023!! although net.inet.ip.portrange.first was changed into 2024 (this is of no use..:(( ), so when I use amd, the sockets still use reserved ports.(you can use netstat -a command to show the TCP/UDP ports in use) and make my machine crazy and die. I want to know if we can find a configuration option to instruct amd NOT to use reserved ports by deafault.. Thanks. Yours sincerely, Guolin Cheng --- Matt Heckaman wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > This is what you're looking for: > > net.inet.ip.portrange.lowfirst: 1023 > net.inet.ip.portrange.lowlast: 600 > net.inet.ip.portrange.first: 1024 > net.inet.ip.portrange.last: 5000 > > I don't see why they could not be adjusted.. Ie; moving portrange.first to > 2048, then changing portrange.lowfirst to 2047... (with sysctl -w) > > If you aren't familiar with sysctl, it works like this: > > # sysctl -w net.inet.ip.portrange.lowfirst=2047 > # sysctl -w net.inet.ip.portrange.first=2048 > > No reboot required. To make them stick after reboots, just put them in > /etc/sysctl.conf like: > > net.inet.ip.portrange.lowfirst=2047 > net.inet.ip.portrange.first=2048 > > Cheers, > Matt > > On Mon, 16 Oct 2000, Guolin Cheng wrote: > : > : Hi, all, > : > : > : I encountered a problem with amd(which using reserved ports by default) on > : FreeBSD box, the version is FreeBSD 4.1. > : /guolin> uname -v > : FreeBSD 4.1-RELEASE #0: Fri Sep 29 18:31:50 GMT 2000 > : /usr/src/sys/compile/ALEXA > : > : > : The problem is: > : > : I want to mount more than 800 entries using amd at the same time on a > freeBSD > : machines, but since the FreeBSD4.1 's amd using reserved ports by default > for > : security reasons, there's only (1023-600+1)=424 reserved ports available > at > : most!, so it always report error: > : > : amd: ALL PORTS IN USE.. > : > : because all the reserved ports are used up!! > : > : So, could anyone tell me a method to change the default configuration > setting > : of amd??? so that I can use non-deserved ports instead? > : > : I tried to edited the file /sys/netinet/in.h, change the parameter > : IPPORT_RESERVED to 2024 from 1024,recompile and restart, but the amd > services > : can NOT run normally! > : > : How to set the amd functions or change it back to a older version?? any > ideas? > : > : Thanks. > : > : > : ===== > : With Best Regards. > : > : Guolin Cheng > : Alexa Internet Company > : Presidio of San Francisco, > : San Francisco, CA 94129 > : (415)561-6900 ext. 6021 > : > : __________________________________________________ > : Do You Yahoo!? > : Yahoo! Messenger - Talk while you surf! It's FREE. > : http://im.yahoo.com/ > : > : > : To Unsubscribe: send mail to majordomo@FreeBSD.org > : with "unsubscribe freebsd-stable" in the body of the message > : > > * Matt Heckaman - mailto:matt@lucida.qc.ca http://www.lucida.qc.ca/ * > * GPG fingerprint - A9BC F3A8 278E 22F2 9BDA BFCF 74C3 2D31 C035 5390 * > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.3 (FreeBSD) > Comment: http://www.lucida.qc.ca/pgp > > iD8DBQE560/UdMMtMcA1U5ARAgsLAKCdQOk3ap29g6e1MYWw55AUmx0s7ACffs/D > zTGL/osvt0aEAwnP57sGMbo= > =RSWo > -----END PGP SIGNATURE----- > > ===== With Best Regards. Guolin Cheng Alexa Internet Company Presidio of San Francisco, San Francisco, CA 94129 (415)561-6900 ext. 6021 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 13:59:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 0B3FA37B502 for ; Mon, 16 Oct 2000 13:59:49 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id D2D5D6A901 for ; Mon, 16 Oct 2000 22:59:44 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id AD5F6C560146; Mon, 16 Oct 2000 23:04:31 +0200 Message-Id: <5.0.0.25.0.20001016224843.048dd3d0@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Mon, 16 Oct 2000 22:59:58 +0200 To: freebsd-questions@FreeBSD.ORG From: Len Conrad Subject: Re: Best DSL Router? In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > As a followup, please discuss this on the following thread on the >newsgroups: ba.internet and comp.dcom.xdsl: > > >How will this > >help and is it with all ADSL implementations or only with PacBell since > >I noticed Cable Modems doesn't exhibit this problem. > >Cable modems do exhibit the problem when they are running at an upstream >cap -- the problem can happen with TCP/IP on *any* asymmetric link. ok, cool. The pb is not upstream "robbing" bandwidth from downstream, (ie, they are truly independent channels/media allowing full duplex) but bad congestion the slow channel slowing/blocking tcp/ip protocol responses awaited by the fast channel. > >Also, is ADSL > >technically full duplex or is it half duplex? > >Full duplex. ok > >From what Netopia and > >Cisco told me, ADSL is Assynchronous and not Synchronous like the other > >xDSL implementations. Thanks for any input you can provide. > >ADSL is synchronous. asymmetric, not asynchronous vbg > So I guess "guess" ? vbg >you were right that ADSL is Full Duplex but just >because it's Full Duplex doesn't mean that you will get the advertised >speeds simultaneously in both directions. You were right about the slowdown but wrong about the reason. And we both learned a few points. Well, I learned one, you learned more than one, "asymmetric learning", but don't let me slow you down!! LOL Thanks for the follow through, very helpful. The Paradyne book still applies and will help build street cred at the next geek cocktail party, even if Paradyne doesn't lead the market. Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 installable binary for NT4 http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 14: 6:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trill.hh.se (trill.hh.se [194.47.5.10]) by hub.freebsd.org (Postfix) with ESMTP id 1E70A37B66C for ; Mon, 16 Oct 2000 14:06:31 -0700 (PDT) Received: from gs177.gsten.hh.se (chip@L22-212.gsten.hh.se [194.47.16.177]) by trill.hh.se (8.9.3/8.9.3) with ESMTP id XAA12338; Mon, 16 Oct 2000 23:06:21 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20001016131741.Q272@fw.wintelcom.net> Date: Mon, 16 Oct 2000 23:06:20 +0200 (CEST) From: Joel Bjork To: Alfred Perlstein Subject: Re: Poor network performance Cc: questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > It's possible that the actual limit is in the disk bandwidth, if you > are ftp'ing files you may want to attempt to do a transfer without > touching disk (remote file 'foo' local file '/dev/null'). > Remote transfer over the rl card gives much higher speed so I doubt that it is diskrelated. > Also you should know that the rl cards are junk. Yes I know, I can't affored a new one either. That's why I use my 2 3coms (xl) for internal transfers. > > -Alfred > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message ---------------------------------- E-Mail: Joel Bjork Date: 16-Oct-00 Time: 23:06:20 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 14:10:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oak.drexeltech.com (oak.drexeltech.com [64.39.31.169]) by hub.freebsd.org (Postfix) with ESMTP id 4DBD037B66C for ; Mon, 16 Oct 2000 14:10:46 -0700 (PDT) Received: from elmo.johnturner.com (adsl-static-1-C7B2BC85.detroit.mi.ameritech.net [199.178.188.133]) by oak.drexeltech.com (8.9.3/8.9.3) with ESMTP id QAA25980; Mon, 16 Oct 2000 16:19:11 -0500 (CDT) (envelope-from john@johnturner.com) Message-Id: <4.3.2.7.0.20001016170948.00b28ec8@mail.johnturner.com> X-Sender: jturner@mail.johnturner.com X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 16 Oct 2000 17:10:25 -0400 To: Joel Bjork From: John Turner Subject: Re: Poor network performance Cc: questions@FreeBSD.ORG In-Reply-To: References: <20001016131741.Q272@fw.wintelcom.net> 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 How about the cable? Is it a "roll your own" cable? Has it been tested? - John Turner At 11:06 PM 10/16/2000 +0200, Joel Bjork wrote: >Content-Transfer-Encoding: 8bit > > > > > > It's possible that the actual limit is in the disk bandwidth, if you > > are ftp'ing files you may want to attempt to do a transfer without > > touching disk (remote file 'foo' local file '/dev/null'). > > >Remote transfer over the rl card gives much higher speed so I doubt that >it is diskrelated. > > > Also you should know that the rl cards are junk. > >Yes I know, I can't affored a new one either. That's why I use my 2 3coms >(xl) for internal transfers. > > > > > -Alfred > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > >---------------------------------- >E-Mail: Joel Bjork >Date: 16-Oct-00 >Time: 23:06:20 >---------------------------------- > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 14:47:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 60C1337B502 for ; Mon, 16 Oct 2000 14:47:32 -0700 (PDT) Received: from ispchannel.com ([206.31.81.146]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001016215002.YJQD382.smtp2a@ispchannel.com>; Mon, 16 Oct 2000 14:50:02 -0700 Message-ID: <39EB776C.D56691E5@ispchannel.com> Date: Mon, 16 Oct 2000 16:47:24 -0500 From: Mark Hummel Organization: Innovative Solutions X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Luis Croker Cc: freebsd-questions@FreeBSD.ORG Subject: Re: mount a Cd ! References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Luis, The command is mount /cdrom When you want to unmount it, the command is umount /cdrom Make sure you're out of the cdrom directory before you unmount otherwise it won't let you. Also, I notice your driver is /dev/acd0. I had some weird problems until I added a "c" to the device to denote the entire cd. I don't understand why it works, but it does now. Again my device is /dev/acd0c Mark Luis Croker wrote: > Hi !!! How I can to mount a Cdrom in FreeBsd 4.1 ??? I have this line > in /etc/fstab.... > # Device Mountpoint FStype Options Dump pass > /dev/acd0 /cdrom cd9660 ro,noauto 0 0 > > When the box boots... the acd0 device knows the cdrom reader... > What's the command to mount the cdrom ?? > > Greetings.... > > 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 Oct 16 14:58:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from epsilon.lucida.qc.ca (epsilon.lucida.qc.ca [216.95.146.6]) by hub.freebsd.org (Postfix) with SMTP id 1BB4337B66F for ; Mon, 16 Oct 2000 14:58:28 -0700 (PDT) Received: (qmail 9653 invoked by uid 1000); 16 Oct 2000 21:58:17 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 16 Oct 2000 21:58:17 -0000 Date: Mon, 16 Oct 2000 17:58:16 -0400 (EDT) From: Matt Heckaman X-Sender: matt@epsilon.lucida.qc.ca To: Guolin Cheng Cc: freebsd-questions@freebsd.org Subject: Re: Reserved ports too limited for amd (automount) on FreeBSD 4.1 In-Reply-To: <20001016204735.28469.qmail@web109.yahoomail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost 1.6.2 0/1000/N Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Did you actually do the sysctl -w though? Just putting them in sysctl.conf wont take effect until reboot, though I would suspect that one could just 'sh /etc/rc.sysctl' without a problem.. I'm afraid I'm not really familiar with amd, nor messing with this stuff, so I'm just throwing out a pseudo-educated guess here. :) Hope that helps some. On Mon, 16 Oct 2000, Guolin Cheng wrote: : Matt Heckaman, : : Thanks. But in fact, I already added the following lines into the file : /etc/sysctl.conf: : : net.inet.ip.portrange.lowfirst=2023 : net.inet.ip.portrange.first=2024 : : But net.inet.ip.portrange.lowfirst is still 1023!! although : net.inet.ip.portrange.first was changed into 2024 (this is of no : use..:(( ), so when I use amd, the sockets still use reserved : ports.(you can use netstat -a command to show the TCP/UDP ports in : use) and make my machine crazy and die. : : I want to know if we can find a configuration option to instruct amd : NOT to use reserved ports by deafault.. Thanks. : : : Yours sincerely, : : Guolin Cheng * Matt Heckaman - mailto:matt@lucida.qc.ca http://www.lucida.qc.ca/ * * GPG fingerprint - A9BC F3A8 278E 22F2 9BDA BFCF 74C3 2D31 C035 5390 * -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: http://www.lucida.qc.ca/pgp iD8DBQE563n5dMMtMcA1U5ARAgaeAKCNU7vngVhfJT4dE7w35hAuY5C5iwCfQ9J0 e5q1UO6VNSENiwL11uvdT7Q= =9BnD -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 15:20:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megamail.megared.com.mx [200.52.207.52]) by hub.freebsd.org (Postfix) with ESMTP id 24E7A37B66E for ; Mon, 16 Oct 2000 15:20:41 -0700 (PDT) Received: from luis.megared.net.mx (luis.corp.megared.net.mx [200.52.193.10]) by unix.megared.net.mx (8.11.0/8.11.0) with SMTP id e9GMGnc24551; Mon, 16 Oct 2000 17:16:51 -0500 (CDT) (envelope-from lcroker@megacable.com.mx) Date: Mon, 16 Oct 2000 17:23:28 -0500 From: Lu!s Croker To: Mark Hummel Cc: lcroker@unix.megared.net.mx, freebsd-questions@FreeBSD.ORG Subject: Re: mount a Cd ! Message-Id: <20001016172328.655498d3.lcroker@megacable.com.mx> In-Reply-To: <39EB776C.D56691E5@ispchannel.com> References: <39EB776C.D56691E5@ispchannel.com> X-Mailer: Sylpheed version 0.3.20 (GTK+ 1.2.8; FreeBSD 4.1-RELEASE; i386) Organization: Corporativo Meg@Red Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi... I changed the /etc/fstab in the line of the cdrom.... by /dev/acd0c, but now said me this.... # mount /cdrom cd9660: Device Busy I haven't mounted the device... what's wrong?? On Mon, 16 Oct 2000 16:47:24 -0500 Mark Hummel wrote: > Hi Luis, > > The command is mount /cdrom > > When you want to unmount it, the command is umount /cdrom > Make sure you're out of the cdrom directory before you unmount otherwise it > won't let you. > > Also, I notice your driver is /dev/acd0. I had some weird problems until I > added a "c" to the device to denote the entire cd. I don't understand why it > works, but it does now. Again my device is /dev/acd0c > > Mark > > Luis Croker wrote: > > > Hi !!! How I can to mount a Cdrom in FreeBsd 4.1 ??? I have this line > > in /etc/fstab.... > > # Device Mountpoint FStype Options Dump pass > > /dev/acd0 /cdrom cd9660 ro,noauto 0 0 > > > > When the box boots... the acd0 device knows the cdrom reader... > > What's the command to mount the cdrom ?? > > > > Greetings.... > > > > 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 Oct 16 15:26:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vines.webfront.net.au (vines.webfront.net.au [203.23.200.12]) by hub.freebsd.org (Postfix) with ESMTP id E9BD237B66D for ; Mon, 16 Oct 2000 15:26:10 -0700 (PDT) Received: from bargi.webfront.net.au ([203.23.200.87]) by vines.webfront.net.au (8.9.3/8.9.3) with ESMTP id JAA66973; Tue, 17 Oct 2000 09:25:41 +1100 (EST) Message-Id: <4.3.2.7.2.20001017092427.00c59ce0@203.23.200.12> X-Sender: bargi@203.23.200.12 X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Tue, 17 Oct 2000 09:28:04 +1000 To: Joel Bjork From: Raymond Brighenti Subject: Re: Poor network performance Cc: freebsd-questions@freebsd.org In-Reply-To: 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 Check the MTU/MRU settings on the Win box and see if they match the FreeBSD boxes settings Ray At 10:06 PM 16/10/00 +0200, you wrote: >I've set up a p133 as a firewall/gateway with 2 NIC's one for outside >traffic and one for internal traffic, the internal NIC is a 3com 905B >using the xl driver. It connects to another 905B over crossover cable to >my windows machine. When doing ftp transfers between the 2 internal boxes >performances is poor at the best, 202kB/sec. I've forced both nics to >100baseTX full-duplex but to no avail, the speed doesn't differ at all >from 10baseT/UTP half-duplex or any combination there of. > >I'm running NAT with rl0 as the natd_interface. > >Can anyone give me some hints as to what to look for? > >System information: >ifconfig xl0 >xl0: flags=8843 mtu 1500 > inet 192.168.3.2 netmask 0xffffff00 broadcast 192.168.3.255 > ether 00:10:5a:64:7b:5c > media: 100baseTX > supported media: autoselect 100baseTX 100baseTX > 100baseTX 10baseT/UTP 10baseT/UTP > 10baseT/UTP > >netstat -r >Routing tables > >Internet: >Destination Gateway Flags Refs Use Netif >Expire >default golden-16.hh.se UGSc 14 10818124 rl0 >localhost localhost UH 0 257696 lo0 >192.168.3 link#1 UC 0 0 xl0 >CHIPKO 0:10:5a:ca:a2:fb UHLW 4 245356 xl0 1119 >194.47.16.0 ff:ff:ff:ff:ff:ff UHLWb 0 7 rl0 => >194.47.16 link#2 UC 0 0 rl0 >golden-16.hh.se 0:30:96:2c:37:8 UHLW 14 0 rl0 1142 >L26-311 0:20:af:c0:ab:9d UHLW 0 34 rl0 985 >L22-109 52:54:0:da:ad:70 UHLW 0 8 rl0 1187 >L22-212 0:30:4f:6:2d:33 UHLW 24 7101136 lo0 > >CHIPKO is the name I've given to the windows box to make sharity-light >work. >L22-212 is the name of the FreeBSD box > > >uname -a >FreeBSD gs177.gsten.hh.se 3.5-RELEASE FreeBSD 3.5-RELEASE #2: Wed Jul 26 >10:49:51 CEST 2000 >chip@gs177.gsten.hh.se:/usr/src/sys/compile/LILLMATT i386 > >---------------------------------- >E-Mail: Joel Bjork >Date: 16-Oct-00 >Time: 22:06:51 >---------------------------------- > > >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 Oct 16 15:49:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 17CC837B66F for ; Mon, 16 Oct 2000 15:49:47 -0700 (PDT) Received: (qmail 91012 invoked from network); 16 Oct 2000 22:49:36 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 16 Oct 2000 22:49:36 -0000 Received: (qmail 6390 invoked from network); 16 Oct 2000 22:49:50 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 16 Oct 2000 22:49:50 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.0/8.11.0) id e9GMnWK07783; Mon, 16 Oct 2000 15:49:32 -0700 (PDT) (envelope-from mikko) Date: Mon, 16 Oct 2000 15:49:32 -0700 (PDT) From: Mikko Tyolajarvi Message-Id: <200010162249.e9GMnWK07783@explorer.rsa.com> To: peter@sysadmin-inc.com Cc: freebsd-questions@freebsd.org Subject: Re: ipfw startup Newsgroups: local.freebsd-security References: <001601c037b6$189ea6c0$47010a0a@fire.sysadmininc.com> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG (Cc: brutally changed to -questions) In local.freebsd-security you write: >I'm having difficulty getting ipfw to look at my ruleset on a 4.1-release >box. >i've compiled in the options needed to the kernel but when the box starts up >i get >IP packet filtering initialized...rule-based forwarding disabled, default to >deny... >and of course everything is denied except the loop back device. >I've been unable to find any basic get-you-started type info. I'm new to >ipfw and just want to use the default rc.firewall for now. Put: firewall_enable="YES" firewall_type="open" # Or maybe "simple" in /etc/rc.conf, to let everything through, and give you a chance of experimenting with ipfw. When you think you have a good ruleset to load, put it in a file (say /etc/ipfw.rules) and put firewall_type="/etc/ipfw.rules" in rc.conf. Or, if you feel like a real expert, roll your own firewall initialization script and set firewall_script=/etc/yourscript, replacing rc.firewall. >I've read the entire security chapter as well as the article on dialup >firewall configuration. >pointers to any helpful how to info or advice is greatly appreciated. ipfw(8) and /etc/rc.firewall perhaps? $.02, /Mikko P.S. Hmm... you mention dialup? ppp(8) has some filtering capabilities as well. They may well be sufficient, and will handle dynamic IP resulting from PPP negotiation. -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 16:14:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.eskimo.com (mx1.eskimo.com [204.122.16.48]) by hub.freebsd.org (Postfix) with ESMTP id B2CDB37B670 for ; Mon, 16 Oct 2000 16:14:02 -0700 (PDT) Received: from eskimo.com (ripper@eskimo.com [204.122.16.13]) by mx1.eskimo.com (8.9.1a/8.8.8) with ESMTP id QAA04163 for ; Mon, 16 Oct 2000 16:14:01 -0700 Received: (from ripper@localhost) by eskimo.com (8.9.1a/8.9.1) id QAA28780; Mon, 16 Oct 2000 16:14:00 -0700 (PDT) Date: Mon, 16 Oct 2000 16:14:00 -0700 (PDT) Message-Id: <200010162314.QAA28780@eskimo.com> From: Ross Lippert To: freebsd-questions@freebsd.org Subject: Intel Pro/100 VM Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a new machine with a Pro/100VM ethernet card. I'm not sure how I should configure the kernel to see it. Anyone have any suggestions? -r To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 16:18:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oddjob.adhesivemedia.com (oddjob.adhesivemedia.com [207.202.159.77]) by hub.freebsd.org (Postfix) with ESMTP id 9D07D37B670 for ; Mon, 16 Oct 2000 16:18:31 -0700 (PDT) Received: from localhost (philip@localhost) by oddjob.adhesivemedia.com (8.9.3/8.9.3) with ESMTP id QAA06427; Mon, 16 Oct 2000 16:18:23 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Date: Mon, 16 Oct 2000 16:18:23 -0700 (PDT) From: Philip Hallstrom To: UCTC Sysadmin Cc: Charlie Schloemer , "'freebsd-questions@freebsd.org'" Subject: Re: root is filling up! In-Reply-To: <39EB4BBC.B84A8A9D@transbay.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 I missed the first part of this thread, but *WHY* are you running netscape and gimp as root!?!?!? On Mon, 16 Oct 2000, UCTC Sysadmin wrote: > Make a symbolic link from /root to the user space for .netscape and nsmail and nsnews, > and .gimp* and anything else that eats space. > > Make / a big partition. > > Make something other than /root root's home directory (having /root the home dir > means you have root's home dir even if /usr and /var aren't mounted, but if /var > and /usr aren't mounted you're probably doing maintenance anyway and should have > what you need in other / directories - /bin, /sbin. > > > 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 Oct 16 16:42:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pc759.cs.msu.su (pc759.cs.msu.su [158.250.10.223]) by hub.freebsd.org (Postfix) with ESMTP id 47DD137B502 for ; Mon, 16 Oct 2000 16:42:09 -0700 (PDT) Received: from pc759.cs.msu.su (uucp@localhost) by pc759.cs.msu.su (8.9.3/8.9.3) with UUCP id EAA54913; Tue, 17 Oct 2000 04:04:50 +0400 (MSD) (envelope-from der@pc759.cs.msu.su) Received: from pc759.cs.msu.su (megagame.my.home [10.0.1.5]) by gateway.my.home (8.8.8/8.8.8) with ESMTP id UAA02956; Mon, 16 Oct 2000 20:24:21 +0400 (MSD) (envelope-from der@pc759.cs.msu.su) Message-ID: <39EB3AF5.2FC57564@pc759.cs.msu.su> Date: Mon, 16 Oct 2000 20:29:25 +0300 From: Alexander Derevyanko X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en,ru MIME-Version: 1.0 To: David Kanter Cc: FreeBSD questions Subject: Re: FTP is stalling References: <20001015225907.A3029@freebsd.mindspring.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David Kanter wrote: > > I'm trying to download the teTeX files but the download continually stalls > on the teTeX-texmf tarball at about 80 percent to 85 percent complete. This > happens no matter what ftp site I got to. > > I'm using the generic ftp. > > Any ideas? Interrupt transfer, connect again and use reget command. Also, you can install from ports something like lftp, which do it automatically. > -- > David Kanter > > 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 Oct 16 16:51:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from soda.csua.Berkeley.edu (soda.CSUA.Berkeley.EDU [128.32.43.52]) by hub.freebsd.org (Postfix) with ESMTP id 798C737B502 for ; Mon, 16 Oct 2000 16:51:47 -0700 (PDT) Received: from soda.csua.Berkeley.edu (localhost [127.0.0.1]) by soda.csua.Berkeley.edu (8.8.8/) via ESMTP id QAA25581; Mon, 16 Oct 2000 16:51:36 -0700 (PDT) env-from (ranga@CSUA.Berkeley.EDU) Message-Id: <200010162351.QAA25581@soda.csua.Berkeley.edu> To: "Marc Wandschneider" Cc: freebsd-questions@freebsd.org Subject: Re: UNIX Thread programming info? In-Reply-To: Your message of "Wed, 11 Oct 2000 15:10:15 +0200." <000c01c03384$9a2e5040$0800000a@lanfear.com> Date: Mon, 16 Oct 2000 16:51:35 -0700 From: Sriranga Veeraraghavan Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Take a look at: http://www.cs.ucr.edu/~sshah/pthreads/tutorial.html I've found it helpful in the past. The following book is also reasonable: Multithreaded Programming With Pthreads by Bil Lewis, Daniel J. Berg http://www.amazon.com/exec/obidos/ASIN/0136807291/qid=971740236/sr=1-1/104-1746814-3688769 HTH, ----ranga To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 17: 6:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from akira.lanfear.com (akira.lanfear.com [208.12.11.174]) by hub.freebsd.org (Postfix) with ESMTP id C507C37B66D for ; Mon, 16 Oct 2000 17:06:20 -0700 (PDT) Received: from jishin (dyn-dial3-134-sea.bazillion.com [64.92.50.134]) by akira.lanfear.com (8.9.3/8.9.3) with SMTP id RAA20233; Mon, 16 Oct 2000 17:05:57 -0700 (PDT) (envelope-from marcw@lanfear.com) Message-ID: <003401c03782$deab0540$0800000a@lanfear.com> From: "Marc Wandschneider" To: "Giorgos Keramidas" Cc: References: <000701c036d4$d6578340$0800000a@lanfear.com> <20001016065304.A66023@gray.westgate.gr> Subject: Re: AWK trivia Date: Mon, 16 Oct 2000 17:07:56 +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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > > I would try something like: > > % sed -e 's/[ ^I]*/:/' > > to make the first part of the line (the one including > SOME_SINGLE_WORD_STRING, in your example) be separated from the rest of > the line by a single ':' character. > > Then it should be fairly easy to have AWK print what you want. > thanks for the suggestions -- in the end, given that i was also hoping to support strings wrapping over newlines, i just wrote a 30 line c program to do it instead :-) marc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 17:30:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [209.0.55.68]) by hub.freebsd.org (Postfix) with ESMTP id D3C0637B503 for ; Mon, 16 Oct 2000 17:30:05 -0700 (PDT) Received: by moo.sysabend.org (Postfix, from userid 1004) id 683BB755B; Mon, 16 Oct 2000 17:30:17 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id 6588A1D8E for ; Mon, 16 Oct 2000 17:30:17 -0700 (PDT) Date: Mon, 16 Oct 2000 17:30:17 -0700 (PDT) From: Jamie Bowden To: questions@FreeBSD.org Subject: /usr/libexec/ld-elf.so.1 not found Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After my extensive battle with my hardware and getting freebsd 4.4.1-R to boot from CD, I have now hit another brick wall. I checked the ERRATA.TXT file and it's unchanged from original release. After a successfull install, sysinstall tells me to remove cds, floppies, anything else that might potentially boot instead of the internal hdd, etc. All is well and good, the machine comes back up, Boot Magic has an entry for FreeBSD's partition, things are going well. Then the kernel loads init. I get lots of errors about /usr/libexec/ld-elf.so.1 not found. I proceed to c-a-d, and boot single user. A quick cd into /usr/libexec and an ls later, I see the directory is empty, save ld.so.a. Now, I've been running FreeBSD for a long time, but I have yet to have this happen. Is this a known bug? Has anyone else run across this? Please CC me in all replys, as I am not sub'd to this list. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 18: 3:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 9BD0537B66D for ; Mon, 16 Oct 2000 18:03:57 -0700 (PDT) Received: from cm-206-31-81-152.gulfbreeze.mediacom.ispchannel.com ([206.31.81.152]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001017010628.ESN382.smtp2a@cm-206-31-81-152.gulfbreeze.mediacom.ispchannel.com>; Mon, 16 Oct 2000 18:06:28 -0700 Date: Mon, 16 Oct 2000 20:03:56 -0500 (CDT) From: "Steve V." To: Lu!s Croker Cc: Mark Hummel , lcroker@unix.megared.net.mx, freebsd-questions@FreeBSD.ORG Subject: Re: mount a Cd ! In-Reply-To: <20001016172328.655498d3.lcroker@megacable.com.mx> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try mount -t cd9660 /dev/acd0c /cdrom. It worked for me on FBSD4.1-S. You can also put this in a script file so all you will have to type in is a few keystrokes. I used a variant of the one found at www.mostgraveconcern.com/freebsd in the Miscellaneous section. Steve... On Mon, 16 Oct 2000, Lu!s Croker wrote: > > Hi... I changed the /etc/fstab in the line of the cdrom.... by /dev/acd0c, but now said me this.... > > # mount /cdrom > cd9660: Device Busy > > I haven't mounted the device... what's wrong?? > > On Mon, 16 Oct 2000 16:47:24 -0500 > Mark Hummel wrote: > > > Hi Luis, > > > > The command is mount /cdrom > > > > When you want to unmount it, the command is umount /cdrom > > Make sure you're out of the cdrom directory before you unmount otherwise it > > won't let you. > > > > Also, I notice your driver is /dev/acd0. I had some weird problems until I > > added a "c" to the device to denote the entire cd. I don't understand why it > > works, but it does now. Again my device is /dev/acd0c > > > > Mark > > > > Luis Croker wrote: > > > > > Hi !!! How I can to mount a Cdrom in FreeBsd 4.1 ??? I have this line > > > in /etc/fstab.... > > > # Device Mountpoint FStype Options Dump pass > > > /dev/acd0 /cdrom cd9660 ro,noauto 0 0 > > > > > > When the box boots... the acd0 device knows the cdrom reader... > > > What's the command to mount the cdrom ?? > > > > > > Greetings.... > > > > > > 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 Oct 16 18:22:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 9D3F037B479 for ; Mon, 16 Oct 2000 18:22:52 -0700 (PDT) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.9.3/8.9.3) with ESMTP id SAA71283; Mon, 16 Oct 2000 18:22:49 -0700 (PDT) Message-ID: <39EBAD37.D99ABB06@transbay.net> Date: Mon, 16 Oct 2000 18:36:55 -0700 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Philip Hallstrom Cc: Charlie Schloemer , "'freebsd-questions@freebsd.org'" Subject: Re: root is filling up! References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Philip Hallstrom wrote: > > I missed the first part of this thread, but *WHY* are you running netscape > and gimp as root!?!?!? Because he's a tough guy and so am I. :) Believe me, if it were MSware I /would/ beware. And, if something really bad happens and he loses all his files, well, he can just reinstall from scratch and start all over again. Some people never learn until they're burned. (I run netscape as root on one of my machines with nary a problem.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 18:33:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from marcy.nas.nasa.gov (marcy.nas.nasa.gov [129.99.113.17]) by hub.freebsd.org (Postfix) with ESMTP id E3D5B37B493 for ; Mon, 16 Oct 2000 18:33:12 -0700 (PDT) Received: from localhost (lamaster@localhost) by marcy.nas.nasa.gov (8.9.3/NAS8.8.7n) with ESMTP id SAA02891 for ; Mon, 16 Oct 2000 18:33:07 -0700 (PDT) Date: Mon, 16 Oct 2000 18:33:05 -0700 (PDT) From: Hugh LaMaster Reply-To: lamaster@nas.nasa.gov To: freebsd-questions@freebsd.org Subject: Failure to mount root filesystem after building new kernel 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 Following my previous custom, I did the following: I upgraded to 4.1-RELEASE, installed 4.1 RELEASE GENERIC kernel, but, have trouble running a newly built kernel, including GENERIC, so: - CVsup the 4.1 stable source tree, - cd to /usr/src - "make buildworld" - no problems - "make installworld" - no problems - reboot, old kernel works fine, (of course, can't "ps" etc.) - cd to /usr/src/sys/i386/conf - config new GENERIC kernel, make depend, make, make install, reboot Then, new GENERIC kernel can't mount root filesystem, boot process hangs, I unload new GENERIC kernel, load old kernel, and life goes on. So, I must be forgetting some step or don't know about some new step. I'm running a GENERIC kernel that the release process built, why can't I build and run a GENERIC kernel that I built? What am I forgetting? A few system specifics: SuperMicro motherboard, 400 MHz P II, Buslogic SCSI controller, IBM SCSI disks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 18:37:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from SOEMAIL.soe.uq.edu.au (soecn1.soe.uq.edu.au [130.102.29.71]) by hub.freebsd.org (Postfix) with ESMTP id 6695037B4A4 for ; Mon, 16 Oct 2000 18:37:30 -0700 (PDT) Received: by soemail.soe.uq.edu.au with Internet Mail Service (5.5.2650.21) id ; Tue, 17 Oct 2000 11:37:09 +1000 Message-ID: <79373D1C5F67D411A14200D0B76DFC0B4AE6@soemail.soe.uq.edu.au> From: Matthew Swinbourne To: 'Luan Tran' , freebsd-questions@FreeBSD.ORG Subject: RE: 3Com 3C589 Date: Tue, 17 Oct 2000 11:37:08 +1000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Luan, You may have to get the card config util from 3com.com and turn the plug and play off and fix the irq and io to something common like 10 and 310 or something. That what I had to do. Thanks Matt -----Original Message----- From: Luan Tran [mailto:teazie98@yahoo.com] Sent: 14 October 2000 11:53 To: freebsd-questions@FreeBSD.ORG Subject: 3Com 3C589 Hi- I'm running FreeBSD 4.0-RELEASE with generic kernel built on my laptop. Error messages are: /kernel: ep0: No I/O space?! pccardd[183]: Driver allocation failed for 3Com Corporation(3c589) (3 times) /etc/rc.conf: pccard_enable="YES" network_interfaces="ep0 lo0" ifconfig_pccard="inet 192.168.1.5 netmask 255.255.255.0" defaultrouter="192.168.1.1" /etc/pccard.conf # Generally available IO ports io 0x240-0x360 # IRQs irc 3 10 11 13 15 memory 0xd4000 96K # 3Com Etherlink III 3c589B, 3c589C card "3Com Corporation" "3C589" config 0x1 "ep0" ? insert logger -t pccard:$device -s 3Com EtherLink III inserted insert /etc/pccard_ether $device -link0 link1 .... Anyone has this card working for 4.0 RELEASE? Thanks!! __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 18:38:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 8BBB137B4AB for ; Mon, 16 Oct 2000 18:38:44 -0700 (PDT) Received: from opal (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with ESMTP id VAA19506; Mon, 16 Oct 2000 21:35:23 -0400 (EDT) Date: Mon, 16 Oct 2000 21:34:45 -0400 (EDT) From: Zhiui Zhang X-Sender: zzhang@opal To: "Shen, Qifeng" Cc: "'questions@freebsd.org'" Subject: Re: source code for FreeBSD In-Reply-To: <5B38C8A7BD6AD311A1BC009027B6C224014648B2@pine.sycamorenet.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 Oct 2000, Shen, Qifeng wrote: > > Hi, > > I have a CD that came with "FreeBSD Handbook" edited by Jim Mock. > The reason I got the book and the CD is to look into the source code. > I'd like to know if is possible to get the source code out of the CD in a > readable format without actually installed BSD on my PC (Windows NT). > If it is, would you let me know how. Of course, if you have a web/ftp site > that I get source code from, it may even be better. Mount your CD-ROM on a Unix machine (Sun, Linux, or FreeBSD) and then do: # cd /src # sh install.sh DESTDIR= Replace and with real directory names. If it does not work, try modify install.sh a little bit. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 18:52: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 88FED37B483 for ; Mon, 16 Oct 2000 18:51:53 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id SAA01100; Mon, 16 Oct 2000 18:51:50 -0700 Message-ID: <39EBB0B6.4E2B164A@urx.com> Date: Mon, 16 Oct 2000 18:51:50 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: lamaster@nas.nasa.gov Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Failure to mount root filesystem after building new kernel References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hugh LaMaster wrote: > > Following my previous custom, I did the following: > > I upgraded to 4.1-RELEASE, installed 4.1 RELEASE GENERIC kernel, > but, have trouble running a newly built kernel, including GENERIC, > so: > > - CVsup the 4.1 stable source tree, > > - cd to /usr/src > > - "make buildworld" - no problems > > - "make installworld" - no problems > > - reboot, old kernel works fine, (of course, can't "ps" etc.) > > - cd to /usr/src/sys/i386/conf > > - config new GENERIC kernel, make depend, make, make install, reboot > > Then, new GENERIC kernel can't mount root filesystem, boot process > hangs, I unload new GENERIC kernel, load old kernel, and life goes on. > > So, I must be forgetting some step or don't know about some new > step. I'm running a GENERIC kernel that the release process built, > why can't I build and run a GENERIC kernel that I built? > > What am I forgetting? What version of system did you start out with before the cvsup to RELENG_4? Because of the many choices, it sounds like you could have started out with a 3.x system and forgot to upgrade from wd to ad style file systems or you might have used a 3.x config file. You could have used an old stable-supfile and cvsuped to different version. What does a "uname -a" show? In /usr/src/UPDATING, after a cvsup they tell you to use To update from 4.0-RELEASE or later to the most current 4.x-STABLE ---------- make buildworld make buildkernel KERNEL=YOUR_KERNEL_HERE make installkernel KERNEL=YOUR_KERNEL_HERE reboot (in single user) [1] make installworld mergemaster reboot For a GENERIC kernel you would replace YOUR_KERNEL_HERE with GENERIC Kent > > A few system specifics: > > SuperMicro motherboard, 400 MHz P II, Buslogic SCSI controller, > IBM SCSI disks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 19:27:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from spdmraab.compuserve.com (ds-img-rel-2.compuserve.com [149.174.206.155]) by hub.freebsd.org (Postfix) with ESMTP id 271A237B4C5 for ; Mon, 16 Oct 2000 19:27:52 -0700 (PDT) Received: (from mailgate@localhost) by spdmraab.compuserve.com (8.9.3/8.9.3/SUN-REL-1.3) id WAA21115 for freebsd-questions@freebsd.org; Mon, 16 Oct 2000 22:27:51 -0400 (EDT) Received: from smartsoft.cc (atl-tgn-yfs-vty147.as.wcom.net [216.192.190.147]) by spdmraab.compuserve.com (8.9.3/8.9.3/SUN-REL-1.3) with ESMTP id WAA21098 for ; Mon, 16 Oct 2000 22:27:44 -0400 (EDT) Message-ID: <39EBB823.8B7EE26E@smartsoft.cc> Date: Mon, 16 Oct 2000 22:23:31 -0400 From: Jan Knepper Organization: Smartsoft, LLC X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: E-Mail collector on the freebsd.org majordomo lists. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Something just struck me a minute ago as I received spam on an e-mail address I only used once to post a message on one of the freebsd majordomo mailing lists. My impression is that some e-mail-addresses-cd-rom-creating-company is subscribed to one or all of the list and collects e-mail addresses of people posting to the lost that way. Is there any easy way to get around this? I think I noticed that egroups.com strips part of the e-mail address so it becomes unusable. Currently I report any span at http://www.spamcop.net/ but I am pretty mich getting tired of receiving spam at all. Some one have any brilliant idea's???? Don't worry, be Kneppie! Jan -- Jan Knepper Smartsoft, LLC 88 Petersburg Road Petersburg, NJ 08270 U.S.A. http://www.smartsoft.cc/ http://www.mp3.com/pianoprincess Phone : 609-628-4260 FAX : 609-628-1267 FAX : 303-845-6415 http://www.fax4free.com/ Phone : 020-873-3837 http://www.xoip.nl/ (Dutch) FAX : 020-873-3837 http://www.xoip.nl/ (Dutch) In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 19:34: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailrelay.theboss.net (mailrelay.theboss.net [206.191.102.53]) by hub.freebsd.org (Postfix) with ESMTP id 9F4FB37B479 for ; Mon, 16 Oct 2000 19:34:03 -0700 (PDT) Received: from chris ([206.191.102.240]) by mailrelay.theboss.net (8.9.1b+Sun/8.9.1) with SMTP id UAA21583 for ; Mon, 16 Oct 2000 20:31:20 -0600 (MDT) Message-ID: <000501c037ea$c19953e0$f066bfce@chris> From: "Chris Moline" To: Subject: What to use for my hostname? Date: Mon, 16 Oct 2000 20:31:33 -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 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. I recently got a us robotics external modem and have been setting it up. However I don't know what to use for my domain name. Can it be whatever I want? I mostly use my computer for dial up access to my isp. so in that case would my domain be username.isp.net?? or just isp.net? Does it matter?? Any help would be appreciated. TIA, Chris Moline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 19:39:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shell.nominum.com (shell.nominum.com [204.152.187.59]) by hub.freebsd.org (Postfix) with ESMTP id 02F6837B4D7 for ; Mon, 16 Oct 2000 19:39:33 -0700 (PDT) Received: by shell.nominum.com (Postfix, from userid 10188) id E74853190E; Mon, 16 Oct 2000 19:39:32 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by shell.nominum.com (Postfix) with ESMTP id E440F2DC0B for ; Mon, 16 Oct 2000 19:39:32 -0700 (PDT) Date: Mon, 16 Oct 2000 19:39:32 -0700 (PDT) From: Peter Losher To: freebsd-questions@freebsd.org Subject: Problems w/ a2ps v4.13 port... 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 CC: Port Maintainer I updated my a2ps port from v4.12 to 4.13 today and after installation, I keep getting this error when invoking a2ps: a2ps:/usr/local/share/a2ps/sheets/sheets.map:50: unexpected character `*' Line 50 is: 49:# Default language 50:* plain a2ps does work when I invoke it with the '-=mail' flag (but that just works on plaintext, and I use the driver to print other file types in duplex on one printer here) Has anything been changed in the parsing of the sheets.map file that would cause this error? Thanks for any help in advance. -Peter -- Peter Losher Systems Admin. - Nominum, Inc. PGP key available on request To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 19:42:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from resstor.ndsu.nodak.edu (resstor.ndsu.NoDak.edu [134.129.111.204]) by hub.freebsd.org (Postfix) with ESMTP id 2209137B4C5 for ; Mon, 16 Oct 2000 19:42:49 -0700 (PDT) Received: from ndsu.nodak.edu (marathon.reed.ndsu.NoDak.edu [134.129.54.1]) by resstor.ndsu.nodak.edu (8.9.3/8.9.3) with ESMTP id VAA29765 for ; Mon, 16 Oct 2000 21:42:47 -0500 Message-ID: <39EBBC97.8BB8EE9E@ndsu.nodak.edu> Date: Mon, 16 Oct 2000 21:42:31 -0500 From: Jeff Blaufuss X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Emacs indent Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How do I configure emacs to indent 4 spaces on normal text files and not use the tabs stops? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 19:49: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 97B5837B4FE for ; Mon, 16 Oct 2000 19:48:56 -0700 (PDT) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id e9H2mmN11264; Mon, 16 Oct 2000 21:48:48 -0500 (CDT) (envelope-from dan) Date: Mon, 16 Oct 2000 21:48:47 -0500 From: Dan Nelson To: Jan Knepper Cc: FreeBSD Questions Subject: Re: E-Mail collector on the freebsd.org majordomo lists. Message-ID: <20001016214847.A9400@dan.emsphone.com> References: <39EBB823.8B7EE26E@smartsoft.cc> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: <39EBB823.8B7EE26E@smartsoft.cc>; from "Jan Knepper" on Mon Oct 16 22:23:31 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Oct 16), Jan Knepper said: > Something just struck me a minute ago as I received spam on an e-mail > address I only used once to post a message on one of the freebsd > majordomo mailing lists. My impression is that some > e-mail-addresses-cd-rom-creating-company is subscribed to one or all > of the list and collects e-mail addresses of people posting to the > lost that way. Is there any easy way to get around this? I think I > noticed that egroups.com strips part of the e-mail address so it > becomes unusable. Only on the webpages. Egroups subscribers always see unmangled emails. > Currently I report any span at http://www.spamcop.net/ but I am > pretty mich getting tired of receiving spam at all. > > Some one have any brilliant idea's???? Create a new userid for each list (a simple user+ would suffice) and block any incoming mail that doesn't CC: the correct list or isn't a reply to a list email? Trying to keep track of recent list traffic could get a bit complicated, but it'd pretty much filter out all spam. At minimum, configure sendmail to use the RBL. RBL, DUL, and RSS are pretty conservative (i.e. if you get mail from a site on one of these lists, it's almost always spam), but I also like orbs. You could also block emails from machines with no reverse DNS or reverse that doesn't match forward DNS: FEATURE(dnsbl)dnl FEATURE(dnsbl,`dialups.mail-abuse.org',`Mail from dial-up $&{client_addr} rejected; see http://mail-abuse.org/dul/enduser.htm')dnl FEATURE(dnsbl,`relays.mail-abuse.org',`Abused email relay $&{client_addr} rejected; see http://mail-abuse.org/rss/')dnl FEATURE(dnsbl,`relays.orbs.org',`Open email relay $&{client_addr} rejected; see http://www.orbs.org/')dnl LOCAL_RULESETS SLocal_check_rcpt # check client name: did it resolve? R$* $: < $&{client_resolve} > R $#error $@ 4.7.1 $: "450 Cannot resolve PTR record for " $&{client_addr} R $#error $@ 5.7.1 $: "550 IP name possibly forged " $&{client_name} R $#error $@ 5.7.1 $: "550 IP name lookup failed " $&{client_name} -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 20: 1:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.southwind.net (jasper.southwind.net [206.53.103.7]) by hub.freebsd.org (Postfix) with ESMTP id 1A43A37B692 for ; Mon, 16 Oct 2000 19:57:31 -0700 (PDT) Received: from localhost (gmains@localhost) by jasper.southwind.net (8.10.1/8.10.1) with ESMTP id e9H2vO925143 for ; Mon, 16 Oct 2000 21:57:25 -0500 (CDT) X-Authentication-Warning: jasper.southwind.net: gmains owned process doing -bs Date: Mon, 16 Oct 2000 21:57:24 -0500 (CDT) From: Gabriel To: freebsd-questions@freebsd.org Subject: GTK libs... 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 compile pan newsreader on a 4.1.1-RELEASE system and the ./configure output fails as follows: [snip] checking for strtok... yes checking for stristr... no checking for strrstr... no checking for strirstr... no checking for stoupper... no checking for stolower... no checking for strrchr... (cached) yes checking for strerror... (cached) yes checking host system type... i386-unknown-freebsdelf4.1.1 checking for library containing pthread_create... -lc_r checking for dbopen... yes checking for db.h... yes checking for db_185.h... no checking for db1/db.h... no checking for glib-config... no checking for GLIB - version >= 1.2.7... no *** The glib-config script installed by GLIB could not be found *** If GLIB was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GLIB_CONFIG environment variable to the *** full path to glib-config. configure: error: *** GLIB 1.2.7 or better is required. The latest version of GLIB *** is always available from ftp://ftp.gtk.org/. I have installed the gtk 1.2.8 and 1.3.1 ports and it still will not compile. Does anyone have any clue as to why it is failing? Thanks, Gabriel =============================================================================== ------------------------------------------------------------------------------- Gabriel SouthWind Internet Access, Inc. Department Manager 120 S. Market SouthWind Technical Support 800-525-7963 ------------------------------------------------------------------------------- This message has been answered by the OneMain.com Kansas Technical Support Staff. Serving the OneMain.com family of Companies in Kansas: fn.net, hit.net, and southwind.net. ------------------------------------------------------------------------------- =============================================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 20:13:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id A0B5E37B4C5 for ; Mon, 16 Oct 2000 20:13:43 -0700 (PDT) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id e9H3DfF15738; Mon, 16 Oct 2000 22:13:41 -0500 (CDT) (envelope-from dan) Date: Mon, 16 Oct 2000 22:13:41 -0500 From: Dan Nelson To: Gabriel Cc: freebsd-questions@FreeBSD.ORG Subject: Re: GTK libs... Message-ID: <20001016221341.B9400@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: ; from "Gabriel" on Mon Oct 16 21:57:24 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Oct 16), Gabriel said: > I am trying to compile pan newsreader on a 4.1.1-RELEASE system and the > ./configure output fails as follows: > checking for GLIB - version >= 1.2.7... no > *** The glib-config script installed by GLIB could not be found > *** If GLIB was installed in PREFIX, make sure PREFIX/bin is in > *** your path, or set the GLIB_CONFIG environment variable to the > *** full path to glib-config. > configure: error: > *** GLIB 1.2.7 or better is required. The latest version of GLIB > *** is always available from ftp://ftp.gtk.org/. > > I have installed the gtk 1.2.8 and 1.3.1 ports and it still will not > compile. Does anyone have any clue as to why it is failing? Are you compiling pan from the ports tree? Try adding "USE_GLIB=yes" to the port Makefile. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 20:30:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from student.netserv.chula.ac.th (student.netserv.chula.ac.th [161.200.192.18]) by hub.freebsd.org (Postfix) with ESMTP id 8940437B4E5 for ; Mon, 16 Oct 2000 20:30:25 -0700 (PDT) Received: from lodoserver (ppp-153.netserv.chula.ac.th [161.200.129.153]) by student.netserv.chula.ac.th (8.9.3/8.9.3) with SMTP id KAA13545 for ; Tue, 17 Oct 2000 10:30:06 +0700 (GMT+0700) From: "Suttiwat Youngklai" <00557321@student.chula.ac.th> To: Subject: Please Suggest me about 'Writing Pseudo Device' Date: Tue, 17 Oct 2000 10:35:53 +0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-874" Content-Transfer-Encoding: base64 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG SGksDQoJUGxlYXNlIGdpdmUgYSBzdWdlc3Rpb24gdG8gbWUgYWJvdXQgaG93IHRvIFdyaXRpbmcg UHNldWRvIERldmljZSBEcml2ZXIgYW5kIGxpbmsgaW50byBrZXJuZWwuDQoNCglUaGFuayB5b3UN Cg0KICAgICBTdXR0aXdhdCBZb3VuZ2tsYWkuDQo9PT09PT09PT09PT09PT09PQ0K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 20:44:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web6305.mail.yahoo.com (web6305.mail.yahoo.com [128.11.22.142]) by hub.freebsd.org (Postfix) with SMTP id A44C637B4C5 for ; Mon, 16 Oct 2000 20:44:38 -0700 (PDT) Message-ID: <20001017034438.29793.qmail@web6305.mail.yahoo.com> Received: from [64.161.130.86] by web6305.mail.yahoo.com; Mon, 16 Oct 2000 20:44:38 PDT Date: Mon, 16 Oct 2000 20:44:38 -0700 (PDT) From: Christian Lacunza Subject: Re: Emacs indent To: Jeff Blaufuss Cc: 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 > How do I configure emacs to indent 4 spaces on normal text files and not > use the tabs stops? hi Jeff. try this ... to prevent emacs from using tab characters for indentation: (setq-default indent-tabs-mode 'nil) to indent 4 spaces in text-mode: (defun four-space-tab-stops () "makes [tab] do tab-to-tab-stop instead of indent-relative" (setq tab-stop-list '(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100 104 108 112 116 120)) (local-set-key [tab] 'tab-to-tab-stop) ) (add-hook 'text-mode-hook 'four-space-tab-stops) -- christian. __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 21: 3:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id D250537B4D7 for ; Mon, 16 Oct 2000 21:03:25 -0700 (PDT) Received: from hades.hell.gr (patr530-b094.otenet.gr [195.167.121.222]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e9H41ne20370; Tue, 17 Oct 2000 07:01:50 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id e9GJ3XK09250; Mon, 16 Oct 2000 22:03:33 +0300 (EEST) Date: Mon, 16 Oct 2000 22:03:32 +0300 From: Giorgos Keramidas To: Pierre Robidoux Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Choice of OS Message-ID: <20001016220331.B626@hades.hell.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from pierre_robidoux@radio-canada.ca on Mon, Oct 16, 2000 at 01:36:37PM -0400 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Oct 16, 2000 at 01:36:37PM -0400, Pierre Robidoux wrote: > Hi, > > At BSDi web site, they offer 3 OS. (BSD/OS, FreeBSD and Slackware/Linux). ... > Why paying the price of BSD/OS if FreeBSD is the same ? > (I thing that there is a difference ... but ... what is that difference?) In some environment, it is common to prefer a solution that has a commercial vendor behind it. There you can go BSD/OS if you prefer it. Not that BSD/OS is infefior to FreeBSD. Each of them has it's own merits and disadvantages. > Why should I buy FreeBDI instead of a Linux distribution ? Because the little red devil is way more beautiful than the penguin. Because if you learn working in one BSD, then all of them will seem similar to you. I've worked with both FreeBSD and OpenBSD at home, and have seen a NetBSD installation. I feel that I can install any of the three on my home box alone. Try doing that with the zillions of Linux distributions. As the saying goes: FreeBSD is a complete operating system. Linux is just a Unix-like kernel surrounded by all the GNUs of the world. -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 21:46:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web5205.mail.yahoo.com (web5205.mail.yahoo.com [216.115.106.86]) by hub.freebsd.org (Postfix) with SMTP id 3927137B4C5 for ; Mon, 16 Oct 2000 21:46:19 -0700 (PDT) Message-ID: <20001017044615.12369.qmail@web5205.mail.yahoo.com> Received: from [202.159.47.162] by web5205.mail.yahoo.com; Mon, 16 Oct 2000 21:46:15 PDT Date: Mon, 16 Oct 2000 21:46:15 -0700 (PDT) From: engel lubis Subject: kaga jelaaaaaaaaaassssssssssssssssss To: "Noval H. Assegaf" , Eko Yonatan Idris , yunike@softhome.net, Tukang Semir , Tukang Sampah , Tukang Kebun , tipoet@hotmail.com, thefajar@hotmail.com, "Sari ( UII Jogya )" , Reza@car.co.id, r_indriani@yahoo.com, ntserver/asialog@cbn.net.id, Lulu Zuhdiyya , Lia.Muliani@axa-life.co.id, ikemalik@hotmail.com, Hasianna Novia Shintasari , hasan_farid@hotmail.com, freebsd-questions@FreeBSD.ORG, Dewi.Puji@axa-life.co.id, deselffina@yahoo.com, bowo@beenet2000.com, Bakti Aditama , aries@beenet2000.com, Aries , Adrian Mardanugraha Subakti MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cerita tentang apaan tuh "ketangkep basah". Kaga ade sambungannye lagi??????????????? --- "Noval H. Assegaf" wrote: > Ketangkap Basah....! > ----- Original Message ----- > From: Eko Yonatan Idris > To: yunike@softhome.net ; Tukang Semir ; Tukang > Sampah ; Tukang Kebun ; tipoet@hotmail.com ; > thefajar@hotmail.com ; Sari ( UII Jogya ) ; > Reza@car.co.id ; r_indriani@yahoo.com ; > ntserver/asialog@cbn.net.id ; Noval H Assegaf ; Lulu > Zuhdiyya ; Lia.Muliani@axa-life.co.id ; > ikemalik@hotmail.com ; Hasianna Novia Shintasari ; > hasan_farid@hotmail.com ; > freebsd-questions@FreeBSD.ORG ; engelpy@yahoo.com ; > Dewi.Puji@axa-life.co.id ; deselffina@yahoo.com ; > bowo@beenet2000.com ; Bakti Aditama ; > aries@beenet2000.com ; Aries ; Adrian Mardanugraha > Subakti > Sent: Saturday, September 02, 2000 4:16 PM > Subject: Fw: Ketangkap Basah....! > > > > ----- Original Message ----- > From: Johant@office.vision.net.id > To: ade_rosa@mailcity.com ; a_willyam@yahoo.com ; > ameliakowinto@hotmail.com ; > s801630@student.uq.edu.au ; holysen@hotmail.com ; > antoniuswinata@yahoo.com ; ariani_jingga@hotmail.com > ; sean_asia@yahoo.com ; bett_ega8@mailcity.com ; > chaishia_t@yahoo.com ; charles_thomas@hotmail.com ; > michi51@hotmail.com ; Christina_nini@hotmail.com ; > d_syabana@hotmail.com ; ibrahim_daniel@hotmail.com ; > doinx@eudoramail.com ; davechen@cbn.net.id ; > echo_eyi@hotmail.com ; elisa_endang@yahoo.com ; > elly.tan@angelfire.com ; elly_huang@hotmail.com ; > lyliput@hotmail.com ; tanita_el@yahoo.com ; > cupid_angel@eudoramail.com ; eny_halim@hotmail.com ; > muncai@hotmail.com ; pong@chickmail.com ; > evianne_t@yahoo.com ; fang_lily@yahoo.com ; > setan_88@yahoo.com ; fendiana_jones@yahoo.com ; > feling_indo@yahoo.com ; filbert@centrin.net.id ; > fubox@usa.net ; shieling88@hotmail.com ; > wanthanmie@hotmail.com ; harrykwank@yahoo.com ; > cien_s@yahoo.com ; huang2@lovemail.com ; > irenatanizar@hotmail.com ; ivanahalim@usa.net ; > jqoscar@singnet.com.sg ; devil_kyo@hotmail.com ; > jemmy_t@yahoo.com ; popo_98_98@yahoo.com ; > jenny.j@chickmail.com ; jfulling@hotmail.com ; > yomutiara@hotmail.com ; jonny_str@mailcity.com ; > juli_80@hotmail.com ; julie_ega4@chickmail.com ; > kev_jiang@softhome.net ; liee_ega5@chickmail.com ; > aling_99@yahoo.com ; li3n24@hotmail.com ; > liz_wong@chickmail.com ; ly_39@mailcity.com ; > lisah_liang@hotmail.com ; luii_ega1@lovemail.com ; > magel_21@yahoo.com ; mynn_ega3@chickmail.com ; > n4t@hotmail.com ; yin@purinmail.com ; > fang0678@yahoo.com ; cien_cien@chickmail.com ; > lnvd_sky@yahoo.com ; peterh@indo.net.id ; > apin@coolmail.com ; pras_yudo@hotmail.com ; > sleepless78@usa.net ; r_erwin@hotmail.com ; > rukitan@rocketmail.com ; Lie_rusly@yahoo.com ; > yen_pitt@coolmail.com ; > email.sahman_rejeki@hotmail.com ; > arty_mouse@yahoo.com ; amoy407@yahoo.com ; > vivy_c@hotmail.com ; stepgoz@hotmail.com ; > sj_plus@mailcity.com ; liepheisan@hotmail.com ; > aizhan@lovemail.com ; french_04@yahoo.com ; > ekin_lim@hotmail.com ; lisa_cute1981@hotmail.com ; > Vell_ega2@hotmail.com ; jasmine.hg@eudoramail.com ; > garlyi@hotmail.com ; ericsson@sby.centrin.net.id > Sent: 01 September 2000 7:46 > Subject: Ketangkap Basah....! > > > Malam itu udara begitu dingin karena hujan yang > cukup > lebat.....hiihhh..dingin...... > tiba2 lampu mati dan mereka tidak sanggup lagi > menahan hasrat yang membara > ....Saat itu mereka tahu bahwa mereka memang harus > bersama, walaupun mereka > tahu hubungan itu tidak benar, tetapi rasanya > begitu....mmmm......indah... > Tiba2 lampu menyala lagi.......dan...... > > > > __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 22:33:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (oe35.law8.hotmail.com [216.33.240.92]) by hub.freebsd.org (Postfix) with ESMTP id 0DD5F37B4FE for ; Mon, 16 Oct 2000 22:33:20 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Oct 2000 22:33:19 -0700 X-Originating-IP: [165.228.128.10] From: "Dre" To: Subject: boot disk Date: Tue, 17 Oct 2000 13:29:45 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C0383E.503BAD70" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2918.2701 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2918.2701 Message-ID: X-OriginalArrivalTime: 17 Oct 2000 05:33:19.0920 (UTC) FILETIME=[C21A5B00:01C037FB] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C0383E.503BAD70 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm not able to copy the .flp file onto the floppy as these files are = more the 1.44MB. is there any other way that I could copy this files? I even tried the c:\fdimage kern.flp a: It still doesn't work. pls help thanks kumaresan.arumugam@my.pwcglobal.com ------=_NextPart_000_0005_01C0383E.503BAD70 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'm not able to copy the .flp file onto = the floppy=20 as these files are more the 1.44MB.
is there any other way that I could = copy this=20 files? I even tried the
 
c:\fdimage kern.flp a:
 
It still doesn't work.
 
pls help
thanks
 
kumaresan.arumugam@my= pwcglobal.com
 
------=_NextPart_000_0005_01C0383E.503BAD70-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 22:58:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 183E737B4D7 for ; Mon, 16 Oct 2000 22:58:32 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9H5wUk08110; Mon, 16 Oct 2000 22:58:30 -0700 (PDT) Date: Mon, 16 Oct 2000 22:58:30 -0700 From: Alfred Perlstein To: Dre Cc: questions@FreeBSD.ORG Subject: Re: boot disk Message-ID: <20001016225830.O272@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from kasier@hotmail.com on Tue, Oct 17, 2000 at 01:29:45PM +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Dre [001016 22:33] wrote: > I'm not able to copy the .flp file onto the floppy as these files are more the 1.44MB. > is there any other way that I could copy this files? I even tried the > > c:\fdimage kern.flp a: > > It still doesn't work. Well 'fdimage' is really the only way to do the copy, if it's not working then you should try to do a format of the floppy disk to make sure it doesn't have any defects or try to download the kern.flp image again (make sure you tell your FTP client to use 'binary mode'). -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 23:19:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from jhb-proxy.mweb.co.za (jhb-proxy.mweb.co.za [196.2.48.243]) by hub.freebsd.org (Postfix) with ESMTP id 3A89737B4E5 for ; Mon, 16 Oct 2000 23:19:11 -0700 (PDT) Received: from sparrow ([196.7.200.150]) by jhb-proxy.mweb.co.za (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) with SMTP id <0G2K0024S9IO9S@jhb-proxy.mweb.co.za> for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 08:18:26 +0200 (GMT-2) Date: Tue, 17 Oct 2000 08:18:29 -0200 From: Gil Bauman Subject: Ver 4.1 X-Server Display interface & Monitor To: FreeBSD Questions Message-id: <00c001c03823$98d54b60$23c907c4@sparrow> MIME-version: 1.0 X-Mailer: Microsoft Outlook Express 5.00.2615.200 Content-type: multipart/alternative; boundary="----=_NextPart_000_00BD_01C03812.D4CF5C20" X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 X-Priority: 3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_00BD_01C03812.D4CF5C20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi I've just installed Version 4.1 and I can not get the X-Server working = properly. What parameters do I need to select for the display interface: ASUS = V3800 and for the monitor HP D1199A? Thanks, Gil gil@ct.spi.co.za ------=_NextPart_000_00BD_01C03812.D4CF5C20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi
 
I've just installed Version 4.1 and I = can not get=20 the X-Server working properly.
 
What parameters do I need to select for = the display=20 interface: ASUS V3800 and for the monitor HP D1199A?
 
Thanks,
 
Gil
 
gil@ct.spi.co.za
 
------=_NextPart_000_00BD_01C03812.D4CF5C20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 23:19:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web5302.mail.yahoo.com (web5302.mail.yahoo.com [216.115.106.111]) by hub.freebsd.org (Postfix) with SMTP id 36DDE37B4E5 for ; Mon, 16 Oct 2000 23:19:56 -0700 (PDT) Message-ID: <20001017061952.17460.qmail@web5302.mail.yahoo.com> Received: from [162.42.8.21] by web5302.mail.yahoo.com; Mon, 16 Oct 2000 23:19:52 PDT Date: Mon, 16 Oct 2000 23:19:52 -0700 (PDT) From: george vagner Subject: UDF cdroms To: 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 I have some cdroms that were created using ezcdcreator that uses a "UDF" format and i was trying to mount them or even copy them completely using cdrecord and I realized that freebsd cant read them. So is there any way that it can be read using freebsd to make a copy? i was thinking i could make an ISO image after mounting it and then burn a real cd out of it but first i gotta figure out how to mount it. maybe... mount_UDF would be a nice addition to the various tools. any ideas anyone? cant subscribe to list cause my hostname cant be found? george@vagner.com __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.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 Oct 16 23:32: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ren.sasknow.com (ren.sasknow.com [207.195.92.131]) by hub.freebsd.org (Postfix) with ESMTP id 75FCE37B4E5 for ; Mon, 16 Oct 2000 23:32:02 -0700 (PDT) Received: from localhost (ryan@localhost) by ren.sasknow.com (8.9.3/8.9.3) with ESMTP id AAA70792; Tue, 17 Oct 2000 00:37:00 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Tue, 17 Oct 2000 00:37:00 -0600 (CST) From: Ryan Thompson To: Chris Moline Cc: freebsd-questions@FreeBSD.ORG Subject: Re: What to use for my hostname? In-Reply-To: <000501c037ea$c19953e0$f066bfce@chris> Message-ID: Organization: SaskNow Technologies [www.sasknow.com] MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chris Moline wrote to freebsd-questions@FreeBSD.ORG: > Hi. I recently got a us robotics external modem and have been setting > it up. However I don't know what to use for my domain name. Can it be > whatever I want? I mostly use my computer for dial up access to my > isp. so in that case would my domain be username.isp.net?? or just > isp.net? Does it matter?? In 99% of all cases of this nature, "Does not matter" is usually accurate. Dialup usually equates to dynamic DNS and IP... Therefore, your hostname will never be fixed. It is quite safe to make something up... But, for your own sake, don't use something that already exists elsewhere. The system's hostname (as set by hostname(8)) is actually used in suprisingly few places on most systems, compared to DNS and /etc/hosts. When in doubt, set it to "localhost". - Ryan -- Ryan Thompson Network Administrator, Accounts Phone: +1 (306) 664-1161 SaskNow Technologies http://www.sasknow.com #106-380 3120 8th St E Saskatoon, SK S7H 0W2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 23:35: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f79.pav1.hotmail.com [64.4.31.79]) by hub.freebsd.org (Postfix) with ESMTP id AAA2037B4D7 for ; Mon, 16 Oct 2000 23:35:00 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 16 Oct 2000 23:35:00 -0700 Received: from 24.115.162.160 by pv1fd.pav1.hotmail.msn.com with HTTP; Tue, 17 Oct 2000 06:35:00 GMT X-Originating-IP: [24.115.162.160] From: "leon Lei" To: questions@FreeBSD.org Cc: leon@infinet.net Subject: FreeBSD for Alpha Dual CPU Date: Tue, 17 Oct 2000 06:35:00 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Oct 2000 06:35:00.0476 (UTC) FILETIME=[5FCE63C0:01C03804] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi fellows, Could anybody enlighten me the availability of a version of FreeBSD, which supports Dual Alpha Processors like 264DP? If there is no such thing yet, what would be the new release time? Your help is heartily appreciated. Leon _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 23:53: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 0E19437B4CF for ; Mon, 16 Oct 2000 23:53:01 -0700 (PDT) Received: from d.tracker ([216.191.61.108]) by www3.pacific-pages.com (8.8.5) id AAA19943; Tue, 17 Oct 2000 00:52:53 -0600 (MDT) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id CAA18754 for questions@freebsd.org; Tue, 17 Oct 2000 02:49:33 GMT (envelope-from david) Date: Tue, 17 Oct 2000 02:49:33 GMT From: David Banning Message-Id: <200010170249.CAA18754@d.tracker> To: questions@freebsd.org Subject: mutt stalls with Sending message... Reply-To: david@banning.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG when I send a message using mutt, and then send it, it displays the Sending message... at the bottom of the screen - which it should - it stays there for a long time 5 - 30 min or more before sending though. ps ax | grep send shows sendmail: accepting connections on port 25 (sendmail) sendmail -oem -oi -- php-general@lists.php.net I know my mail server has to be authenticated before mail can be sent - which I do at the same time with a POP. My crontab does a POP at the top of every hour. I think it also takes just as long when I use the simple mail program - it's just mail exits after I send, while mutt holds the screen hostage until the mail has been sent. Any ideas how to solve this? Maybe it only sends after crontab does a POP? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 16 23:54:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id 9E21137B4E5 for ; Mon, 16 Oct 2000 23:53:52 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id xloraaaa for ; Tue, 17 Oct 2000 17:58:07 +1000 Message-ID: <39EBF79A.97CE1419@quake.com.au> Date: Tue, 17 Oct 2000 16:54:18 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Matthew Emmerton Cc: Alfred Perlstein , ahze@baddog.yi.org, freebsd-questions@FreeBSD.ORG Subject: Re: X Hotline Client for FreeBSD References: <20001015172752.30A161078B@baddog.yi.org> <39EA5E4B.A76E988D@quake.com.au> <20001015214007.M272@fw.wintelcom.net> <002c01c0372f$10088bc0$1200a8c0@gsicomp.on.ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew Emmerton wrote: > > > * Kal Torak [001015 18:47] wrote: > > > mike johnson wrote: > > > > > > > > http://fidelio.sourceforge.net/sources.php > > > > > > > > On Sun, 15 Oct 2000, Alfred Perlstein wrote: > > > > > Date: Sun, 15 Oct 2000 10:25:05 -0700 > > > > > To: Kal Torak > > > > > From: Alfred Perlstein > > > > > Subject: Re: X Hotline Client for FreeBSD > > > > > > > > > > * Kal Torak [001015 08:43] wrote: > > > > > > Hi, > > > > > > I am wondering if anyone knows of a X Hotline client that will > > > > > > compile on FreeBSD... I havent been able to find one, there > > > > > > are plenty of linux clients but they all fail to compile, most > > > > > > need glibc... > > > > > > > > > > > > Fidelio or something named like that is the best linux client > > > > > > I had before I changed over the FreeBSD... > > > > > > Someone HAS to have ported a hotline client right? > > > > > > > > > > > > Thanks for any suggestions :) > > > > > > > > > > Can you give a URL as to where someone might find these apps? > > > > > > There site claims Fidelio works on FreeBSD, but it dosent > > > for me... > > > > It doesn't seem to know how to use our -pthread flag for gcc to > > compile itself. Empty promises... Perhaps people interested can > > tell the authors about the problems they are having and that if > > they have any questions, this list would be a good place to ask > > for tips on making it compile and run on FreeBSD. > > I took a look at it ealier today but gave up since my dual P166 build system > didn't like gnome. > > As for the pthread issue, a simple patch to the configure script will enable > the -pthread flag. (See astro/seti_applet/Makefile for an example) Could you give me some more info on what needs to be patched in the Makefile for Fidelio? If I can get it working I will send the info on to the author. Thanks! Kal. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 0: 4:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id AFC3337B4CF for ; Tue, 17 Oct 2000 00:04:19 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lQm9-000OI7-00; Tue, 17 Oct 2000 10:03:06 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lQoI-000MTi-00; Tue, 17 Oct 2000 10:05:18 +0300 Date: Tue, 17 Oct 2000 10:05:18 +0300 From: Odhiambo Washington To: david@banning.com Cc: FBSD-Q Subject: Re: mutt stalls with Sending message... Message-ID: <20001017100518.S80270@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , david@banning.com, FBSD-Q References: <200010170249.CAA18754@d.tracker> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010170249.CAA18754@d.tracker>; from "David Banning" on Tue, Oct 17, 2000 at 02:49:33AM +0000 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 9:56AM up 8 days, 12:44, 1 user, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * David Banning [20001017 09:54]: =>when I send a message using mutt, and then send it, it displays the =>Sending message... at the bottom of the screen - which it should - =>it stays there for a long time 5 - 30 min or more before sending though. I used to have a similar scenario with mutt but in my case I had both sendmail and Exim on the same machine. I had only configured exim to do smart_host delivery but I gathered that mutt was using sendmail instead - and I hadn't configured sendmail for smarthost delivery. So I moved the sendmail binary out of the way and made a symlink to exim and I was cured... admin:/usr/libexec/sendmail$ ls -al total 379 drwxr-xr-x 2 root wheel 512 Oct 16 09:27 . drwxr-xr-x 8 root wheel 1536 Oct 15 16:43 .. lrwxr-xr-x 1 root wheel 20 Oct 16 09:27 sendmail -> /usr/local/sbin/exim -r-sr-xr-x 1 root wheel 376544 Oct 15 16:43 sendmail.old admin:/usr/libexec/sendmail$ I'm tempted to think that you need the rule # "Smart" relay host (may be null) DSfoo.bar ...in your sendmail.cf so that it doesn't do a DNS lookup for the hosts to which you're sending mail. I'm hoping that your resolver is properly configured. If those two are not the cases than I'm sincerely sorry because I don't use sendmail as my MTA..I use Exim. I'm sure those sendmail guys out there will be able to help. -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. The universe is full of magical things, patiently waiting for our wits to grow sharper. -Eden Phillpotts To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 0: 6:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id E64BE37B4C5 for ; Tue, 17 Oct 2000 00:06:48 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lQod-000OQp-00; Tue, 17 Oct 2000 10:05:39 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lQqm-000MUN-00; Tue, 17 Oct 2000 10:07:52 +0300 Date: Tue, 17 Oct 2000 10:07:52 +0300 From: Odhiambo Washington To: Dre Cc: FBSD-Q Subject: Re: boot disk Message-ID: <20001017100752.T80270@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , Dre , FBSD-Q References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Dre" on Tue, Oct 17, 2000 at 01:29:45PM +0800 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 10:07AM up 8 days, 12:54, 1 user, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Dre [20001017 08:34]: =>I'm not able to copy the .flp file onto the floppy as these files are more the 1.44MB. =>is there any other way that I could copy this files? I even tried the => =>c:\fdimage kern.flp a: => =>It still doesn't work. Get rawrite.exe - I've found it easier to use..... => =>pls help =>thanks => =>kumaresan.arumugam@my.pwcglobal.com => -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Live out of your imagination, not your history. -Stephen Covey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 0: 9:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.edata.co.za (mail.edata.co.za [196.35.169.10]) by hub.freebsd.org (Postfix) with ESMTP id D906137B4E5 for ; Tue, 17 Oct 2000 00:09:46 -0700 (PDT) Received: from THORNROSE ([196.37.187.142]) by mail.edata.co.za (8.9.3/8.8.7) with SMTP id CAA13115 for ; Tue, 17 Oct 2000 02:37:12 +0200 Reply-To: From: "Eugene van Zyl" To: Subject: Custom Kernel Date: Tue, 17 Oct 2000 09:09:41 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable 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.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Would it be possible for me to create a custom boot kernel for a PC on = to stiffies and then use that to boot and install FreeBSD from the CD? If yes, any pointers? Reason I'm asking is because all the version 4 FreeBSD distro's refuse = to give me the kernel config menu on boot from the install CD or = stiffies (just beeps twice) and then asks me to enter to boot the = default kernel which either hangs the PC or just disabled the keyboard - = meaning I can't install FreeBSD. It's an AMD Athlon 600MHz with a GigaByte 7IXE MotherBoard(with latest = BIOS update). Any help would be greatly appreciated. I 'really' want to get FreeBSD on = this box as it's much better @ firewalling than Linux! Thanks, Eugene van Zyl eugene@streetcar.com Streetcar Web Commerce (Pty) Ltd Tel : +27 11 880 0433 Fax : +27 11 880 0590 Cell: +27 83 628 8282 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 0:21:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9008.mail.yahoo.com (web9008.mail.yahoo.com [216.136.128.170]) by hub.freebsd.org (Postfix) with SMTP id 2C99C37B4F9 for ; Tue, 17 Oct 2000 00:21:25 -0700 (PDT) Message-ID: <20001017071305.44159.qmail@web9008.mail.yahoo.com> Received: from [63.15.52.143] by web9008.mail.yahoo.com; Tue, 17 Oct 2000 00:13:05 PDT Date: Tue, 17 Oct 2000 00:13:05 -0700 (PDT) From: Igor Ignatovich Subject: high speed modem connection 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 All, I use FBSD-4.0 box. I consider to subscribe for fast-internet service provided by Reflex(up to 1Mbps). Acc. to their web page they provide high speed modem and I must have NIC. My question is: may I be sure that FBSD supports that kind of connection? May be smb. here has experience tuning Reflex ISP within FBSD? What kind of high speed modem and NIC I should insist to have in order FBSD will support it? If hardware is supported so what steps/changes I should make within OS?(for last seven years I used only dial-up ISP). Direct answers or providing links to answers will be highly appreciated. Thanks, Igor I. __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 1:15: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost.esil.univ-mrs.fr (jiyu.esil.univ-mrs.fr [139.124.44.249]) by hub.freebsd.org (Postfix) with ESMTP id 2274237B4CF for ; Tue, 17 Oct 2000 01:14:56 -0700 (PDT) Received: from bsdfr.org (cam.esil.univ-mrs.fr [139.124.44.65]) by mailhost.esil.univ-mrs.fr (8.9.3/ESIL/jtpda-5.3.1) with ESMTP id KAA72056 ; Tue, 17 Oct 2000 10:14:25 +0200 (CEST) Message-ID: <39EC0A2C.938E6FD4@bsdfr.org> Date: Tue, 17 Oct 2000 10:13:32 +0200 From: cam X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.17 i686) X-Accept-Language: fr, en MIME-Version: 1.0 To: eugene@streetcar.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Custom Kernel References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Eugene van Zyl wrote: > Hi, > > Would it be possible for me to create a custom boot kernel for a PC on to stiffies and then use that to boot and install FreeBSD from the CD? > If yes, any pointers? > > Reason I'm asking is because all the version 4 FreeBSD distro's refuse to give me the kernel config menu on boot from the install CD or stiffies (just beeps twice) and then asks me to enter to boot the default kernel which either hangs the PC or just disabled the keyboard - meaning I can't install FreeBSD. > It's an AMD Athlon 600MHz with a GigaByte 7IXE MotherBoard(with latest BIOS update). > > Any help would be greatly appreciated. I 'really' want to get FreeBSD on this box as it's much better @ firewalling than Linux! > you can install the boot.flp image on your disk (if you have another machine under unix which you have plugged your disk or if you can install Linux on your machine): dd if=/cdrom/floppies/boot.flp of=/dev/ad0 (correct with your good settings) (you have to use the 2.8MB image) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 1:15:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 89E0137B4FE for ; Tue, 17 Oct 2000 01:15:36 -0700 (PDT) Received: from cello.qnet.com (stork@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id BAA11406; Tue, 17 Oct 2000 01:15:23 -0700 (PDT) Received: from localhost (stork@localhost) by cello.qnet.com (8.9.0/8.9.1) with ESMTP id BAA07472; Tue, 17 Oct 2000 01:15:35 -0700 (PDT) X-Authentication-Warning: cello.qnet.com: stork owned process doing -bs Date: Tue, 17 Oct 2000 01:15:35 -0700 (PDT) From: Heredity Choice To: Giorgos Keramidas Cc: Pierre Robidoux , freebsd-questions@FreeBSD.ORG Subject: Re: Choice of OS In-Reply-To: <20001016220331.B626@hades.hell.gr> 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 Oct 2000, Giorgos Keramidas wrote: > > Because if you learn working in one BSD, then all of them will seem > similar to you. I've worked with both FreeBSD and OpenBSD at home, and > have seen a NetBSD installation. I feel that I can install any of the > three on my home box alone. Try doing that with the zillions of Linux > distributions. Most of the Linux distributions have a highly automated install program that doesn't need much human participation. The bad news is that--in my experience--these automatic install programs always hang up on any unusual hardware which the primitive FreeBSD installation can handle. This is not to say that we should be complacent with the present FreeBSD installation program. Apple's OS X is based on FreeBSD. While I haven't seen it I am sure it will have a great installation program and very likely we can hijack it without a lot of work. If the Apple OS X installation program hangs up on oddball hardware--and well it may because the Apple platform does not have anything like the range of hardware available for the PC, then the answer is for FreeBSD to have a choice of two installs, one automated and one primitive. Paul Smith stork@qnet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 1:51:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.skyinet.net (SMTP.SKYINET.NET [206.101.197.180]) by hub.freebsd.org (Postfix) with ESMTP id 44BBE37B4F9 for ; Tue, 17 Oct 2000 01:51:08 -0700 (PDT) Received: from skyinet.net (fooler.ilo.skyinet.net [208.150.132.3]) by smtp.skyinet.net (Postfix) with ESMTP id 76FA132900 for ; Tue, 17 Oct 2000 16:51:06 +0800 (PHT) Message-ID: <39EC17DC.C5180B0C@skyinet.net> Date: Tue, 17 Oct 2000 17:11:56 +0800 From: fooler X-Mailer: Mozilla 4.73 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: tcp window size 17520 X-Priority: 1 (Highest) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi all, why is it www.freebsd.org web site is using tcp window size of 17520 instead of 16384? and why is it they dont enable rfc1323? fooler. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 2: 6:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id ED87437B4D7 for ; Tue, 17 Oct 2000 02:06:12 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.0/8.11.0) id e9H95sg11243; Tue, 17 Oct 2000 12:05:54 +0300 (EEST) (envelope-from ru) Date: Tue, 17 Oct 2000 12:05:54 +0300 From: Ruslan Ermilov To: david@banning.com Cc: questions@FreeBSD.ORG Subject: Re: mutt stalls with Sending message... Message-ID: <20001017120554.B9227@sunbay.com> Mail-Followup-To: david@banning.com, questions@FreeBSD.ORG References: <200010170249.CAA18754@d.tracker> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010170249.CAA18754@d.tracker>; from david@www3.pacific-pages.com on Tue, Oct 17, 2000 at 02:49:33AM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 02:49:33AM +0000, David Banning wrote: > when I send a message using mutt, and then send it, it displays the > Sending message... at the bottom of the screen - which it should - > it stays there for a long time 5 - 30 min or more before sending though. > > ps ax | grep send > shows > sendmail: accepting connections on port 25 (sendmail) > sendmail -oem -oi -- php-general@lists.php.net > > I know my mail server has to be authenticated before mail can be > sent - which I do at the same time with a POP. > My crontab does a POP at the top of every hour. > > I think it also takes just as long when I use the simple > mail program - it's just mail exits after I send, while mutt holds > the screen hostage until the mail has been sent. > > Any ideas how to solve this? > Put the following in your ~/.mutt/muttrc: set sendmail_wait=-1 -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 2: 6:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.rdc2.bc.home.com (mail1.rdc2.bc.home.com [24.2.10.84]) by hub.freebsd.org (Postfix) with ESMTP id 36B0537B4D7 for ; Tue, 17 Oct 2000 02:06:26 -0700 (PDT) Received: from godlike ([24.69.237.141]) by mail1.rdc2.bc.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001017090625.SSAO23700.mail1.rdc2.bc.home.com@godlike> for ; Tue, 17 Oct 2000 02:06:25 -0700 Message-ID: <000e01c038e2$c7b276a0$8ded4518@kldt1.bc.wave.home.com> From: "Mike Batchelor" To: Subject: ALT KEY Date: Wed, 18 Oct 2000 02:07:02 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000B_01C038A8.1B28E520" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000B_01C038A8.1B28E520 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hey all I can't figure out how to map my ALT-1 keys to use the escape codes = like they should. I know this isn't a FreeBSD default.. but I can't = take full advantages of the IRC-II version BitchX. BitchX uses ALT-1 = ALT-2 ... etc.. keys to switch between windows, but the keymaps in = FreeBSD are set up to map ALT-1 as just simply '1' where as I would like = it to use the escape code. (ie ^[1 or whatever it is) Is there anyway = you change this? Thanks ------=_NextPart_000_000B_01C038A8.1B28E520 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hey all
 
 
  I can't figure out how to map my = ALT-1 keys=20 to use the escape codes like they should.  I know this isn't a = FreeBSD=20 default.. but I can't take full advantages of the IRC-II version = BitchX. =20 BitchX uses ALT-1 ALT-2 ... etc.. keys to switch between windows, but = the=20 keymaps in FreeBSD are set up to map ALT-1 as just simply '1' where as I = would=20 like it to use the escape code. (ie ^[1 or whatever it is)  Is = there anyway=20 you change this?  Thanks
------=_NextPart_000_000B_01C038A8.1B28E520-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 2:26:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.raxel.net (ns.raxel.net [196.36.199.121]) by hub.freebsd.org (Postfix) with ESMTP id D38D237B4D7 for ; Tue, 17 Oct 2000 02:26:06 -0700 (PDT) Received: (from uucp@localhost) by mail.raxel.net (8.11.0/8.11.0/Debian 8.11.0-1) with UUCP id e9H9SFg07069 for questions@freebsd.org; Tue, 17 Oct 2000 11:28:15 +0200 Received: (from christian@localhost) by dev.jhb.raxel.net (8.9.3/8.9.3/Debian 8.9.3-21) id LAA09066 for questions@freebsd.org; Tue, 17 Oct 2000 11:24:19 +0200 Date: Tue, 17 Oct 2000 11:24:19 +0200 From: Christian Burger To: questions@freebsd.org Subject: mount_ext2fs problem Message-ID: <20001017112419.A9052@raxel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I'm trying to mount my 2nd partition(ext2) on my primary hard drive. I get the following error: # mount_ext2fs /dev/ad0b /mnt/debian/ mount_ext2fs: vfsload(ext2fs): No such file or directory Can someone please tell me what vfsload is and why i am having this problem? Thanks in advance. -- Regards Christian geek. it's a feature, not a bug. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 2:45:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 9682437B4E5 for ; Tue, 17 Oct 2000 02:45:44 -0700 (PDT) Received: from cm-206-31-81-152.gulfbreeze.mediacom.ispchannel.com ([206.31.81.152]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001017094815.DHLA382.smtp2a@cm-206-31-81-152.gulfbreeze.mediacom.ispchannel.com>; Tue, 17 Oct 2000 02:48:15 -0700 Date: Tue, 17 Oct 2000 04:45:43 -0500 (CDT) From: Steve To: Igor Ignatovich Cc: freebsd-questions@FreeBSD.ORG Subject: Re: high speed modem connection In-Reply-To: <20001017071305.44159.qmail@web9008.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Generally speaking, any nic will do. Most 3Com boards are accepted. There may be cards that others like and dislike, but I haven't had any problems with my 3Com's. Good luck! Steve On Tue, 17 Oct 2000, Igor Ignatovich wrote: > Hello All, > I use FBSD-4.0 box. I consider to > subscribe for fast-internet service provided > by Reflex(up to 1Mbps). Acc. to their web page they > provide high speed modem and I must have NIC. > My question is: may I be sure that FBSD supports > that kind of connection? May be smb. here has > experience tuning Reflex ISP within FBSD? > What kind of high speed modem and NIC I should > insist to have in order FBSD will support it? > If hardware is supported so what steps/changes > I should make within OS?(for last seven years I > used only dial-up ISP). > Direct answers or providing links to answers will > be highly appreciated. > > Thanks, > Igor I. > > > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Messenger - Talk while you surf! It's FREE. > http://im.yahoo.com/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 2:59:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id 9E2BF37B4E5; Tue, 17 Oct 2000 02:59:16 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lTVa-000Dva-00; Tue, 17 Oct 2000 12:58:10 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lTXi-000MyH-00; Tue, 17 Oct 2000 13:00:22 +0300 Date: Tue, 17 Oct 2000 13:00:22 +0300 From: Odhiambo Washington To: FBSD-Q Cc: FBSD-ISP Subject: Help required - DSL Implementation Message-ID: <20001017130022.A87793@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , FBSD-Q , FBSD-ISP Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 12:25PM up 8 days, 15:13, 1 user, load averages: 0.06, 0.03, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi users, I'm looking for some help with DSL implementation. I come from a country where DSL is quite new and not supported by our Telco provider - who happens to be a monopoly. So far I've only been able to implement bridging using DSL eqpt (RAD ASMi31 and ASMi50, Zyxel Prestige 128L, Westell eqpt..). Those seem to be the most common ones in use here. The discussions I've seen in this list have more than influenced me to get to know about how it is implemented out there - Europe/US. What I am much interested in is the understanding that you can use DSL via your normal telephone line!!! Okay I've also gathered that there is a filter used for this. What I'm confused about is whether you incur any bills to your Telco provider when you're using DSL???? In my country if I were to use that line for DSL (I'm not sure) I would think that the system here being PSTN - I would be like using my telephone to make a call and as such I'll have to pay up to my Telco provider the same way I pay when making a phone call. Is this the same in your scenarios? When I read that you can still rcv your phone calls/faxes while the DSL is live online I just get mesmerized! Would anyone enlighten me abit? I also gather that in the US (not so much idea about Europe;-)) whenever you make a local call it is FREE, that only long distance (outside local) are charged. How much is this true? But I am more interested in a typical DSL implementation using a typical device like a Cisco 675. What is the physical range of this device, in km? Currently I am having a Zyxel Prestige 128L on my desk and I'm made to understand that it is only efficient upto about 6km on a 4-wire circuit (we call them leased lines here). What would the CISCO 675 take? 11km? I know I'll probably need to go to cisco.com and look for this but I need first hand info on a working situation. Would it be possible for me to use DSL over my normal phone line (behind the back of ny Telco provider) if I bought the filter or there must be an arrangement between my ISP and the local Telco provider (owner of PSTN) for this to work??? I'm assuming that my ISP already has agreed that I can pay for DSL service ;-). ____ ********* ^^^^^^ |____|----------()-------* Telco * ---------^ISP ^ --->Internet Filter ********* ^^^^^^ My PC with DSL Is this really possible without the Telco guys fitting some special switch at their office to enable my DSL connection get to my ISP?? Other than giving me answers, I'll also not mind getting pointers to some clearly illustrated reading material...I'm in a third world country guys, sorry if I seem outdated with technology. All advise will be HIGHLY appreciated. -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Generosity is not giving me that which I need more than you do, but it is giving me that which you need more than I do. -Kahlil Gibran, "Sand and Foam" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 3:11:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from albatross-ext.wise.edt.ericsson.se (albatross-ext.wise.edt.ericsson.se [194.237.142.116]) by hub.freebsd.org (Postfix) with ESMTP id 65B6037B65E for ; Tue, 17 Oct 2000 03:11:29 -0700 (PDT) Received: from esealnt461 (esealnt461.al.sw.ericsson.se [153.88.251.61]) by albatross.wise.edt.ericsson.se (8.11.0/8.11.0/WIREfire-1.3) with SMTP id e9HABSt24840 for ; Tue, 17 Oct 2000 12:11:28 +0200 (MEST) Received: FROM esealnt400.al.sw.ericsson.se BY esealnt461 ; Tue Oct 17 11:49:40 2000 +0200 Received: by esealnt400 with Internet Mail Service (5.5.2651.58) id <454C4NJ3>; Tue, 17 Oct 2000 11:56:13 +0200 Message-ID: From: "Wei Zhao (ERA)" To: "'freebsd-questions@FreeBSD.ORG'" Subject: about subscribtion.. Date: Tue, 17 Oct 2000 11:52:13 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2651.58) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I found there are a lot of mail list on the freebsd website. I am wondering if I can subscribe to one of them and how. Thanks a lot. Wei Zhao Ericsson Radio Systems AB Tel: +46 8 508 78097 Fax:+46 8 50878090 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 3:52:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 367A037B4F9 for ; Tue, 17 Oct 2000 03:52:45 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id DAA17739; Tue, 17 Oct 2000 03:49:46 -0700 (PDT) From: "Otter" To: "Igor Ignatovich" , Subject: RE: high speed modem connection Date: Tue, 17 Oct 2000 06:55:09 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.50.4133.2400 In-Reply-To: <20001017071305.44159.qmail@web9008.mail.yahoo.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }Igor Ignatovich }Sent: Tuesday, October 17, 2000 3:13 AM }To: freebsd-questions@FreeBSD.ORG }Subject: high speed modem connection } } }Hello All, } I use FBSD-4.0 box. I consider to } subscribe for fast-internet service provided } by Reflex(up to 1Mbps). Acc. to their web page they } provide high speed modem and I must have NIC. } My question is: may I be sure that FBSD supports } that kind of connection? it's not the connection that needs support. what needs support is the interface to that connection (i.e. NIC) May be smb. here has } experience tuning Reflex ISP within FBSD? } What kind of high speed modem and NIC I should } insist to have in order FBSD will support it? My ISP provided me with an ADSL modem. If you need your own, check out a Cisco 675, if you plan to get ADSL. For a NIC, my Intel Ether Express 10/100 works quite nicely, supported by the fxp driver in FreeBSD. } If hardware is supported so what steps/changes } I should make within OS?(for last seven years I } used only dial-up ISP). Read up on how to modify/customize your kernel. Your kernel will need to have "fxp" support in it for it to recognize the Intel NIC. There are several others to choose from. I just use that example because that's what I use here. } Direct answers or providing links to answers will } be highly appreciated. links? start at http://www.freebsd.org and follow the links from there. Ask and ye shall receive. Search and ye shall be enlightened. } } Thanks, } Igor I. } } } } }__________________________________________________ }Do You Yahoo!? }Yahoo! Messenger - Talk while you surf! It's FREE. }http://im.yahoo.com/ } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 3:52:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 18E5137B4D7 for ; Tue, 17 Oct 2000 03:52:56 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id DAA17746; Tue, 17 Oct 2000 03:49:48 -0700 (PDT) From: "Otter" To: "Ryan Thompson" , "Chris Moline" Cc: Subject: RE: What to use for my hostname? Date: Tue, 17 Oct 2000 06:55:11 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.50.4133.2400 In-Reply-To: Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Correct. If you're just dialing up to the ISP, the domain name is unnecessary. The machine does need hostname, regardless of what you call it. You might want to check out one of my favorite RFC's: http://www.cis.ohio-state.edu/htbin/rfc/rfc2100.html -Otter p.s. ok, so maybe it's one of the lighter ones... enjoy! }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }Ryan Thompson }Sent: Tuesday, October 17, 2000 2:37 AM }To: Chris Moline }Cc: freebsd-questions@FreeBSD.ORG }Subject: Re: What to use for my hostname? } } }Chris Moline wrote to freebsd-questions@FreeBSD.ORG: } }> Hi. I recently got a us robotics external modem and have }been setting }> it up. However I don't know what to use for my domain }name. Can it be }> whatever I want? I mostly use my computer for dial up access to my }> isp. so in that case would my domain be username.isp.net?? or just }> isp.net? Does it matter?? } }In 99% of all cases of this nature, "Does not matter" is }usually accurate. } }Dialup usually equates to dynamic DNS and IP... Therefore, }your hostname }will never be fixed. It is quite safe to make something }up... But, for }your own sake, don't use something that already exists }elsewhere. The }system's hostname (as set by hostname(8)) is actually used }in suprisingly }few places on most systems, compared to DNS and /etc/hosts. } }When in doubt, set it to "localhost". } }- Ryan } }-- } Ryan Thompson } Network Administrator, Accounts } Phone: +1 (306) 664-1161 } } SaskNow Technologies http://www.sasknow.com } #106-380 3120 8th St E Saskatoon, SK S7H 0W2 } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 3:53:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 6D18537B4D7 for ; Tue, 17 Oct 2000 03:53:10 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id DAA18337; Tue, 17 Oct 2000 03:52:47 -0700 (PDT) From: "Otter" To: "george vagner" , Subject: RE: UDF cdroms Date: Tue, 17 Oct 2000 06:58:10 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.50.4133.2400 In-Reply-To: <20001017061952.17460.qmail@web5302.mail.yahoo.com> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG if you want to mount the image file, it should be a raw one. that being the case, try man vn and vnconfig for info. i'm guessing here, since i've never worked with a udf format. even though someone might use the .cif format, if it is burned to a cd, i'd just mount whatever filesystem was used. msdos/ntfs would be my first tries, since it was done with an adaptec application. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }george vagner }Sent: Tuesday, October 17, 2000 2:20 AM }To: questions@FreeBSD.ORG }Subject: UDF cdroms } } }I have some cdroms that were created using ezcdcreator }that uses a "UDF" format and i was trying to mount }them or even copy them completely using cdrecord }and I realized that freebsd cant read them. } }So is there any way that it can be read using freebsd }to make a copy? } }i was thinking i could make an ISO image after }mounting it and then burn a real cd out of it but }first i gotta figure out how to mount it. } }maybe... mount_UDF would be a nice addition to the }various tools. } } }any ideas anyone? } } }cant subscribe to list cause my hostname cant be }found? }george@vagner.com } } } }__________________________________________________ }Do You Yahoo!? }Yahoo! Messenger - Talk while you surf! It's FREE. }http://im.yahoo.com/ } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 3:55: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id E0CBF37B4CF for ; Tue, 17 Oct 2000 03:55:02 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lUNZ-000HIt-00 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 13:53:58 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lUPi-000N75-00 for freebsd-questions@FreeBSD.ORG; Tue, 17 Oct 2000 13:56:10 +0300 Date: Tue, 17 Oct 2000 13:56:10 +0300 From: Odhiambo Washington To: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: about subscribtion.. Message-ID: <20001017135610.C88402@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , "'freebsd-questions@FreeBSD.ORG'" References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Wei Zhao (ERA)" on Tue, Oct 17, 2000 at 11:52:13AM +0200 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 1:53PM up 8 days, 16:41, 1 user, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Wei Zhao (ERA) [20001017 13:12]: =>Hi, => =>I found there are a lot of mail list on the freebsd website. I am wondering =>if I can subscribe to one of them and how. send mail to majordomo@FreeBSD.org in the body put the words 'help' and 'end' in two separate lines. Please don't include the quotes, e.g. help end -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Great talents are the most lovely and often the most dangerous fruits on the tree of humanity. They hang upon the most slender twigs that are easily snapped off. -C. G. Jung, "Psychological Reflections" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 4:13: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from staff.uk.psi.com (staff.uk.psi.com [154.8.2.2]) by hub.freebsd.org (Postfix) with ESMTP id 7551B37B479 for ; Tue, 17 Oct 2000 04:13:03 -0700 (PDT) Received: from hredevel (ip236.dc-eng.uk.psi.com [154.8.27.236]) by staff.uk.psi.com (8.8.4/) with SMTP id MAA19527 for ; Tue, 17 Oct 2000 12:12:07 +0100 (BST) Reply-To: From: "Dan Cuthbert" To: "Freebsd-Questions" Subject: FBSD 4.1.1 and Enlightenment Date: Tue, 17 Oct 2000 12:19:17 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all Is someone out there running Enlightenment and making use of Imlib2 and EFM? I cannot seem to get imlib2 to compile, it complains about the use of Freetype fonts (even though i have Xfstt running with 60 TTf fonts available) it still says that it cant find them Any ideas? Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 4:19:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.dresdnerkb.com (mail1.dresdnerkb.com [193.132.190.11]) by hub.freebsd.org (Postfix) with ESMTP id E3ACE37B4E5 for ; Tue, 17 Oct 2000 04:19:48 -0700 (PDT) From: Tim.Bissell@dresdnerkb.com Message-ID: To: questions@freebsd.org Subject: RE: UDF cdroms Date: Tue, 17 Oct 2000 12:17:15 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG UDF is a format used for incrementally writing files to CD-R and CD-RW disks and is totally unrelated to IDO images etc. Some people are working on a UDF filesystem for Linux: http://trylinux.com/projects/udf/ I've not heard of a anything similar for FreeBSD (but I've not really looked) Tim -------------------------------------------------------------------------------- This email and any files transmitted with it are intended solely for the addressee(s) and may be legally privileged and/or confidential. If you have received this email in error please destroy it and contact the sender, via our switchboard on +44 (0)20 7623 8000 or via return e-mail. You should not copy, forward or use the contents, attachments or information in any way. Any unauthorised use or disclosure may be unlawful. Dresdner Kleinwort Benson gives no warranty as to the accuracy or completeness of this email after it is sent over the Internet and accepts no responsibility for changes made after it was sent. Any opinion expressed in this email may be personal to the author and may not necessarily reflect the opinions of the Bank or its affiliates. They may also be subject to change without notice. -------------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 4:23:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web10301.mail.yahoo.com (web10301.mail.yahoo.com [216.136.130.79]) by hub.freebsd.org (Postfix) with SMTP id 14F6F37B4E5 for ; Tue, 17 Oct 2000 04:23:16 -0700 (PDT) Message-ID: <20001017112316.66829.qmail@web10301.mail.yahoo.com> Received: from [24.113.0.2] by web10301.mail.yahoo.com; Tue, 17 Oct 2000 04:23:16 PDT Date: Tue, 17 Oct 2000 04:23:16 -0700 (PDT) From: Don Mckenzie 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 subscribe FreeBSD-questions mckenzie_don@yahoo.com __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 4:47:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mss.rdc2.nsw.optushome.com.au (ha1.rdc2.nsw.optushome.com.au [203.164.2.50]) by hub.freebsd.org (Postfix) with ESMTP id C677F37B4C5 for ; Tue, 17 Oct 2000 04:47:26 -0700 (PDT) Received: from ryan ([203.164.161.45]) by mss.rdc2.nsw.optushome.com.au (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001017114709.FUTD29783.mss.rdc2.nsw.optushome.com.au@ryan> for ; Tue, 17 Oct 2000 22:47:09 +1100 From: "iago" To: Subject: laptops Date: Tue, 17 Oct 2000 22:45:13 +1000 Message-ID: <001201c03838$185c9aa0$0200a8c0@ryan> 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 CWS, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG HI everyone looking into getting a laptop i will most likelt dual boot betweem MS and FreeBSD, to that end... what laptops are people using with FreeBSD these days? are they running well ... X also working fine? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 5:39:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 97B4737B479 for ; Tue, 17 Oct 2000 05:39:08 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.0/8.11.0) id e9HCcmk25607; Tue, 17 Oct 2000 15:38:48 +0300 (EEST) (envelope-from ru) Date: Tue, 17 Oct 2000 15:38:48 +0300 From: Ruslan Ermilov To: fooler Cc: freebsd-questions@FreeBSD.ORG Subject: Re: tcp window size 17520 Message-ID: <20001017153848.A24731@sunbay.com> Mail-Followup-To: fooler , freebsd-questions@FreeBSD.ORG References: <39EC17DC.C5180B0C@skyinet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39EC17DC.C5180B0C@skyinet.net>; from fooler@skyinet.net on Tue, Oct 17, 2000 at 05:11:56PM +0800 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 05:11:56PM +0800, fooler wrote: > hi all, > > why is it www.freebsd.org web site is using tcp window size of 17520 > instead of 16384? > The receive buffer for TCP is initially set to net.inet.tcp.recvspace, but later is rounded up to the MSS for efficiency: buffer = roundup(buffer, mss); roundup(16384, 1460) = 17520 * mss=1460 on Ethernets with MTU=1500. > and why is it they dont enable rfc1323? > By default. The rc.conf(5) manpage explains why it is so. -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 5:57: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost.esil.univ-mrs.fr (jiyu.esil.univ-mrs.fr [139.124.44.249]) by hub.freebsd.org (Postfix) with ESMTP id EBD3437B479 for ; Tue, 17 Oct 2000 05:57:01 -0700 (PDT) Received: from bsdfr.org (cam.esil.univ-mrs.fr [139.124.44.65]) by mailhost.esil.univ-mrs.fr (8.9.3/ESIL/jtpda-5.3.1) with ESMTP id OAA79363 ; Tue, 17 Oct 2000 14:56:12 +0200 (CEST) Message-ID: <39EC4C32.8110B380@bsdfr.org> Date: Tue, 17 Oct 2000 14:55:14 +0200 From: cam X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.17 i686) X-Accept-Language: fr, en MIME-Version: 1.0 To: iago Cc: freebsd-questions@FreeBSD.ORG Subject: Re: laptops References: <001201c03838$185c9aa0$0200a8c0@ryan> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG iago wrote: > HI everyone > > looking into getting a laptop > > i will most likelt dual boot betweem MS and FreeBSD, to that end... what > laptops are people using with FreeBSD these days? > > are they running well ... X also working fine? > > thanks Hi I own a Zenith laptop (P266MMX) and all my hardware is supported, but I'd a lot of problems with my PCMCIA ethernet/modem card (Xircom CEM56) before the FreeBSD-4. I think this is the most important thing to consider before buying a laptop: choose a good network card. You can have a look at the list of supported cards. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 5:57:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id C59FC37B4D7 for ; Tue, 17 Oct 2000 05:57:17 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id yooraaaa for ; Wed, 18 Oct 2000 00:01:25 +1000 Message-ID: <39EC4CC4.BB576E22@quake.com.au> Date: Tue, 17 Oct 2000 22:57:40 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions Subject: FreeBSD with PC-Cards 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 was wondering if anyone knows of some good guides to setting up FreeBSD to use PC-Cards like Ethernet and that... Just using the base PC-Card stuff that comes with FreeBSD, not all that PAO dist stuff... I am having trouble getting it working, just need a guide that explains what steps are needed.. Even just a few pointers from someone who has done it before would be good :) Thanks! Kal. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 6:11:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donald-duck.ele.tue.nl (Donald-Duck.ele.tue.nl [131.155.192.220]) by hub.freebsd.org (Postfix) with ESMTP id 4DFE937B4C5 for ; Tue, 17 Oct 2000 06:11:09 -0700 (PDT) Received: from bart by donald-duck.ele.tue.nl with local-esmtp (Exim 3.12 #1 (Debian)) id 13lWVv-0006Kx-00; Tue, 17 Oct 2000 15:10:43 +0200 Date: Tue, 17 Oct 2000 15:10:43 +0200 (CEST) From: Bart X-Sender: bart@donald-duck.ele.tue.nl To: Gabriel Ambuehl Cc: questions@FreeBSD.ORG Subject: Re: Re[4]: Realtek 100mbit In-Reply-To: <789400877.20001012160532@buz.ch> 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 Oct 2000, Gabriel Ambuehl wrote: > Hello Bart, > > Thursday, October 12, 2000, 3:37:22 PM, you wrote: > > >> How fast is the link over that you're talking to the server? Or do you > >> mean internal transfers over the switch of the colo facility? > > Internal transfers; the weird part is that my old > > 3COM509b at 10mbit was faster over the same link > > (internal and external) > > Well ACK. There must be something wrong. What does ifconfig -a yield? > What about traceroute (there are colos who use, for some > reasons I never really understood, their routers for traffic in their > own LAN even if both machines are in the same subnet on the same I checked again and found this message: Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for tx list Oct 17 14:35:33 wg /kernel: rl0: no memory for tx list Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for tx listrl0: no memory for tx list Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for tx list Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for tx list What is causing this ? With regards, Bart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 6:15:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sneety.insync.net (sneety.insync.net [209.113.65.5]) by hub.freebsd.org (Postfix) with ESMTP id AAF2F37B4D7 for ; Tue, 17 Oct 2000 06:15:27 -0700 (PDT) Received: from Matt (209-113-91-158.insync.net [209.113.91.158]) by sneety.insync.net (8.9.3/8.9.3) with SMTP id IAA08914 for ; Tue, 17 Oct 2000 08:15:23 -0500 (CDT) Reply-To: From: "Matt Bettinger" To: Subject: stray irq? Date: Tue, 17 Oct 2000 08:13:20 -0500 Message-ID: <71F816A89AA9D3119F4C00D0B7094EFC199096@FIN_SYN> 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 CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal In-Reply-To: <71F816A89AA9D3119F4C00D0B7094EFC1FF30E@FIN_SYN> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello compiled a kernel on 4.1.1 STABLE and after exiting X i saw a message staiing something about /kernel stray irq 7 should i post a dmesg or does anyone know why one might be getting a stray irq (whatever that is) other than that things seem to be running fine with a stray irq or not. ;-> matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 6:51:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1b.mail.yahoo.com (smtp3.mail.yahoo.com [128.11.68.135]) by hub.freebsd.org (Postfix) with SMTP id E0EA237B4D7 for ; Tue, 17 Oct 2000 06:51:34 -0700 (PDT) Received: from red2-46.redrock.net (HELO lorins) (209.197.4.99) by smtp.mail.vip.suc.yahoo.com with SMTP; 17 Oct 2000 13:51:33 -0000 X-Apparently-From: Message-ID: <001c01c03841$aa5e2460$0300fea9@lorins.ild.telecom.com> From: "Lorin Lund" To: "iago" , Subject: Re: laptops Date: Tue, 17 Oct 2000 07:53:43 -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 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG As for PCMCIA cards: Cardbus is not supported. You need to get 16 bit cards. Also, it appears that PCMCIA cards under FreeBSD are not hot-swappable. The card has to be in the slot at boot time to be recognized. At least that is what it looks like to me. For notebook computers with builtin modems: everyone I've heard of are WinModems. They won't work with FreeBSD yet. I have a Compaq Presario 1200. It works but I wouldn't recommend it. I got it before I knew what a hassle it would be to get configured. The biggest hassle was X configuration. I ended up loading Linux Mandrake to let it configure the X windows then I saved the X configuration file and reloaded FreeBSD. Some things you will probably want in your rc.conf apm_enable="YES" pccard_enable="YES" pccard_ifconfig="inet xxx.xxx.xxx.xxx 255.255.255.0" defaultrouter="xxx.xxx.xxx.xxx" You will probably also want to add this to /boot/kernel.conf en apm en pcic0 -----Original Message----- From: iago To: freebsd-questions@FreeBSD.ORG Date: Tuesday, October 17, 2000 5:47 AM Subject: laptops > >HI everyone > >looking into getting a laptop > >i will most likelt dual boot betweem MS and FreeBSD, to that end... what >laptops are people using with FreeBSD these days? > >are they running well ... X also working fine? > >thanks > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 6:57:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from scout.adamant.net (scout.adamant.net [212.26.128.10]) by hub.freebsd.org (Postfix) with ESMTP id C353A37B4C5 for ; Tue, 17 Oct 2000 06:57:21 -0700 (PDT) Received: from blend.fc.kiev.ua (blend.fc.kiev.ua [212.26.129.73]) by scout.adamant.net (8.10.2/8.10.0) with ESMTP id e9HDvC721929 for ; Tue, 17 Oct 2000 16:57:15 +0300 Received: from gnut.fc.kiev.ua (gnut.fc.kiev.ua [212.26.129.66]) by blend.fc.kiev.ua (8.9.3/8.9.2) with ESMTP id QAA77699 for ; Tue, 17 Oct 2000 16:57:08 +0300 (EEST) (envelope-from gnut@fc.kiev.ua) Date: Tue, 17 Oct 2000 16:56:57 +0400 From: "Oles' Hnatkevych" X-Mailer: The Bat! (v1.41) UNREG / CD5BF9353B3B7091 Reply-To: "Oles' Hnatkevych" Organization: Finance & Credit Banking Corporation X-Priority: 3 (Normal) Message-ID: <16706.001017@fc.kiev.ua> To: freebsd-questions@freebsd.org Subject: jetdirect 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 Hello freebsd-questions, Can I?........ How I can if possible make my samba print on HP JetDirect EX Plus? With best wishes, Oles' Hnatkevych, http://gnut.kiev.ua, gnut@fc.kiev.ua Finance & Credit Banking Corporation, Kyiv, Ukraine. Industrialnaya str. 27 +380 44 2417190 Artema str. 60, +380 44 4906877 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 6:59:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 2F4BD37B4C5 for ; Tue, 17 Oct 2000 06:59:42 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA06183 for ; Tue, 17 Oct 2000 09:59:35 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA18776 for ; Tue, 17 Oct 2000 09:59:08 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2KUV800.T39; Tue, 17 Oct 2000 09:59:32 -0400 Message-ID: <39EC5B59.340BDF5E@mitre.org> Date: Tue, 17 Oct 2000 09:59:53 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Lorin Lund Cc: iago , freebsd-questions@FreeBSD.ORG Subject: Re: laptops References: <001c01c03841$aa5e2460$0300fea9@lorins.ild.telecom.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Lorin Lund wrote: > > As for PCMCIA cards: Cardbus is not supported. You need to get 16 bit > cards. Also, it appears that PCMCIA cards under FreeBSD are not > hot-swappable. The card has to be in the slot at boot time to be > recognized. At least that is what it looks like to me. Two points: 1 Cardbus is not supported yet. You can hot swap PCMCIA cards, you merely have to power them down before you remove them. pccardc power x x (man pccardc for more information) > For notebook computers with builtin modems: everyone I've heard of are > WinModems. They won't work with FreeBSD yet. And maybe not ever. Get a PCMCIA modem. > I have a Compaq Presario 1200. It works but I wouldn't recommend it. I got > it before I knew what a hassle it would be to get configured. The biggest > hassle was X configuration. I ended up loading Linux Mandrake to let it > configure the X windows then I saved the X configuration file and reloaded > FreeBSD. Strange, because both FreeBSD and Linux use the same X server (XFree86) AFAIK. You might also want to check the web, several people post X configurations for laptops on the web (usually under a Linux page, but the X config works the same under FreeBSD). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7: 3:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id 18EB937B4FE for ; Tue, 17 Oct 2000 07:03:47 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lXJf-0004Wf-00 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 17:02:07 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lXLo-000NZS-00 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 17:04:20 +0300 Date: Tue, 17 Oct 2000 17:04:20 +0300 From: Odhiambo Washington To: FBSD-Q Subject: Defragmentation Message-ID: <20001017170420.C89971@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , FBSD-Q Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 4:48PM up 8 days, 19:36, 3 users, load averages: 0.00, 0.02, 0.07 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi users, Pls forgive my ignorance. What is the procedure for manually defragmenting disks in FBSD? I'm asking this because everyday I observer those msgs when the systems boots and I see some %age fragmentation just going up and up - but I am not able to capture that mesg - which obviuosly cannot be viewed by dmesg. Much thanks. -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Moderation is good, but boring. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:10:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id 28ABD37B479 for ; Tue, 17 Oct 2000 07:10:44 -0700 (PDT) Received: (qmail 17400 invoked from network); 17 Oct 2000 14:10:41 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 17 Oct 2000 14:10:41 -0000 Received: (qmail 792 invoked from network); 17 Oct 2000 14:10:28 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 17 Oct 2000 14:10:28 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBLPJ4>; Tue, 17 Oct 2000 15:09:29 +0100 Message-ID: From: Daniel Bye To: 'Odhiambo Washington' , FBSD-Q Subject: RE: Defragmentation Date: Tue, 17 Oct 2000 15:04:14 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG As far as I know, there are no defragmentation agents for FreeBSD (or most other *NICES). Therefore, you would have to rebuild your file systems. Take a tape backup of the entire system (this is sequential, so disk fragmentation is not an issue), rebuild your disk slice/partition setup, and then restore the backed up file systems from the tape. However, you shouldn't need to do this as often as under MS systems, as the various UNIX file systems aggressively try to minimise data fragmentation. If anyone knows of a defragmentation agent, I'd like to know :o) Dan > -----Original Message----- > From: Odhiambo Washington [mailto:wash@iconnect.co.ke] > Sent: Tuesday, October 17, 2000 3:04 PM > To: FBSD-Q > Subject: Defragmentation > > > Hi users, > Pls forgive my ignorance. > What is the procedure for manually defragmenting disks in FBSD? > I'm asking this because everyday I observer those msgs when > the systems > boots and I see some %age fragmentation just going up and up > - but I am > not able to capture that mesg - which obviuosly cannot be > viewed by dmesg. > > Much thanks. -Wash > > -- > Odhiambo Washington Inter-Connect Ltd., > wash@iconnect.co.ke 5th Flr Furaha Plaza > Tel: 254 11 222604 Nkrumah Rd., > Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. > > Moderation is good, but boring. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:19:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sentry.granch.com (sentry.granch.com [212.109.197.55]) by hub.freebsd.org (Postfix) with ESMTP id B494837B4CF for ; Tue, 17 Oct 2000 07:18:58 -0700 (PDT) Received: from sentry.granch.ru (IDENT:shelton@localhost [127.0.0.1]) by sentry.granch.com (8.9.3/8.9.3) with ESMTP id VAA23644; Tue, 17 Oct 2000 21:16:05 +0700 (NOVST) Message-ID: <39EC5F25.15247FC7@sentry.granch.ru> Date: Tue, 17 Oct 2000 21:16:05 +0700 From: "Rashid N. Achilov" Reply-To: achilov@granch.ru Organization: Granch Ltd. X-Mailer: Mozilla 4.74 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: Bart Cc: Gabriel Ambuehl , questions@FreeBSD.ORG Subject: Re: Realtek 100mbit References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bart wrote: > > On Thu, 12 Oct 2000, Gabriel Ambuehl wrote: > > > Hello Bart, > > > > Thursday, October 12, 2000, 3:37:22 PM, you wrote: > > > > >> How fast is the link over that you're talking to the server? Or do you > > >> mean internal transfers over the switch of the colo facility? > > > Internal transfers; the weird part is that my old > > > 3COM509b at 10mbit was faster over the same link > > > (internal and external) > > > > Well ACK. There must be something wrong. What does ifconfig -a yield? > > What about traceroute (there are colos who use, for some > > reasons I never really understood, their routers for traffic in their > > own LAN even if both machines are in the same subnet on the same > > I checked again and found this message: > Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for > tx list > Oct 17 14:35:33 wg /kernel: rl0: no memory for tx list > Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for > tx listrl0: no memory for tx list > Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for > tx list > Oct 17 14:35:33 wg /kernel: rl0: no memory for tx listrl0: no memory for > tx list > Read /usr/src/sys/pci/if_rl.c (begin comments from the driver developer) and you'll understand all...:-) RealTek-based cards (SMC1211TX, Accton and RealTek itself) working at 100Mb terrible! When they stand on two server of "my" network, these servers often made a reboots or simply loose the connect each other (were connected by crossover UTP5). Atfer change to Intel EtherExpress Pro/100+ all these symptoms disappeared. -- With Best Regards. Rashid N. Achilov (RNA1-RIPE), Brainbench ID: 28514 Granch Ltd. system administrator, e-mail: achilov@granch.ru tel/fax (383-2) 24-2363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:20:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 8A22037B4CF for ; Tue, 17 Oct 2000 07:20:01 -0700 (PDT) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id e9HEJkn14088; Tue, 17 Oct 2000 16:19:46 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 17 Oct 2000 16:19:46 +0200 (CEST) From: Micke Josefsson To: Daniel Bye Subject: RE: Defragmentation Cc: FBSD-Q Cc: FBSD-Q , Odhiambo Washington Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17-Oct-00 Daniel Bye wrote: > As far as I know, there are no defragmentation agents for FreeBSD (or most > other *NICES). Therefore, you would have to rebuild your file systems. > Take a tape backup of the entire system (this is sequential, so disk > fragmentation is not an issue), rebuild your disk slice/partition setup, and > then restore the backed up file systems from the tape. ffs tries to minimise fragmentation when writing files so simply *copying* files around should reallocate them with less framentation (then delete the original of course:). Moving files is not the same, as the actual inodes must be moved around for the system to get a chance of optimizing it. How many percent fragmentation is there? I have never seen more than a couple of percents worth. If the file system is full ffs will have a harder time doing a good job, in which case perhaps using tunefs to set size optimization is a good thing? > However, you shouldn't need to do this as often as under MS systems, as the > various UNIX file systems aggressively try to minimise data fragmentation. > > If anyone knows of a defragmentation agent, I'd like to know :o) > Never heard of it either. I don't think it is necessary. ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:28:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id 699E137B4E5 for ; Tue, 17 Oct 2000 07:28:12 -0700 (PDT) Received: (qmail 21210 invoked from network); 17 Oct 2000 14:28:11 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 17 Oct 2000 14:28:11 -0000 Received: (qmail 8388 invoked from network); 17 Oct 2000 14:28:10 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 17 Oct 2000 14:28:10 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBLPQS>; Tue, 17 Oct 2000 15:27:10 +0100 Message-ID: From: Daniel Bye To: 'Micke Josefsson' Cc: FBSD-Q , Odhiambo Washington Subject: RE: Defragmentation Date: Tue, 17 Oct 2000 15:21:56 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Agreed. I have never seen anything above 3%, on a disk that has been hammered for months. I would only start to worry if disk usage were above, say, 80% AND I saw high fragmentation (above 5-6%). The work involved in taking a copy of the FS and rebuuilding disk setups (or manually copying and deleting files :o\ ) is too much to contemplate! I didn't know about tunefs, though, so thanks for that gem! Dan > -----Original Message----- > From: Micke Josefsson [mailto:mj@isy.liu.se] > Sent: Tuesday, October 17, 2000 3:20 PM > To: Daniel Bye > Cc: FBSD-Q; FBSD-Q; Odhiambo Washington > Subject: RE: Defragmentation > > > > On 17-Oct-00 Daniel Bye wrote: > > As far as I know, there are no defragmentation agents for > FreeBSD (or most > > other *NICES). Therefore, you would have to rebuild your > file systems. > > Take a tape backup of the entire system (this is sequential, so disk > > fragmentation is not an issue), rebuild your disk > slice/partition setup, and > > then restore the backed up file systems from the tape. > > > ffs tries to minimise fragmentation when writing files so > simply *copying* files > around should reallocate them with less framentation (then > delete the original > of course:). Moving files is not the same, as the actual > inodes must be moved > around for the system to get a chance of optimizing it. > > How many percent fragmentation is there? I have never seen > more than a couple of > percents worth. If the file system is full ffs will have a > harder time doing a > good job, in which case perhaps using tunefs to set size > optimization is a good > thing? > > > However, you shouldn't need to do this as often as under MS > systems, as the > > various UNIX file systems aggressively try to minimise data > fragmentation. > > > > If anyone knows of a defragmentation agent, I'd like to know :o) > > > > Never heard of it either. I don't think it is necessary. > > > ---------------------------------- > Michael Josefsson, MSEE > mj@isy.liu.se > > This message was sent by XFMail > running on FreeBSD 3.5-STABLE > ---------------------------------- > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:32: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 8A1E537B4E5 for ; Tue, 17 Oct 2000 07:32:06 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 0FC07328F; Mon, 16 Oct 2000 06:55:32 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id EE31E328E; Mon, 16 Oct 2000 06:55:31 +0000 (GMT) Date: Mon, 16 Oct 2000 06:55:31 +0000 (GMT) From: Rick Hamell To: iago Cc: freebsd-questions@freebsd.org Subject: Re: laptops In-Reply-To: <001201c03838$185c9aa0$0200a8c0@ryan> 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 > looking into getting a laptop > > i will most likelt dual boot betweem MS and FreeBSD, to that end... what > laptops are people using with FreeBSD these days? > > are they running well ... X also working fine? I've got a Gateway Solo 1100... not much but it works... see my page at http://heorot.1nova.com/freebsd for a couple of links to laptop lists. Ric ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:40:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id 5916C37B657 for ; Tue, 17 Oct 2000 07:40:12 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lXtO-00081D-00 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 17:39:02 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lXvX-000Nh7-00 for freebsd-questions@FreeBSD.ORG; Tue, 17 Oct 2000 17:41:15 +0300 Date: Tue, 17 Oct 2000 17:41:15 +0300 From: Odhiambo Washington To: freebsd-questions@FreeBSD.ORG Subject: Re: Ported app Message-ID: <20001017174115.D89971@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-questions@FreeBSD.ORG References: <009001c0378d$5e3f7f70$ef259dd1@sftw.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <009001c0378d$5e3f7f70$ef259dd1@sftw.com>; from "Chris Love" on Mon, Oct 16, 2000 at 09:23:07AM -0700 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 5:40PM up 8 days, 20:28, 2 users, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Chris Love [20001016 19:23]: =>Greetings.... I was wondering if this may be posted somewhere on your site.... => =>Thanks, Chris => =>Premier Systems Management Software now available for FreeBSD => =>Enlighten Software Solutions, Inc. is pleased to announce the availability of EnlightenDSM v3.5 for FreeBSD 4.x. EnlightenDSM extends its event monitoring and system administration capabilities to FreeBSD users. => =>With the exponential growth of some of the Internet's busiest sites that rely on FreeBSD to power their servers, it is imperative to have tools that will manage these systems collectively on a scaleable basis. EnlightenDSM, the award-winning product from Enlighten Software Solutions, Inc. allows individuals to administer and monitor multiple operating systems including FreeBSD, Linux, Unix and Windows, all from a single console. Users can manage any number of FreeBSD systems. By allowing administrators to group machines nto logical pools and configure and manage them collectively, it increases the overall availability of servers in the network. By creating single point administration of users, disks, printers and other resources, EnlightenDSM makes IT personnel more productive and creates a scalable IT environment for the business. => =>EnlightenDSM's out-of-box installation and ease of use provides immediate return on investment. => =>EnlightenDSM offers a cost-effective solution by automating administrative tasks and monitoring critical operational and performance characteristics across multiple operating systems from a single console. This solution confirms Enlighten's commitment to provide a robust system monitoring and administration solution specifically to meet business needs. => =>For more information, please visit our web site at www.EnlightenDSM.com or call us at 650-578-0700. => I did not see any mention of FreeBSD out there ;-) -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. My most brilliant achievement was my ability to be able to persuade my wife to marry me. -Winston Churchill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:41:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mdanderson.org (mail.mdanderson.org [143.111.87.47]) by hub.freebsd.org (Postfix) with ESMTP id 9DCD137B479 for ; Tue, 17 Oct 2000 07:41:08 -0700 (PDT) Received: from jef-nt.mdacc.tmc.edu (jef-nt.mdacc.tmc.edu [143.111.64.202]) by mail.mdanderson.org (8.9.1b+Sun/8.9.1) with ESMTP id JAA02345; Tue, 17 Oct 2000 09:37:46 -0500 (CDT) Date: Tue, 17 Oct 2000 09:41:12 -0500 Message-ID: <8766mro7i0.wl@jef-nt.mdacc.tmc.edu> From: Jonathan Fosburgh To: Daniel.Bye@uk.uu.net Cc: wash@iconnect.co.ke, freebsd-questions@FreeBSD.ORG Subject: RE: Defragmentation In-Reply-To: In your message of "Tue, 17 Oct 2000 15:04:14 +0100" References: User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) XEmacs/21.1 (patch 12) (Channel Islands) (i686-pc-cygwin32) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Daniel Bye writes: > As far as I know, there are no defragmentation agents for FreeBSD (or most > other *NICES). Therefore, you would have to rebuild your file systems. > Take a tape backup of the entire system (this is sequential, so disk > fragmentation is not an issue), rebuild your disk slice/partition setup, and > then restore the backed up file systems from the tape. > However, you shouldn't need to do this as often as under MS systems, as the > various UNIX file systems aggressively try to minimise data fragmentation. > If anyone knows of a defragmentation agent, I'd like to know :o) > Dan In addition to that, I really don't think fragmentation is a problem unless it gets very high (I think I've heard the figure 90%, but I am very unsure). You might go check the mailing list archives as this is discussedat least every month or two. -- Jonathan Fosburgh Open Systems Communications and Computer Services UT MD Anderson Cancer Center Houston, TX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:50:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from be-well.ilk.org (lowellg.ne.mediaone.net [24.147.184.128]) by hub.freebsd.org (Postfix) with ESMTP id 00F5D37B4FE for ; Tue, 17 Oct 2000 07:50:03 -0700 (PDT) Received: (from lowell@localhost) by be-well.ilk.org (8.11.1/8.11.1) id e9HEo2n11212; Tue, 17 Oct 2000 10:50:02 -0400 (EDT) (envelope-from lowell) To: freebsd-questions@freebsd.org Subject: Re: Defragmentation References: From: Lowell Gilbert Date: 17 Oct 2000 10:50:01 -0400 In-Reply-To: Daniel.Bye@uk.uu.net's message of "17 Oct 2000 16:11:08 +0200" Message-ID: <44y9znfrom.fsf@lowellg.ne.mediaone.net> Lines: 12 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Daniel.Bye@uk.uu.net (Daniel Bye) writes: > However, you shouldn't need to do this as often as under MS systems, as the > various UNIX file systems aggressively try to minimise data fragmentation. "Disk fragmentation" doesn't even *mean* the same thing on FreeBSD that it does on Microsoft filesystems. Although rather dated in absolute terms, the seminal paper on FFS is available and readable for the important concepts, and available on most FreeBSD systems as: /usr/share/doc/smm/05.fastfs/paper.ascii.gz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:56: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id A034337B4D7 for ; Tue, 17 Oct 2000 07:55:57 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lY8b-00095m-00 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 17:54:45 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lYAk-000Nje-00 for freebsd-questions@FreeBSD.ORG; Tue, 17 Oct 2000 17:56:58 +0300 Date: Tue, 17 Oct 2000 17:56:58 +0300 From: Odhiambo Washington To: FBSD-Q Subject: Re: Defragmentation Message-ID: <20001017175658.E89971@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , FBSD-Q References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Micke Josefsson" on Tue, Oct 17, 2000 at 04:19:46PM +0200 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 5:47PM up 8 days, 20:35, 2 users, load averages: 0.00, 0.01, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Micke Josefsson [20001017 17:21]: => =>On 17-Oct-00 Daniel Bye wrote: =>> As far as I know, there are no defragmentation agents for FreeBSD (or most =>> other *NICES). Therefore, you would have to rebuild your file systems. =>> Take a tape backup of the entire system (this is sequential, so disk =>> fragmentation is not an issue), rebuild your disk slice/partition setup, and =>> then restore the backed up file systems from the tape. Now that is where the dilemna is..my box has no tape drive! But I have a tape of 10GB and there is another FBSD box near me which has the tape drive. I've heard about amanda and some network backup applications but I think I may be able to backup but not restore....what is the procedure when the tape drive is not on the box?? => => =>ffs tries to minimise fragmentation when writing files so simply *copying* files =>around should reallocate them with less framentation (then delete the original =>of course:). Moving files is not the same, as the actual inodes must be moved =>around for the system to get a chance of optimizing it. => =>How many percent fragmentation is there? I have never seen more than a couple of =>percents worth. If the file system is full ffs will have a harder time doing a =>good job, in which case perhaps using tunefs to set size optimization is a good =>thing? It's now at 2.3% but for a long time I've been watching it come this far... =>> However, you shouldn't need to do this as often as under MS systems, as the =>> various UNIX file systems aggressively try to minimise data fragmentation. I get the point. Thank you. =>> =>> If anyone knows of a defragmentation agent, I'd like to know :o) =>> Some Linux guy said Linux does it automatically ??? Heard anything like that? I've never used Linux though, except as a dumb user..just telnet, mail.. => =>Never heard of it either. I don't think it is necessary. Any idea how I can capture the msgs about the file systems when system boots, including when it's starting the daemons..? Thanking you guys BIG! -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Just as a flower which seems beautiful and has color but no perfume, so are the fruitless words of the man who speaks them but does them not. -Dhammapada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:58:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id 7D9F437B4FE for ; Tue, 17 Oct 2000 07:58:11 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lYAj-0009Dh-00 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 17:56:57 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lYCs-000NkK-00 for freebsd-questions@FreeBSD.ORG; Tue, 17 Oct 2000 17:59:10 +0300 Date: Tue, 17 Oct 2000 17:59:10 +0300 From: Odhiambo Washington To: freebsd-questions@FreeBSD.ORG Subject: Re: Defragmentation Message-ID: <20001017175910.F89971@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-questions@FreeBSD.ORG References: <8766mro7i0.wl@jef-nt.mdacc.tmc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <8766mro7i0.wl@jef-nt.mdacc.tmc.edu>; from "Jonathan Fosburgh" on Tue, Oct 17, 2000 at 09:41:12AM -0500 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 5:57PM up 8 days, 20:45, 2 users, load averages: 0.00, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Jonathan Fosburgh [20001017 17:42]: => =>In addition to that, I really don't think fragmentation is a problem =>unless it gets very high (I think I've heard the figure 90%, but I am =>very unsure). You might go check the mailing list archives as this is =>discussed at least every month or two. Huh..that gives some hope but not seeing the 2.3% fragmented gives utmost hope. BTW my 4.1.1-STABLE is on a 2GB drive.... -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. To love somebody who doesn't love you, is like going to a temple and worshipping the behind of a wooden statue of a hungry devil. -Lady Kasa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 7:58:59 2000 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 7BE0F37B4D7 for ; Tue, 17 Oct 2000 07:58:55 -0700 (PDT) Received: (from proot@localhost) by iaces.com (8.10.1/8.10.1) id e9HEwXv40081; Tue, 17 Oct 2000 09:58:33 -0500 (CDT) Date: Tue, 17 Oct 2000 09:58:33 -0500 From: "Paul T. Root" To: Greg Lehey Cc: Steve Jorgensen , Jan Knepper , Kenneth Wayne Culver , FreeBSD Questions Subject: Re: Dell Inspiron 5000/7500 Message-ID: <20001017095833.L35410@horton.iaces.com> References: <20001004080703.A4077@horton.iaces.com> <39DA0152.9CF3CDA7@smartsoft.cc> <200010032002.OAA00104@khoral.com> <20001014142353.L1489@sydney.worldwide.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001014142353.L1489@sydney.worldwide.lemis.com>; from grog@lemis.com on Sat, Oct 14, 2000 at 02:23:53PM -0700 X-Organization: Qwest - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: Minneapolis, MN 55413 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Oct 14, 2000 at 02:23:53PM -0700, Greg Lehey wrote: > On Tuesday, 3 October 2000 at 14:02:05 -0600, Steve Jorgensen wrote: > > > > I have Inspiron 7500, and am running FreeBSD 4.1-STABLE on it. > > It works like a charm. > > > > Jan Knepper wrote > >>> Kenneth Wayne Culver wrote: > >>> > >>> Did you get X to work at all? > > > > I've heard XF86 4.x works just fine. However, I'm using the > > XF86 3.3.6 server because 4 is still seems to be a bit unstable. > > The 3.3.6 server will work just fine 800x600. In order get the > > full 1400x1050 or other higher resolutions, you have to follow > > the directions at http://www.eecs.umich.edu/~steveh/inspiron/ > > I don't have web access at the moment, but I suspect this refers to a > problem with blanking under 3.3.6. I chose to upgrade to 4.0.1 on my > Inspiron 7500. After a little bit of manual configuration, it works > fine at 1400x1050. I'm attaching the XF86Config. Thanks! I installed 4.0.1 and works fine. > > One thing you didn't ask about is sound. The 7500 sound is > > not currently supported; however, it is being worked on. > > It works under -CURRENT, but the volume is a little low. I don't > recall that I had to do any special configuration. > > pcm0: port 0x1400-0x14ff irq 5 at device 8.0 on pci0 > > On Wednesday, 4 October 2000 at 8:07:03 -0500, Paul T. Root wrote: > > On Tue, 03 Oct 2000 11:54:58 -0400, Jan Knepper wrote: > > > > I have it running (4.1) on a 5000. It works pretty well. The internal > > modem is a win modem, so it's useless. > > Newer versions of -CURRENT recognize the card: > > pci0: at 16.0 irq 5 > > If you want support, you still need to write it, but at least you now > know what it is :-) That's cool. > > I don't have a 3Com card with it. > > I deliberately didn't buy the card that comes with the machine. We > still have difficulty with 100 MB/s PCMCIA Ethernet cards, so I bought > a cheap 10 Mb/s clone instead. > > > I got sound working (only through the headphone jack - known > > problem) with the beta code for that sound chip set. > > The -CURRENT code doesn't seem to have that problem. My sound card code is a little old. I should upgrade it. I also have licenses for OSS, which I see that they have 4.x support now. I'm hesitent to go to current. I use this as a tool, I'm not a developer anymore. > > I have only been able to get X to work, if I have an external > > monitor! Very strange, it comes up on an external monitor then you > > can hot swap to the built in. I don't get that. I think that's with > > 3.3.6. > > I suspect that this is related to the blanking problem I mentioned > above. That's exactly what it was > > I have do have USB and PCCards working (16 bit not 32 bit CardBus). > > Right, we don't support CardBus yet. > > Greg > -- -- "A spy without gadgets is like a shopping cart without a broken wheel." -- Spy Fox To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8: 7:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.southwind.net (jasper.southwind.net [206.53.103.7]) by hub.freebsd.org (Postfix) with ESMTP id 4AF6B37B4FE for ; Tue, 17 Oct 2000 08:07:11 -0700 (PDT) Received: from localhost (gmains@localhost) by jasper.southwind.net (8.10.1/8.10.1) with ESMTP id e9HF74w25276; Tue, 17 Oct 2000 10:07:05 -0500 (CDT) X-Authentication-Warning: jasper.southwind.net: gmains owned process doing -bs Date: Tue, 17 Oct 2000 10:07:04 -0500 (CDT) From: Gabriel To: iago Cc: freebsd-questions@FreeBSD.ORG Subject: Re: laptops In-Reply-To: <001201c03838$185c9aa0$0200a8c0@ryan> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a KFC 9950 and an HP Omnibook 3000. Neither of them took too long to set up. Here is what I have learned so far: Maestro II PCI soundcards are not yet supported. (I think they are in 5.0-Current) So no sound so far for the KFC. The KFC also has an ATI Rage Pro LT 8MB video card in it. For some reason when trying to run XF86Setup it bombs out. I have to run the setup manually. That is a pain... I have yet to have a problem with PCCard support in FreeBSD 3.2+ and 4.0+, but then again I have a Zircom Realport, which is supported. If you are going to get a top-of-the-line laptop, be prepaired for some of the hardware, like the sound and modem to NOT be supported for awhile....if ever. Gabriel =============================================================================== ------------------------------------------------------------------------------- Gabriel SouthWind Internet Access, Inc. Department Manager 120 S. Market SouthWind Technical Support 800-525-7963 ------------------------------------------------------------------------------- This message has been answered by the OneMain.com Kansas Technical Support Staff. Serving the OneMain.com family of Companies in Kansas: fn.net, hit.net, and southwind.net. ------------------------------------------------------------------------------- =============================================================================== On Tue, 17 Oct 2000, iago wrote: > > HI everyone > > looking into getting a laptop > > i will most likelt dual boot betweem MS and FreeBSD, to that end... what > laptops are people using with FreeBSD these days? > > are they running well ... X also working fine? > > thanks > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8: 9:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web5302.mail.yahoo.com (web5302.mail.yahoo.com [216.115.106.111]) by hub.freebsd.org (Postfix) with SMTP id B612A37B4CF for ; Tue, 17 Oct 2000 08:09:10 -0700 (PDT) Message-ID: <20001017150910.7950.qmail@web5302.mail.yahoo.com> Received: from [162.42.8.70] by web5302.mail.yahoo.com; Tue, 17 Oct 2000 08:09:10 PDT Date: Tue, 17 Oct 2000 08:09:10 -0700 (PDT) From: george vagner Subject: RE: UDF cdroms To: Otter , 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 after looking thru the archives I seen that UDF "universal data format" is not yet supported but there is work on such a thing. according to adaptec udf is installed in the os when you install the cdrom into the drive if its not already installed and has support for dos/win and mac but no freebsd. I thinmk the next best thing i can do is copy the files over the network and make an iso image out of them then burn it. --- Otter wrote: > if you want to mount the image file, it should be a > raw one. that > being the case, try man vn and vnconfig for info. > i'm guessing here, > since i've never worked with a udf format. even > though someone might > use the .cif format, if it is burned to a cd, i'd > just mount whatever > filesystem was used. msdos/ntfs would be my first > tries, since it was > done with an adaptec application. > -Otter > > > }-----Original Message----- > }From: owner-freebsd-questions@FreeBSD.ORG > }[mailto:owner-freebsd-questions@FreeBSD.ORG]On > Behalf Of > }george vagner > }Sent: Tuesday, October 17, 2000 2:20 AM > }To: questions@FreeBSD.ORG > }Subject: UDF cdroms > } > } > }I have some cdroms that were created using > ezcdcreator > }that uses a "UDF" format and i was trying to mount > }them or even copy them completely using cdrecord > }and I realized that freebsd cant read them. > } > }So is there any way that it can be read using > freebsd > }to make a copy? > } > }i was thinking i could make an ISO image after > }mounting it and then burn a real cd out of it but > }first i gotta figure out how to mount it. > } > }maybe... mount_UDF would be a nice addition to the > }various tools. > } > } > }any ideas anyone? > } > } > }cant subscribe to list cause my hostname cant be > }found? > }george@vagner.com > } > } > } > }__________________________________________________ > }Do You Yahoo!? > }Yahoo! Messenger - Talk while you surf! It's FREE. > }http://im.yahoo.com/ > } > } > }To Unsubscribe: send mail to majordomo@FreeBSD.org > }with "unsubscribe freebsd-questions" in the body of > the message > __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8:10:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id A8D3937B479 for ; Tue, 17 Oct 2000 08:10:32 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lYMf-0009oZ-00; Tue, 17 Oct 2000 18:09:18 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lYOo-000Nnl-00; Tue, 17 Oct 2000 18:11:30 +0300 Date: Tue, 17 Oct 2000 18:11:30 +0300 From: Odhiambo Washington To: Daniel Bye Cc: FBSD-Q Subject: Re: Defragmentation Message-ID: <20001017181130.G89971@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , Daniel Bye , FBSD-Q References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Daniel Bye" on Tue, Oct 17, 2000 at 03:21:56PM +0100 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-URL: web.iconnect.co.ke/users/wash X-Accept-Language: en X-Editor: Pico http://www.washington.edu/ X-Location: Mombasa, KE, East Africa X-Uptime: 6:05PM up 8 days, 20:53, 1 user, load averages: 0.01, 0.00, 0.00 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Daniel Bye [20001017 17:29]: =>Agreed. I have never seen anything above 3%, on a disk that has been =>hammered for months. I would only start to worry if disk usage were above, =>say, 80% AND I saw high fragmentation (above 5-6%). The work involved in =>taking a copy of the FS and rebuuilding disk setups (or manually copying and =>deleting files :o\ ) is too much to contemplate! alouette# df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s2a 74383 31717 36716 46% / /dev/ad0s2e 1686783 1378659 173182 89% /usr /dev/ad0s2f 34687 22929 8984 72% /var /dev/ad0s1 2048000 1738560 309440 85% /win procfs 4 4 0 100% /proc => =>I didn't know about tunefs, though, so thanks for that gem! Have I missed this one about tunefs? Well no. But I am wondering if enabling/disabling of soft updates can be a factor to the % increase. I have it enabled! -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Absence blots people out. We really have no absent friends. -Elizabeth Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8:12:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nbf-27.umd.edu (nbf-27.umd.edu [128.8.38.27]) by hub.freebsd.org (Postfix) with ESMTP id 53A5137B479 for ; Tue, 17 Oct 2000 08:12:10 -0700 (PDT) Received: from glue.umd.edu (localhost [127.0.0.1]) by nbf-27.umd.edu (8.11.1/8.11.1) with ESMTP id e9HFC6l39948; Tue, 17 Oct 2000 11:12:07 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <39EC6C46.6E61AB1B@glue.umd.edu> Date: Tue, 17 Oct 2000 11:12:06 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: daniel.cuthbert@uk.psi.com Cc: Freebsd-Questions Subject: Re: FBSD 4.1.1 and Enlightenment References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dan Cuthbert wrote: > > Hi all > > Is someone out there running Enlightenment and making use of Imlib2 and EFM? > I cannot seem to get imlib2 to compile, it complains about the use of > Freetype fonts (even though i have Xfstt running with 60 TTf fonts > available) it still says that it cant find them I have Imlib2 running fine, but Enlightenment 16.5 still uses imlib so you shouldn't need imlib2 yet. Either way, imlib2-1.0.0 was just released yesterday, I should have the port for it submitted by tonight. I haven't tried it with xfstt running, if I send you my port skeleton can you test the release version for me? As for EFM...thats a whole 'nother story. It's still very much developmental, is undergoing a major rewrite at the moment and it depends on sgi's fam, which hasn't been ported to FreeBSD yet. If you want more detailed info on either of these write e-develop@enlightenment.org. -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8:12:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bumper.jellybaby.net (bumper.jellybaby.net [194.159.247.1]) by hub.freebsd.org (Postfix) with ESMTP id 5CABD37B4C5 for ; Tue, 17 Oct 2000 08:12:16 -0700 (PDT) Received: (from simond@localhost) by bumper.jellybaby.net (8.9.2/8.9.2) id QAA41113; Tue, 17 Oct 2000 16:12:09 +0100 (BST) (envelope-from simond) Date: Tue, 17 Oct 2000 16:12:09 +0100 From: simond@irrelevant.org To: george vagner Cc: Otter , questions@FreeBSD.ORG Subject: Re: UDF cdroms Message-ID: <20001017161209.B31324@irrelevant.org> References: <20001017150910.7950.qmail@web5302.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001017150910.7950.qmail@web5302.mail.yahoo.com>; from kf7nn@yahoo.com on Tue, Oct 17, 2000 at 08:09:10AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 08:09:10AM -0700, george vagner wrote: > after looking thru the archives I seen that > UDF "universal data format" is not yet supported > but there is work on such a thing. > > according to adaptec udf is installed in the os when > you install the cdrom into the drive if its not > already > installed and has support for dos/win and mac but no > freebsd. The way the UDF stuff works with Adaptecs DirectCD at least is that it installs an autorun.ini file which runs the installation program for Windows, then once the DirectCD driver is installed that section of the CD is treated as though it's not there. Well, that was the case last time I looked :) -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8:12:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 7BFBB37B4CF for ; Tue, 17 Oct 2000 08:12:31 -0700 (PDT) Received: from freebsd.mindspring.com (user-33qtb0o.dsl.mindspring.com [199.174.172.24]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id LAA08752 for ; Tue, 17 Oct 2000 11:12:29 -0400 (EDT) Received: (from david@localhost) by freebsd.mindspring.com (8.11.1/8.11.1) id e9HFCSK87470 for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 10:12:28 -0500 (CDT) (envelope-from david) Date: Tue, 17 Oct 2000 10:12:27 -0500 From: David Kanter To: FreeBSD questions Subject: Lpd swallowing my print jobs? Message-ID: <20001017101227.A87458@freebsd.mindspring.com> Mail-Followup-To: FreeBSD questions Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.1.1-STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've just installed apsfilter, and the test page printed fine. Lpd is started, however whenever I "lpr" a file nothing happens. I hear the hard drive spinning for a bit (queueing things up) but nothing happens. No lpd errors, and lpq shows "no entries." What did I do wrong? -- David Kanter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8:21:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from uswgne22.uswest.com (uswgne22.uswest.com [204.26.87.76]) by hub.freebsd.org (Postfix) with ESMTP id BAC9637B4CF for ; Tue, 17 Oct 2000 08:21:20 -0700 (PDT) Received: from egate-ne2.uswc.uswest.com (egate-ne2.uswc.uswest.com [151.117.64.200]) by uswgne22.uswest.com (8.10.0/8.10.0) with ESMTP id e9HFLD313437; Tue, 17 Oct 2000 10:21:14 -0500 (CDT) Received: from duntx003.litel.com (localhost [127.0.0.1]) by egate-ne2.uswc.uswest.com (8.10.0/8.10.0) with ESMTP id e9HFLDJ04266; Tue, 17 Oct 2000 10:21:13 -0500 (CDT) Received: by DUNTX003 with Internet Mail Service (5.5.2650.21) id <46Y6MAYC>; Tue, 17 Oct 2000 11:21:34 -0400 Message-ID: <9D35FA2F8EFCD111BA5A00805FA75E870846479E@fdntx001> From: "Cribbins, Jason" To: Greg Lehey Cc: FreeBSD Questions Subject: RE: Promise Ultra100 Drivers Date: Tue, 17 Oct 2000 11:14:46 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>> Is there any place I can find drivers for a Ultra 100 IDE PCI card from >>>> Promise Technology? >>> >>> Yes. Check http://www.freebsd.org/releases/4.1.1R/notes.html: >>> >>> The ata(4) driver now has support for ATA100 controllers. >> >> I am somewhat new to this. I am running 4.1-Stable. Can I just download >> some file to add or patch my current system built? > >No, that's not the way we do things. We prefer to keep things stable, >so you need to update your -STABLE source tree. Of course, if it's >recent (later than 4.1.1-RELEASE), it already has the support. By what method can I update my source tree. I attempted to use CVS and found I don't have the disk ace to do that (which is why I need IDE support). I also downloaded new boot floppies from the 4.1.1-release folders on ftp.freebsd.org and this failed to allow me to see the drive and caused me to have an unbootable system. I ended up with a system that I had to manually load the kernel by typing the path and filename in at every boot before it will start. Eventually I found that renaming /kernel.GENERIC to /kernel would solve this. The system is in a state where nothing on it matters to me right now so reinstall via ftp is not a problem...only time consuming on my 144k connection. I am becoming an expert on ftp installs while I sleep :) > >> I am also told that the Ultra66 driver will work on the Ultra100 >> card. How can I redirect the Ultra66 driver to be associated with >> the Ultra 100 card when detected? > >You don't need to do anything. Start it up and look at the dmesg >output (saved in /var/run/dmesg.boot) to see what the driver found. > The /var/run/dmesg.boot shows no record of the care but I do see a line that states there is an unknown device in PCI0 which I am guessing is talking about this card being the only PCI card I am using right now. The system is not here where I am now so I don't have the exact line but I will get it the next time I try to install. It did give two hex codes which look like some sort of hardware id's that the card may be sending to identify itself. What should I be looking for in the dmesg.boot file? Nothing else in there seems to apply to this. Jason Cribbins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 8:35:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tesla.salk.edu (tesla.salk.edu [198.202.70.1]) by hub.freebsd.org (Postfix) with ESMTP id E98D537B4D7 for ; Tue, 17 Oct 2000 08:35:48 -0700 (PDT) Received: from salk.edu (hartline.salk.edu [198.202.70.228]) by tesla.salk.edu (8.10.2/8.10.2) with ESMTP id e9HFaOw29512; Tue, 17 Oct 2000 08:36:24 -0700 (PDT) Message-ID: <39EC719D.B2AE23C4@salk.edu> Date: Tue, 17 Oct 2000 08:34:53 -0700 From: "Lisa J. Croner" Organization: The Salk Institute X-Mailer: Mozilla 4.73 [en] (WinNT; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG, croner@salk.edu Subject: max_normal 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 rewrite a program (it runs on an old SUN) to run on a freeBSD machine. The program has a function called max_normal that doesn't appear in our new math.h for freeBSD. Do you know what max_normal does and how I might replace it? Thank you, Lisa croner@salk.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 9: 1: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id 29C9C37B4F9 for ; Tue, 17 Oct 2000 09:01:01 -0700 (PDT) Received: from bld22.IRO.UMontreal.CA (IDENT:root@bld22.IRO.UMontreal.CA [132.204.21.49]) by mercure.IRO.UMontreal.CA (8.9.3/8.9.3) with ESMTP id MAA14526; Tue, 17 Oct 2000 12:00:44 -0400 Received: from localhost (beaupran@localhost) by bld22.IRO.UMontreal.CA (8.9.3/8.9.3) with ESMTP id MAA06137; Tue, 17 Oct 2000 12:00:43 -0400 Full-Name: Antoine Beaupre Date: Tue, 17 Oct 2000 12:00:43 -0400 (EDT) From: Antoine Beaupre To: Roman Shterenzon Cc: Patrick Seal , freebsd-questions@FreeBSD.ORG Subject: Re: inetd logging bug 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 [trimmed -security cc off] I've had such problems with chroot'd programs, that need /etc/localtime. Copying /etc/localtime to /where/ever/the/program/is/chroot/etc/ solves the problem. A. On Sat, 14 Oct 2000, Roman Shterenzon wrote: > On Fri, 13 Oct 2000, Patrick Seal wrote: > > > I'm running 4.1.1-STABLE as of a week ago. > > > > Notice the 4 hour time difference > > This is from my log file: > > > > > > Oct 12 12:10:15 foobar postfix/smtpd[34392]: disconnect from localhost[127.0.0.1] > > Oct 12 16:13:12 foobar inetd[34424]: connection from 130.228.106.10, service ftpd (tcp) > > Oct 12 12:13:12 foobar ftpd[34424]: connection from 130.228.106.10 (130.228.106.10) > > Oct 12 12:15:00 foobar CRON[34428]: (root) CMD (/usr/local/bin/mrtg /usr/local/etc/mrtg/mrtg.cfg) > > ... > > > > Oct 12 16:25:11 foobar postfix/smtpd[36876]: disconnect from localhost[127.0.0.1] > > Oct 12 20:26:21 foobar inetd[36894]: connection from master.wingsisp.com, service ftpd (tcp) > > Oct 12 16:26:25 foobar ftpd[36894]: connection from master.wingsisp.com (12.34.36.6) > > Oct 12 16:30:00 foobar CRON[36899]: (root) CMD (/usr/local/bin/mrtg /usr/local/etc/mrtg/mrtg.cfg) > > I've 4.1.1-STABLE from the same time and don't have this problem. > Check your /etc/localtime, try restarting inetd. > > --Roman Shterenzon, UNIX System Administrator and Consultant > [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-security" in the body of the message > Si l'image donne l'illusion de savoir C'est que l'adage pretend que pour croire, L'important ne serait que de voir Lofofora To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 9: 3:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (Postfix) with ESMTP id 1AD4737B4C5 for ; Tue, 17 Oct 2000 09:03:53 -0700 (PDT) Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.9.3/8.9.3) id SAA35938 for questions@freebsd.org; Tue, 17 Oct 2000 18:03:59 +0200 (CEST) (envelope-from kuku) Date: Tue, 17 Oct 2000 18:03:59 +0200 (CEST) From: Christoph Kukulies Message-Id: <200010171603.SAA35938@gilberto.physik.rwth-aachen.de> To: questions@freebsd.org Subject: 4.1 CDROM doesn't boot Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What's the cause for a 4.1 CDROM not booting when BIOS supports booting? It says something with 2.88 device, accesses the cdrom, I believe, but then starts through (black scrren, warm boot). -- 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 Tue Oct 17 9: 5: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rapidnet.com (rapidnet.com [205.164.216.1]) by hub.freebsd.org (Postfix) with ESMTP id 7174E37B4CF for ; Tue, 17 Oct 2000 09:05:03 -0700 (PDT) Received: from imagination (imagination.rapidnet.com [206.85.240.245]) by rapidnet.com (8.9.3/8.9.3) with SMTP id KAA73162 for ; Tue, 17 Oct 2000 10:05:02 -0600 (MDT) Message-ID: <013c01c03853$e5908a70$f5f055ce@rapidnet.com> From: "pstapley" To: Subject: mail Date: Tue, 17 Oct 2000 10:04:14 -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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there anyway to specify a reply to address on the command line when using 'mail'? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 9:24:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web110.yahoomail.com (web110.mail.yahoo.com [205.180.60.80]) by hub.freebsd.org (Postfix) with SMTP id E2C7D37B4E5 for ; Tue, 17 Oct 2000 09:24:41 -0700 (PDT) Received: (qmail 7771 invoked by uid 60001); 17 Oct 2000 16:24:41 -0000 Message-ID: <20001017162441.7770.qmail@web110.yahoomail.com> Received: from [209.247.40.201] by web110.yahoomail.com; Tue, 17 Oct 2000 09:24:41 PDT Date: Tue, 17 Oct 2000 09:24:41 -0700 (PDT) From: Guolin Cheng Subject: Re: Reserved ports too limited for amd (automount) on FreeBSD 4.1 To: Doug Barton , freebsd-questions@freebsd.org Cc: jad@alexa.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug Barton, Thanks. I already did the step, changed the IPPORT_RESERVED parameter in /usr/src/sys/netinet/in.h and recompiled it, but the problem is: it aborted when compiling! I have to use a old kernel. I want to know if there is a switch/option that we can set so that amd will not use reserved ports by default, or if there are other versions of amd that doesn't use reserved ports by default. Thanks. Your know, if we change the range of reserved ports, the R-commands (rsh, rlogin, rexec..) will run into trouble, because R-daemons can only accept connection requests using ports between 512 and 1023!!! too terrible! Yours sincerely, Guolin Cheng --- Doug Barton wrote: > On Mon, 16 Oct 2000, Guolin Cheng wrote: > > > Matt Heckaman, > > > > Thanks. > > > > I changed using sysctl command after FreeBSD 4.1 reboot, the problem is: > even > > the parameter is changed ( sysctl -w net.inet.ip.portrange.lowfirst=2023 ), > the > > amd still using ports <1024, since the reserved ports already was in use > from > > 1023! and now they will be used one by one sequentially!!! :(( > > Your problem is that by definition the secure port range ends at > 1023. You _may_ be able to get what you want by changing IPPORT_RESERVED > in /usr/src/sys/netinet/in.h and rebuilding your world and kernel, but > it'd be a hack of potentially dangerous proportions. > > Doug > -- > "The dead cannot be seduced." > - Kai, "Lexx" > > Do YOU Yahoo!? > > ===== With Best Regards. Guolin Cheng Alexa Internet Company Presidio of San Francisco, San Francisco, CA 94129 (415)561-6900 ext. 6021 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10: 0:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from iteso.mx (iteso.mx [148.201.1.4]) by hub.freebsd.org (Postfix) with ESMTP id 4610137B65F for ; Tue, 17 Oct 2000 10:00:25 -0700 (PDT) Received: from localhost (eric@localhost) by iteso.mx (8.11.0/8.11.0) with ESMTP id e9HH0Ji87922 for ; Tue, 17 Oct 2000 12:00:20 -0500 (CDT) (envelope-from eric@iteso.mx) Date: Tue, 17 Oct 2000 12:00:19 -0500 (CDT) From: De la Cruz Lugo Eric To: questions@freebsd.org Subject: Comments about comparissons betewwn ffs and ReiserFS 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 some one here have info about a comparison on performance between the FreeBSD ffs and the Linux ReiserFS? thanks in advance. Eric De La Cruz Lugo. Merida, Yucatan, Mexico, The MayaLand To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:10:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 56ACE37B4F9 for ; Tue, 17 Oct 2000 10:10:07 -0700 (PDT) Received: from d.tracker ([207.245.46.171]) by www3.pacific-pages.com (8.8.5) id LAA20822; Tue, 17 Oct 2000 11:09:37 -0600 (MDT) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id NAA19821; Tue, 17 Oct 2000 13:05:53 GMT (envelope-from david) Date: Tue, 17 Oct 2000 12:09:29 +0000 From: David Banning To: david@banning.com, questions@FreeBSD.ORG Subject: Re: mutt stalls with Sending message... Message-ID: <20001017120929.A19809@www3.pacific-pages.com> Reply-To: David Banning References: <200010170249.CAA18754@d.tracker> <20001017120554.B9227@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001017120554.B9227@sunbay.com>; from ru@sunbay.com on Tue, Oct 17, 2000 at 12:05:54PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It worked! Thanks! On Tue, Oct 17, 2000 at 12:05:54PM +0300, Ruslan Ermilov wrote: > On Tue, Oct 17, 2000 at 02:49:33AM +0000, David Banning wrote: > > when I send a message using mutt, and then send it, it displays the > > Sending message... at the bottom of the screen - which it should - > > it stays there for a long time 5 - 30 min or more before sending though. > > > > ps ax | grep send > > shows > > sendmail: accepting connections on port 25 (sendmail) > > sendmail -oem -oi -- php-general@lists.php.net > > > > I know my mail server has to be authenticated before mail can be > > sent - which I do at the same time with a POP. > > My crontab does a POP at the top of every hour. > > > > I think it also takes just as long when I use the simple > > mail program - it's just mail exits after I send, while mutt holds > > the screen hostage until the mail has been sent. > > > > Any ideas how to solve this? > > > Put the following in your ~/.mutt/muttrc: > > set sendmail_wait=-1 > > > -- > Ruslan Ermilov Oracle Developer/DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > -- Any sufficiently advanced technology is indistinguishable from a rigged demo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:23:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from odin.acuson.com (odin.acuson.com [157.226.230.71]) by hub.freebsd.org (Postfix) with ESMTP id 0200237B4C5 for ; Tue, 17 Oct 2000 10:23:08 -0700 (PDT) Received: from acuson.com ([157.226.47.12]) by odin.acuson.com (Netscape Messaging Server 3.54) with ESMTP id AAA55F2; Tue, 17 Oct 2000 10:26:13 -0700 Message-ID: <39EC8A5A.428298BA@acuson.com> Date: Tue, 17 Oct 2000 10:20:26 -0700 From: David Johnson Organization: Acuson X-Mailer: Mozilla 4.7 [en] (X11; U; SunOS 5.5.1 sun4m) X-Accept-Language: en MIME-Version: 1.0 To: "Inskip Thomas C." Cc: freebsd-questions@freebsd.org Subject: Re: Need ver 4.4 installation help. References: <007e01c037ed$98128020$6886e6d8@genopre.net.gt> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You didn't report what your error was. Everything that you listed is a normal informational message, not a warning or error. How far did you get in the installation, and what was on the last screen? What were the symptoms? Inquiring minds want to know. --- David ----- > "Inskip Thomas C." wrote: > > Hello: > > I am a UNIX novice! I tried to install FreeBSD 4.4. The > results hold some bugs... still. > > I purchased a DELL L556cx to operate FreeBSD. In > installation of the OS from CD-ROM, it found error. I > looked into the manuals and found not find either them or the > problem fix-it. > > I reset the BIOS to default. It made the three error > msgs on installation. As follows... > > BTX loader 100 BTX version 1.01 > > console: internal video/keyboard > > /stand/sysinstall running as init on VTY0 > > These error msgs appeared in light gray. The accepted > installations appeared in white text. > > ----------------------- > > A flash menu appeared with the notice > “Starting Emergency Holographic VTY4.” > It only appeared for an instant... > > ----------------------- > > In addition I received a notice that the video terminal in > application during installation was VTY1. As follows... > > “You may wish to scroll-lock through the debugging messages > on VTY1 with the scroll-lock feature.” > > What is wrong. How do I fix-it? Where is a > reference? > > Thank you for your time and assistance. > Tom > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:25: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wormhole.bluestar.net (wormhole.bluestar.net [208.53.1.61]) by hub.freebsd.org (Postfix) with ESMTP id B35B337B4C5 for ; Tue, 17 Oct 2000 10:25:01 -0700 (PDT) Received: from planetwe.com (admin.planetwe.com [64.182.69.146]) by wormhole.bluestar.net (8.10.1/8.10.1) with ESMTP id e9HHOsN18533 for ; Tue, 17 Oct 2000 12:24:54 -0500 (CDT) Message-ID: <39EC8B67.884C879E@planetwe.com> Date: Tue, 17 Oct 2000 12:24:55 -0500 From: Drew Sanford X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: NIS and /etc/ftpchroot Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does NIS distribute the /etc/ftpchroot file by default? If not, how could you go about making it distribute this file along with the passwd and group files? Thanks. -- Drew Sanford Systems Administrator Planetwe.com Email: drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:39:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 0A19C37B4D7 for ; Tue, 17 Oct 2000 10:39:08 -0700 (PDT) Received: from cello.qnet.com (stork@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id KAA25859; Tue, 17 Oct 2000 10:39:05 -0700 (PDT) Received: from localhost (stork@localhost) by cello.qnet.com (8.9.0/8.9.1) with ESMTP id KAA13917; Tue, 17 Oct 2000 10:38:39 -0700 (PDT) X-Authentication-Warning: cello.qnet.com: stork owned process doing -bs Date: Tue, 17 Oct 2000 10:38:39 -0700 (PDT) From: Heredity Choice To: leon Lei Cc: questions@FreeBSD.ORG, leon@infinet.net Subject: Re: FreeBSD for Alpha Dual CPU 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 Neither FreeBSD nor NetBSD supports dual Alphas. For this you need Tru64 UNIX, which, with its microkernel, can support any size cluster and will soon be running the biggest supercomputer in the world. What are you doing that one Alpha processor is not enough? Not many people need that kind of speed, and the developers probably do not feel any urgent need to develop SMP for FreeBSD Alpha. Paul Smith On Tue, 17 Oct 2000, leon Lei wrote: > Hi fellows, > > Could anybody enlighten me the availability of a version of FreeBSD, > which supports Dual Alpha Processors like 264DP? > > If there is no such thing yet, what would be the new release time? > > Your help is heartily appreciated. > > Leon > > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:46: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id 50C5137B4F9 for ; Tue, 17 Oct 2000 10:45:58 -0700 (PDT) Received: from ct-hartford-us204.javanet.com ([209.150.34.57] helo=[209.150.34.51]) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13laoG-0002PC-00 ; Tue, 17 Oct 2000 13:45:56 -0400 Message-Id: In-Reply-To: <20001014210437.E41B61F03@static.unixfreak.org> References: "from media@ct1.nai.net at Oct 14, 2000 04:09:45 pm" Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: dima@unixfreak.org From: media@ct1.nai.net Subject: Re: changing root shell?? Cc: freebsd-questions@FreeBSD.ORG Date: Tue, 17 Oct 2000 13:45:56 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 2:04 PM -0700 10/14/00, Dima Dorfman wrote: > >I think some people say that because they've upgraded their system >using `make world`, but didn't update /stand, so when they run a three >year old version of sysinstall on a brand new system, something goes >wrong--and you can't blame it. Thanx :) That's a very good explanation. >They're both uid 0, so I don't see how toor is any more accessable >than root. All restrictions (no telent/ftp logins) apply to both of >them. Maybe whoever said that was referring to the case where you >forget your root password and don't have physical access to the host >in question. So why should I activate toor?? I don't need remote access. If I can't get at the computer, I have a bigger problem of being locked out of my house. >Things like chsh and vipw do it for you. If possible, you should use >them. If not, look at `man pwd_mkdb`. OK :) >That's good. Your local programs should go into /usr/local, just like >how you have it. OK :) >As multiple people have suggest before, doing "setenv EDITOR ee" in >(t)csh or "export EDITOR=ee" in (ba)sh will change the default >editor. You can add those to your .cshrc or .profile to run when you >log in for csh and sh respevitly. Thanx!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:46: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id C186937B65E for ; Tue, 17 Oct 2000 10:45:59 -0700 (PDT) Received: from ct-hartford-us204.javanet.com ([209.150.34.57] helo=[209.150.34.51]) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13laoD-0002PC-00 ; Tue, 17 Oct 2000 13:45:53 -0400 Message-Id: In-Reply-To: <39E8F843.AD0EB959@urx.com> References: <39E79870.1D880A8F@urx.com>; from kstewart@urx.com on Fri, Oct 13, 2000 at 04:19:12PM -0700 <200010131856.SAA18493@d.tracker> <39E79870.1D880A8F@urx.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: questions@FreeBSD.ORG From: media@ct1.nai.net Subject: Re: print plain text with apsfilter Cc: kstewart@urx.com, Date: Tue, 17 Oct 2000 13:45:53 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> My problem is that gostscript won't run. Apparently it is looking for >> libXaw.so.6 in usr/libexec/ld-elf.so.1 , but it's in >> usr/compat/linux/usr/i486-linux-libc5/lib , and I don't know how to >> make it look there instead. Any ideas?? > >I had a problem like that when I started. I did a cvsup of ports. Then >I cd'ed into the ghostscript directory and did a make clean and >re-built ghostscript and it had no problems. If I remember correctly, I tried to use the port, but I couldn't find the distfile so I used pkg_add. I tried looking on the cd-roms that came with 3.4 but I couldn't find it. I figure if Walnut Creek could distribute the package, they'd have the rights to distribute the distfiles. Any ideas?? >couldn't you just > # ldconfig -m /usr/compat/linux/usr/i486-linux-libc5/lib > >and for reboot enter /usr/compat/linux/usr/i486-linux-libc5/lib >in rc.conf in the ldconfig section? Thanx!! Ghostscript is running, and the system printing now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:46:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wormhole.bluestar.net (wormhole.bluestar.net [208.53.1.61]) by hub.freebsd.org (Postfix) with ESMTP id 4AF8237B4F9 for ; Tue, 17 Oct 2000 10:46:20 -0700 (PDT) Received: from planetwe.com (admin.planetwe.com [64.182.69.146]) by wormhole.bluestar.net (8.10.1/8.10.1) with ESMTP id e9HHk4N23425; Tue, 17 Oct 2000 12:46:04 -0500 (CDT) Message-ID: <39EC905D.9AECB9D6@planetwe.com> Date: Tue, 17 Oct 2000 12:46:05 -0500 From: Drew Sanford X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Heredity Choice Cc: leon Lei , questions@FreeBSD.ORG, leon@infinet.net Subject: Re: FreeBSD for Alpha Dual CPU References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is not entirely true. One of the Alpha developers is working on SMP for the Alpha right now. As to when it will be available, I cannot say, nor, probably, can anyone else for sure. All I can tell you is hang in there. Heredity Choice wrote: > > Neither FreeBSD nor NetBSD supports dual Alphas. For this you need Tru64 > UNIX, which, with its microkernel, can support any size cluster and will > soon be running the biggest supercomputer in the world. > > What are you doing that one Alpha processor is not enough? Not many people > need that kind of speed, and the developers probably do not feel any > urgent need to develop SMP for FreeBSD Alpha. > > Paul Smith > > On Tue, 17 Oct 2000, leon Lei wrote: > > > Hi fellows, > > > > Could anybody enlighten me the availability of a version of FreeBSD, > > which supports Dual Alpha Processors like 264DP? > > > > If there is no such thing yet, what would be the new release time? > > > > Your help is heartily appreciated. > > > > Leon > > -- Drew Sanford Systems Administrator Planetwe.com Email: drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 10:51:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.smed.com (smtp.smed.com [12.20.51.11]) by hub.freebsd.org (Postfix) with ESMTP id 6374737B479 for ; Tue, 17 Oct 2000 10:51:32 -0700 (PDT) Received: from smtpgate.shrmed.com (keymaster.smed.com [12.20.51.2]) by smtp.smed.com (Postfix) with ESMTP id CADA816274 for ; Tue, 17 Oct 2000 13:51:30 -0400 (EDT) Received: from iesa14.shrmed.com (iesa14.shrmed.com [10.1.99.114]) by smtpgate.shrmed.com (8.9.3/8.9.3) with ESMTP id NAA10096 for ; Tue, 17 Oct 2000 13:51:30 -0400 From: Joe.Warner@smed.com Received: from Deimos.smed.com (unverified) by iesa14.shrmed.com (Content Technologies SMTPRS 2.0.15) with SMTP id for ; Tue, 17 Oct 2000 13:51:24 -0400 Received: by Deimos.smed.com(Lotus SMTP MTA v4.6.5 (863.2 5-20-1999)) id 8525697B.0061EB64 ; Tue, 17 Oct 2000 13:49:32 -0400 X-Lotus-FromDomain: SMS To: freebsd-questions@freebsd.org Message-Id: <8525697B.0061EA51.00@Deimos.smed.com> Date: Tue, 17 Oct 2000 11:52:06 -0600 Subject: UNIX - AS/400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Does anyone know of a FreeBSD or UNIX client application that will provide TN5250 connectivity to the IBM AS/400 (now iSeries)? Better yet, an application that would provide a session through a web browser? Thanks, Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:10:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 1upmc-msx4.isdip.upmc.edu (1upmc-msx4.isdbu.upmc.edu [128.147.18.41]) by hub.freebsd.org (Postfix) with ESMTP id 1DF6637B4D7 for ; Tue, 17 Oct 2000 11:10:42 -0700 (PDT) Received: by 1UPMC-MSX4 with Internet Mail Service (5.5.2650.21) id <489YB5AJ>; Tue, 17 Oct 2000 14:10:18 -0400 Message-ID: From: "Person, Roderick" To: "'questions@FreeBSD.ORG'" Subject: Installing on to a laptop with no CD-Rom. Date: Tue, 17 Oct 2000 14:10:20 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C03865.810B29FE" 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_01C03865.810B29FE Content-Type: text/plain; charset="iso-8859-1" I have just been given two Digital HiNote Ultra II notebook PCs. 150Mhz Pentiums. They don't have a CD-rom or modems. I would like to install 4.1 on them. I have FreeBSD 4.1 running on two Desktop machines, I was wondering if there is anyway I can connect the PC and the Notebooks via the serial ports to install from the CD on my PC. Or am I stuck until I get an external CD-ROM. Roderick P. Person Programmer II Crystal Administrator (412)454-2616 personrp@ccbh.com "If it floats your boat, it must be water." Roddie Rod - circa 1993 ------_=_NextPart_001_01C03865.810B29FE Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Installing on to a laptop with no CD-Rom.

I have just been given two Digital = HiNote Ultra II notebook PCs. 150Mhz Pentiums.

They don't have a CD-rom or modems. =

I would like to install 4.1 on them. I = have FreeBSD 4.1 running on two Desktop machines, I was wondering if = there is anyway I can connect the PC and the Notebooks via the serial = ports to install from the CD on my PC. Or am I stuck until I get an = external CD-ROM.

Roderick P. = Person
Programmer II
Crystal Administrator
(412)454-2616
personrp@ccbh.com

"If it floats your boat, it must = be water."
         &nb= sp;           &nb= sp;           &nb= sp;      Roddie Rod - circa 1993


------_=_NextPart_001_01C03865.810B29FE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:15:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.telecom.ksu.edu (gateway-1.telecom.ksu.edu [129.130.63.239]) by hub.freebsd.org (Postfix) with ESMTP id 489FF37B657 for ; Tue, 17 Oct 2000 11:15:46 -0700 (PDT) Received: from sioux.telecom.ksu.edu(129.130.60.32) by pawnee.telecom.ksu.edu via smap (V2.0) id xma021079; Tue, 17 Oct 00 13:15:06 -0500 Message-ID: <39EC970D.F77B1D0C@telecom.ksu.edu> Date: Tue, 17 Oct 2000 13:14:37 -0500 From: nathan X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: "Person, Roderick" Cc: "'questions@FreeBSD.ORG'" Subject: Re: Installing on to a laptop with no CD-Rom. References: Content-Type: multipart/alternative; boundary="------------C7E52B2072217B412317AE44" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------C7E52B2072217B412317AE44 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit this isn't a direct answer, but what i did recently for a 386 laptop, was to just take the harddrive, stick it in a pc with net and/or cdrom, install fbsd, then put back in the laptop. this however would require an adaptor to allow a standard ide cable to plug into the laptop drive. anyway.. a suggestion.. which worked well for me good luck! "Person, Roderick" wrote: > > > I have just been given two Digital HiNote Ultra II notebook PCs. > 150Mhz Pentiums. > > They don't have a CD-rom or modems. > > I would like to install 4.1 on them. I have FreeBSD 4.1 running on two > Desktop machines, I was wondering if there is anyway I can connect the > PC and the Notebooks via the serial ports to install from the CD on my > PC. Or am I stuck until I get an external CD-ROM. > > Roderick P. Person > Programmer II > Crystal Administrator > (412)454-2616 > personrp@ccbh.com > > "If it floats your boat, it must be water." > Roddie Rod - circa 1993 > --------------C7E52B2072217B412317AE44 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit this isn't a direct answer, but what i did recently for a 386 laptop, was to just take the harddrive, stick it in a pc with net and/or cdrom, install fbsd, then put back in the laptop.

this however would require an adaptor to allow a standard ide cable to plug into the laptop drive.

anyway.. a suggestion.. which worked well for me
good luck!

"Person, Roderick" wrote:

 

I have just been given two Digital HiNote Ultra II notebook PCs. 150Mhz Pentiums.

They don't have a CD-rom or modems.

I would like to install 4.1 on them. I have FreeBSD 4.1 running on two Desktop machines, I was wondering if there is anyway I can connect the PC and the Notebooks via the serial ports to install from the CD on my PC. Or am I stuck until I get an external CD-ROM.

Roderick P. Person
Programmer II
Crystal Administrator
(412)454-2616
personrp@ccbh.com

"If it floats your boat, it must be water."
                                        Roddie Rod - circa 1993
 

--------------C7E52B2072217B412317AE44-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:20:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hermes.deadbbs.com (hermes.cpetc.com [207.137.157.132]) by hub.freebsd.org (Postfix) with ESMTP id 24EE637B4D7 for ; Tue, 17 Oct 2000 11:20:24 -0700 (PDT) Received: from erinlaptop (mongo.sdccd.cc.ca.us [209.129.16.5]) by hermes.deadbbs.com (8.10.2/8.10.2) with SMTP id e9HIKx010099 for ; Tue, 17 Oct 2000 11:21:00 -0700 (PDT) From: "Erin" To: Subject: Adding an IP alias without a reboot. Date: Tue, 17 Oct 2000 11:20:11 -0700 Message-ID: <004d01c03866$e3edb540$e815820a@sdccd.cc.ca.us> 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 CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a production machine whos IP is going to change. I have to add an aliased IP to it for a while from a completely different subnet then by the middle of next month have everything changed over (i.e. defaultrouter, dns servers, etc.). I'd like to do this with out rebooting the machine if possable. The machine in question is a 3.3-RELEASE and is colocated with very limited access. Thanks, Erin mailto:kahn@deadbbs.com http://www.deadbbs.com http://www.fortenberry.net "Can i dial 1-255-255-255255 and make every phone in the world ring?" -- Tanuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:20:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 1upmc-msx1.isdip.upmc.edu (1upmc-msx1.isdip.upmc.edu [128.147.16.38]) by hub.freebsd.org (Postfix) with ESMTP id 9745437B4D7 for ; Tue, 17 Oct 2000 11:20:46 -0700 (PDT) Received: by 1UPMC-MSX1 with Internet Mail Service (5.5.2650.21) id <4873WBX4>; Tue, 17 Oct 2000 14:20:22 -0400 Message-ID: From: "Person, Roderick" To: 'nathan' , "Person, Roderick" Cc: "'questions@FreeBSD.ORG'" Subject: RE: Installing on to a laptop with no CD-Rom. Date: Tue, 17 Oct 2000 14:20:41 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C03866.E84135C2" 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_01C03866.E84135C2 Content-Type: text/plain; charset="iso-8859-1" seems like a simple solution. Where would I get a adapter to do this, or would I have to construct it. Roderick P. Person Programmer II Crystal Administrator (412)454-2616 personrp@ccbh.com "If it floats your boat, it must be water." Roddie Rod - circa 1993 -----Original Message----- From: nathan [mailto:beemern@telecom.ksu.edu] Sent: October 17, 2000 2:15 PM To: Person, Roderick Cc: 'questions@FreeBSD.ORG' Subject: Re: Installing on to a laptop with no CD-Rom. this isn't a direct answer, but what i did recently for a 386 laptop, was to just take the harddrive, stick it in a pc with net and/or cdrom, install fbsd, then put back in the laptop. this however would require an adaptor to allow a standard ide cable to plug into the laptop drive. anyway.. a suggestion.. which worked well for me good luck! "Person, Roderick" wrote: I have just been given two Digital HiNote Ultra II notebook PCs. 150Mhz Pentiums. They don't have a CD-rom or modems. I would like to install 4.1 on them. I have FreeBSD 4.1 running on two Desktop machines, I was wondering if there is anyway I can connect the PC and the Notebooks via the serial ports to install from the CD on my PC. Or am I stuck until I get an external CD-ROM. Roderick P. Person Programmer II Crystal Administrator (412)454-2616 personrp@ccbh.com "If it floats your boat, it must be water." Roddie Rod - circa 1993 ------_=_NextPart_001_01C03866.E84135C2 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
seems=20 like a simple solution. Where would I get a adapter to do this, or = would I have=20 to construct it.
 

Roderick P. = Person=20
Programmer II
Crystal Administrator
(412)454-2616
personrp@ccbh.com=20

"If it floats your boat, it must be = water."=20
          &nb= sp;           &nb= sp;           &nb= sp;    =20 Roddie Rod - circa 1993

 
-----Original Message-----
From: nathan=20 [mailto:beemern@telecom.ksu.edu]
Sent: October 17, 2000 = 2:15=20 PM
To: Person, Roderick
Cc:=20 'questions@FreeBSD.ORG'
Subject: Re: Installing on to a = laptop with=20 no CD-Rom.

this isn't a direct answer, but what i = did=20 recently for a 386 laptop, was to just take the harddrive, stick it = in a pc=20 with net and/or cdrom, install fbsd, then put back in the laptop.=20

this however would require an adaptor to allow a standard ide = cable to plug=20 into the laptop drive.=20

anyway.. a suggestion.. which worked well for me
good luck!=20

"Person, Roderick" wrote:=20

 =20

I have just been given two = Digital HiNote=20 Ultra II notebook PCs. 150Mhz Pentiums.=20

They don't have a CD-rom or=20 modems.=20

I would like to install 4.1 = on them. I=20 have FreeBSD 4.1 running on two Desktop machines, I was wondering = if there=20 is anyway I can connect the PC and the Notebooks via the serial = ports to=20 install from the CD on my PC. Or am I stuck until I get an external = CD-ROM.=20

Roderick P.=20 Person
Programmer=20 II
Crystal=20 Administrator
(412)454-2616
personrp@ccbh.com=20

"If it floats your boat, it = must be=20 water."
          &n= bsp;           &n= bsp;           &n= bsp;    =20 Roddie Rod - circa 1993=20
 

------_=_NextPart_001_01C03866.E84135C2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:26:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from be-well.ilk.org (lowellg.ne.mediaone.net [24.147.184.128]) by hub.freebsd.org (Postfix) with ESMTP id 5E63537B4E5 for ; Tue, 17 Oct 2000 11:26:34 -0700 (PDT) Received: (from lowell@localhost) by be-well.ilk.org (8.11.1/8.11.1) id e9HIQRr11570; Tue, 17 Oct 2000 14:26:27 -0400 (EDT) (envelope-from lowell) To: freebsd-questions@freebsd.org Subject: Re: max_normal References: <39EC719D.B2AE23C4@salk.edu> From: Lowell Gilbert Date: 17 Oct 2000 14:26:27 -0400 In-Reply-To: croner@salk.edu's message of "17 Oct 2000 17:35:57 +0200" Message-ID: <44lmvnjpd8.fsf@lowellg.ne.mediaone.net> Lines: 17 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG croner@salk.edu (Lisa J. Croner) writes: > I am trying to rewrite a program (it runs on an > old SUN) to run on a freeBSD machine. The program > has a function called max_normal that doesn't appear > in our new math.h for freeBSD. Do you know what > max_normal does and how I might replace it? It gives the largest possible normalized floating-point value. It seems to be related to IEEE 754 handling of denormalized numbers, which isn't part of standard C, and doesn't seem to be treated in the math libraries for any Unix machines I can find at hand, including some Solaris boxes. If you can write your program to deal only with normalized values (i.e., normal mathlib 'doubles'), that's your best bet. In that case, you would probably (depending on exactly how your program abuses, um, handles precision) use DBL_MIN and DBL_MAX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:27:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.telecom.ksu.edu (gateway-1.telecom.ksu.edu [129.130.63.239]) by hub.freebsd.org (Postfix) with ESMTP id 5870937B4D7 for ; Tue, 17 Oct 2000 11:27:07 -0700 (PDT) Received: from sioux.telecom.ksu.edu(129.130.60.32) by pawnee.telecom.ksu.edu via smap (V2.0) id xma021121; Tue, 17 Oct 00 13:26:52 -0500 Message-ID: <39EC99CF.FCADAB94@telecom.ksu.edu> Date: Tue, 17 Oct 2000 13:26:23 -0500 From: nathan X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: "Person, Roderick" Cc: "'questions@FreeBSD.ORG'" Subject: Re: Installing on to a laptop with no CD-Rom. References: Content-Type: multipart/alternative; boundary="------------94E7BAA1E5B4FEF560C6A2AE" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------94E7BAA1E5B4FEF560C6A2AE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit don't think you could "construct" one.. unless you have a LOT of patience (: seriously tho, i'm sure there's a store in the greater Pittsburgh area that would have one. the one i used didn't even have any 'logic' or anything on it, basically just wired a "small" connector (for the laptop) to a "bigger" one for the standard IDE cable. "Person, Roderick" wrote: > seems like a simple solution. Where would I get a adapter to do this, > or would I have to construct it. --------------94E7BAA1E5B4FEF560C6A2AE Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit don't think you could "construct" one.. unless you have a LOT of patience (:

seriously tho, i'm sure there's a store in the greater Pittsburgh area that would have one.
the one i used didn't even have any 'logic' or anything on it, basically just wired a "small" connector (for the laptop) to a "bigger" one for the standard IDE cable.

"Person, Roderick" wrote:

 seems like a simple solution. Where would I get a adapter to do this, or would I have to construct it.
--------------94E7BAA1E5B4FEF560C6A2AE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:45:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 8F62037B479 for ; Tue, 17 Oct 2000 11:45:43 -0700 (PDT) Received: (qmail 99820 invoked from network); 17 Oct 2000 18:45:42 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 17 Oct 2000 18:45:42 -0000 Received: (qmail 14894 invoked from network); 17 Oct 2000 18:45:57 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 17 Oct 2000 18:45:57 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.0/8.11.0) id e9HIjWx18853; Tue, 17 Oct 2000 11:45:32 -0700 (PDT) (envelope-from mikko) Date: Tue, 17 Oct 2000 11:45:32 -0700 (PDT) From: Mikko Tyolajarvi Message-Id: <200010171845.e9HIjWx18853@explorer.rsa.com> To: wash@iconnect.co.ke Cc: freebsd-questions@freebsd.org Subject: Re: Help required - DSL Implementation Newsgroups: local.freebsd-questions References: <20001017130022.A87793@poeza.iconnect.co.ke> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! (Sorry for butchering your mail - it was kind of longish...) In local.freebsd-questions you write: >Hi users, >I'm looking for some help with DSL implementation. Have a look at . That should answer most of your questions. Som points are: - Your TELCO will need to install equipment in the local phone station in order to support DSL. - You need some equipment in your end as well. - The distance from you to that phone station has to be fairly short (a few kilometers or so - bandwidth decreases rapidly with increasing distance) - All TELCOs I've ever heard of use a flat rate for DSL. - Your phone will work just fine together with DSL. A low-pass filter sends the low 3kHz (or whatever) to your phone, the rest is used by your DSL equipment. - What you get out of the DSL modem thingie in your home depends on your DSL operator. Some give you IP, other use PPPoE. Some may have static IP addresses, others use DHCP. Actual bandwidth depend on physical limitations and price. [...] >I also gather that in the US (not so much idea about Europe;-)) whenever >you make a local call it is FREE, that only long distance (outside >local) are charged. How much is this true? But I am more interested in a It may optional. E.g. for a slightly higher monthly fee, you'll get free local calls. [...] >Is this really possible without the Telco guys fitting some special switch >at their office to enable my DSL connection get to my ISP?? Not as far as I know. $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:55: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id 067A737B4FE for ; Tue, 17 Oct 2000 11:55:05 -0700 (PDT) Received: from ct-hartford-us216.javanet.com ([209.150.34.69] helo=[209.150.34.51]) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13lbt9-0003xE-00 ; Tue, 17 Oct 2000 14:55:04 -0400 Message-Id: In-Reply-To: <20001017101227.A87458@freebsd.mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: David Kanter From: media@ct1.nai.net Subject: Re: Lpd swallowing my print jobs? Cc: FreeBSD questions Date: Tue, 17 Oct 2000 14:55:04 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 10:12 AM -0500 10/17/00, David Kanter wrote: > >I've just installed apsfilter, and the test page printed fine. Lpd is >started, however whenever I "lpr" a file nothing happens. How did you print the test page?? Was this before you installed apsfilter?? Try: # lptest 20 5 | lpr What happens?? Any log messages?? >I hear the hard drive spinning for a bit (queueing things up) but nothing >happens. No lpd errors, and lpq shows "no entries." I had that problem, as it turns out, ghostscript couldn't find a lib file. So make sure that ghostscript is installed properly, and your spool directories are correct in etc/printcap. After making any changes, run SETUP in apsfilter again. If that doesn't work, try setting the debugging in apsfilter by decommenting set-x in /usr/local/apsfilter/bin/apsfilter then check the log. This is discussed in the document TROUBLESHOOTING in usr/local/share/doc/apsfilter. That's how I caught my ghostscript problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 11:55:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id 551B937B66E for ; Tue, 17 Oct 2000 11:55:08 -0700 (PDT) Received: from ct-hartford-us216.javanet.com ([209.150.34.69] helo=[209.150.34.51]) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13lbtD-0003xE-00 ; Tue, 17 Oct 2000 14:55:07 -0400 Message-Id: In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: Jamie Bowden From: media@ct1.nai.net Subject: Re: /usr/libexec/ld-elf.so.1 not found Cc: questions@FreeBSD.ORG Date: Tue, 17 Oct 2000 14:55:07 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 5:30 PM -0700 10/16/00, Jamie Bowden wrote: > >After my extensive battle with my hardware and getting freebsd 4.4.1-R to >boot from CD, I have now hit another brick wall. I checked the ERRATA.TXT >file and it's unchanged from original release. > >After a successfull install, sysinstall tells me to remove cds, floppies, >anything else that might potentially boot instead of the internal hdd, >etc. All is well and good, the machine comes back up, Boot Magic has an >entry for FreeBSD's partition, things are going well. > >Then the kernel loads init. I get lots of errors about >/usr/libexec/ld-elf.so.1 not found. What does it say before the errors?? >I proceed to c-a-d, and boot single >user. A quick cd into /usr/libexec and an ls later, I see the directory >is empty, save ld.so.a. Now, I've been running FreeBSD for a long time, >but I have yet to have this happen. Is this a known bug? Has anyone else >run across this? > >Please CC me in all replys, as I am not sub'd to this list. Try # find / -name "ld-elf.so.1" If it doesn't find it, you don't have it installed. I'm still getting up to speed with 3.4 myself, and I'm not sure where all of these ELF and a.out files come from during install, or exactly what they do, but I would go back into sysinstall (provided you haven't updated your system since without updating /stand since) and install all of the compat and Linux compatibility files. I don't know if they are all necessary, but that's what I did during my initial install. # cd /usr/libexec # ls | wc tells me I have 52 files and directories in /usr/libexec, and I have a rather minimal system at this point. If I were you you, I would s*bscribe to this list -- it's very helpful, and gives you the opportunity to help others in return. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 12: 7: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [209.0.55.68]) by hub.freebsd.org (Postfix) with ESMTP id B6D9437B4F9 for ; Tue, 17 Oct 2000 12:06:59 -0700 (PDT) Received: by moo.sysabend.org (Postfix, from userid 1004) id 2017E755E; Tue, 17 Oct 2000 12:07:11 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id 1D2CF1D8E; Tue, 17 Oct 2000 12:07:11 -0700 (PDT) Date: Tue, 17 Oct 2000 12:07:11 -0700 (PDT) From: Jamie Bowden To: media@ct1.nai.net Cc: questions@FreeBSD.ORG Subject: Re: /usr/libexec/ld-elf.so.1 not found In-Reply-To: Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Oct 2000 media@ct1.nai.net wrote: :At 5:30 PM -0700 10/16/00, Jamie Bowden wrote: :> :>After my extensive battle with my hardware and getting freebsd 4.4.1-R to :>boot from CD, I have now hit another brick wall. I checked the ERRATA.TXT :>file and it's unchanged from original release. :> :>After a successfull install, sysinstall tells me to remove cds, floppies, :>anything else that might potentially boot instead of the internal hdd, :>etc. All is well and good, the machine comes back up, Boot Magic has an :>entry for FreeBSD's partition, things are going well. :> :>Then the kernel loads init. I get lots of errors about :>/usr/libexec/ld-elf.so.1 not found. : :What does it say before the errors?? It's loading the kernel before the errors. I ftp'd the ISO again last night, burned a new CD this afternoon, and will try this again tonight when I have some time. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 12:14:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.telecom.ksu.edu (gateway-1.telecom.ksu.edu [129.130.63.239]) by hub.freebsd.org (Postfix) with ESMTP id 6A91F37B4C5 for ; Tue, 17 Oct 2000 12:14:10 -0700 (PDT) Received: from sioux.telecom.ksu.edu(129.130.60.32) by pawnee.telecom.ksu.edu via smap (V2.0) id xma021243; Tue, 17 Oct 00 14:14:01 -0500 Message-ID: <39ECA4DC.7D5DC39A@telecom.ksu.edu> Date: Tue, 17 Oct 2000 14:13:32 -0500 From: nathan X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: c++ sockets and qt Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i'm moving into programming with c++ and have installed the qt libraries from the ports however, in looking at the API reference at trolltech.com, I see their net classes listed there, but they don't exist in my installation. for instance, qsocket.h qserversocket.h and others from their 'net module' aren't on my box [root@sabre /root]# cd `echo $QTDIR` [root@sabre qt]# cd include/ [root@sabre include]# ls qsocket.h ls: qsocket.h: No such file or directory [root@sabre include]# it just looks as if the "net module" for qt wasn't installed? any ideas? nathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 12:33:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id 1BC8637B4F9 for ; Tue, 17 Oct 2000 12:33:22 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id OAA14866; Tue, 17 Oct 2000 14:34:43 -0500 Message-Id: <200010171934.OAA14866@smtp.intop.net> From: "Charlie Schloemer" To: freebsd-questions@FreeBSD.ORG, Joe.Warner@smed.com Date: Tue, 17 Oct 2000 14:40:03 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: UNIX - AS/400 In-reply-to: <8525697B.0061EA51.00@Deimos.smed.com> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17 Oct 00, at 11:52, Joe.Warner@smed.com wrote: > Hi, > > Does anyone know of a FreeBSD or UNIX client application that > will provide TN5250 connectivity to the IBM AS/400 (now iSeries)? > > Better yet, an application that would provide a session through > a web browser? > > Thanks, > > Joe I'm looking for a similar product, and found some good options from this page: http://www.nwfusion.com/downloads/html/gp14.html If you're looking for something webbable, jadvantage.com seems to have a Java 5250 offering. (Let me know if you find anything else, esp. something open-source. :-) -Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 12:35:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id C1E4937B4CF for ; Tue, 17 Oct 2000 12:35:46 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id OAA14899; Tue, 17 Oct 2000 14:37:05 -0500 Message-Id: <200010171937.OAA14899@smtp.intop.net> From: "Charlie Schloemer" To: , "Erin" Date: Tue, 17 Oct 2000 14:42:24 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Adding an IP alias without a reboot. In-reply-to: <004d01c03866$e3edb540$e815820a@sdccd.cc.ca.us> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17 Oct 00, at 11:20, Erin wrote: > I have a production machine whos IP is going to change. I have to add an > aliased IP to it for a while from a completely different subnet then by the > middle of next month have everything changed over (i.e. defaultrouter, dns > servers, etc.). I'd like to do this with out rebooting the machine if > possable. > > The machine in question is a 3.3-RELEASE and is colocated with very limited > access. ifconfig will allow you to create an alias without rebooting. Check the man pages for more information, specifically, look for the 'alias' option. The syntax is easy. :-) -Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 12:44:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.mail.yahoo.com (smtp2.mail.yahoo.com [128.11.68.32]) by hub.freebsd.org (Postfix) with SMTP id 5231937B479 for ; Tue, 17 Oct 2000 12:44:15 -0700 (PDT) Received: from red2-46.redrock.net (HELO lorins) (209.197.4.99) by smtp.mail.vip.suc.yahoo.com with SMTP; 17 Oct 2000 19:44:13 -0000 X-Apparently-From: Message-ID: <007701c03872$ed76ffc0$0300fea9@lorins.ild.telecom.com> From: "Lorin Lund" To: "Charlie Schloemer" , , Subject: Re: UNIX - AS/400 Date: Tue, 17 Oct 2000 13:46:11 -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 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Have you checked /usr/ports/net/tn5250 ? -----Original Message----- From: Charlie Schloemer To: freebsd-questions@FreeBSD.ORG ; Joe.Warner@smed.com Date: Tuesday, October 17, 2000 1:29 PM Subject: Re: UNIX - AS/400 On 17 Oct 00, at 11:52, Joe.Warner@smed.com wrote: > Hi, > > Does anyone know of a FreeBSD or UNIX client application that > will provide TN5250 connectivity to the IBM AS/400 (now iSeries)? > > Better yet, an application that would provide a session through > a web browser? > > Thanks, > > Joe I'm looking for a similar product, and found some good options from this page: http://www.nwfusion.com/downloads/html/gp14.html If you're looking for something webbable, jadvantage.com seems to have a Java 5250 offering. (Let me know if you find anything else, esp. something open-source. :-) -Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 12:54:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from maulwurf.franken.de (maulwurf.franken.de [193.141.110.9]) by hub.freebsd.org (Postfix) with ESMTP id ED41237B4D7 for ; Tue, 17 Oct 2000 12:54:08 -0700 (PDT) Received: by maulwurf.franken.de via rmail with stdio id for freebsd-questions@freebsd.org; Tue, 17 Oct 2000 21:54:06 +0200 (MET DST) (Smail-3.2 1996-Jul-4 #1 built DST-May-30) Received: (from tanis@localhost) by gaspode.franken.de (8.11.0/8.9.3) id e9HJrBX11222; Tue, 17 Oct 2000 21:53:11 +0200 (CEST) (envelope-from tanis) Date: Tue, 17 Oct 2000 21:53:11 +0200 From: German Tischler To: nathan Cc: "freebsd-questions@freebsd.org" Subject: Re: c++ sockets and qt Message-ID: <20001017215311.A11194@gaspode.franken.de> References: <39ECA4DC.7D5DC39A@telecom.ksu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <39ECA4DC.7D5DC39A@telecom.ksu.edu>; from beemern@telecom.ksu.edu on Tue, Oct 17, 2000 at 09:14:51PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 09:14:51PM +0200, nathan wrote: > i'm moving into programming with c++ and have installed the qt libraries > from the ports > > however, in looking at the API reference at trolltech.com, I see their > net classes listed there, but they don't exist in my installation. > > for instance, qsocket.h qserversocket.h and others from their 'net > module' aren't on my box > > [root@sabre /root]# cd `echo $QTDIR` > [root@sabre qt]# cd include/ > [root@sabre include]# ls qsocket.h > ls: qsocket.h: No such file or directory > [root@sabre include]# > > it just looks as if the "net module" for qt wasn't installed? Which version of QT did you install ? If it is QT1, it could be that you are looking at the wrong docs. --gt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 13: 1: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from luzifer.webseek.de (luzifer.webseek.de [62.96.181.213]) by hub.freebsd.org (Postfix) with SMTP id CAEC337B4CF for ; Tue, 17 Oct 2000 13:00:57 -0700 (PDT) Received: (qmail 25676 invoked from network); 17 Oct 2000 20:00:51 -0000 Received: from unknown (HELO webseek.de) (62.96.181.198) by 192.168.27.19 with SMTP; 17 Oct 2000 20:00:51 -0000 Message-ID: <39ECAFA4.DB4A0C19@webseek.de> Date: Tue, 17 Oct 2000 21:59:32 +0200 From: Wolfgang Zeikat Organization: WSI Webseek Infoservice GmbH & Co. KG X-Mailer: Mozilla 4.75 [de] (X11; U; Linux 2.2.17 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: updating software packages Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG after reading about installing gnome 1.2 on http://www.bsdtoday.com/2000/October/Features310.html i wonder: can i somehow use /stand/sysinstall to install the ports of gnome version 1.2 (more recent than the default 1.0.* that comes with FreeBSD 4.0) from the ftp site? or how else would i select and install packages from the directory ftp://ftp.FreeBSD.org/pub/FreeBSD/FreeBSD-stable/packages/gnome/ ? i would prefer some method that handles dependencies greetings wolfgang -- http://www.infoseek.de Wolfgang Zeikat Technik/Tech Department - System Administrator - e-Mail: w.zeikat@webseek.de WSI Webseek Infoservice GmbH & Co. KG Buero/Office: Herrengraben 3, D-20459 Hamburg Post/Mail: Brieffach 8250, D-20350 Hamburg Telefon/Phone: (00)49-(0)40-300-69-322 Fax: (00)49-(0)40-300-69-199 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 13: 1:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.telecom.ksu.edu (gateway-1.telecom.ksu.edu [129.130.63.239]) by hub.freebsd.org (Postfix) with ESMTP id F28B237B4CF for ; Tue, 17 Oct 2000 13:01:19 -0700 (PDT) Received: from sioux.telecom.ksu.edu(129.130.60.32) by pawnee.telecom.ksu.edu via smap (V2.0) id xma021414; Tue, 17 Oct 00 15:00:48 -0500 Message-ID: <39ECAFD3.9B4D906@telecom.ksu.edu> Date: Tue, 17 Oct 2000 15:00:19 -0500 From: nathan X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: c++ sockets and qt References: <39ECA4DC.7D5DC39A@telecom.ksu.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG er.. i posted too soon i guess, from trolltech.com-> --snip-- Modules are major new large components not necessary useful for all Qt-based applications. Note that some modules are included in the Qt Enterprise Edition but not the Qt Professional Edition. Qt Table Module Qt Canvas Module Qt Network Module Qt XML Module --snip-- i would guess then that the net module isn't in the ports version i still need a socket library tho... what do i use? a quick perusal of /ports/devel and /ports/x11-toolkits yielded nothing for "socket"?? btw, i am running qt-2.1.1 nathan wrote: > i'm moving into programming with c++ and have installed the qt libraries > from the ports > > however, in looking at the API reference at trolltech.com, I see their > net classes listed there, but they don't exist in my installation. > > for instance, qsocket.h qserversocket.h and others from their 'net > module' aren't on my box > > [root@sabre /root]# cd `echo $QTDIR` > [root@sabre qt]# cd include/ > [root@sabre include]# ls qsocket.h > ls: qsocket.h: No such file or directory > [root@sabre include]# > > it just looks as if the "net module" for qt wasn't installed? > > any ideas? > > nathan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 13: 3:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id 2F0E437B4FE for ; Tue, 17 Oct 2000 13:03:44 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id PAA15328; Tue, 17 Oct 2000 15:05:05 -0500 Message-Id: <200010172005.PAA15328@smtp.intop.net> From: "Charlie Schloemer" To: "'questions@FreeBSD.ORG'" , "Person, Roderick" Date: Tue, 17 Oct 2000 15:10:25 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Installing on to a laptop with no CD-Rom. In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17 Oct 00, at 14:10, Person, Roderick wrote: > I have just been given two Digital HiNote Ultra II notebook PCs. 150Mhz > Pentiums. > > They don't have a CD-rom or modems. > > I would like to install 4.1 on them. I have FreeBSD 4.1 running on two > Desktop machines, I was wondering if there is anyway I can connect the PC > and the Notebooks via the serial ports to install from the CD on my PC. Or > am I stuck until I get an external CD-ROM. Why not use SLIP or PLIP installation? All you need is a null serial/parallel cable. During the install, when it asks you to select your media type, select FTP, and have your other machine provide the distfiles via anonymous FTP... one of your desktop PC's with a CDROM that runs FreeBSD. You'll not only need to enable anonymous FTP from the desktop machine, you'll also need to use 'slattach' to get IP functioning over your null serial line. (You only need to run this manually from the Desktop side; sysinstall will handle this on your laptop.) Your Desktop should use (if possible) the same slattach options that sysinstall will be using on your laptop. When sysinstall asks you to configure the sl0 interface, in the 'extra options for ifconfig' blank, you need to key in the IP address of your slip peer, since it's a point-to-point connection. This is a Cool way to breathe life into Olde Ecuipmente. Good luck, -Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 13:48:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ruby.he.net (ruby.he.net [216.218.187.2]) by hub.freebsd.org (Postfix) with ESMTP id A171937B4E5 for ; Tue, 17 Oct 2000 13:48:32 -0700 (PDT) Received: from corten5.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by ruby.he.net (8.8.6/8.8.2) with ESMTP id NAA30991 for ; Tue, 17 Oct 2000 13:48:30 -0700 Date: Tue, 17 Oct 2000 13:45:56 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten5 To: FBSD Subject: Soundblaster_16 and FreeBSD-4.1 ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I may be jumping the gun with this but just went to investigate the procedure for setting up the Soundblaster_16 sound card and I'm reading that I have to recompile the kernel ? I've always purchased this card for it's a troublefree card to setup with the "sndcofig" utility in Linux. Is this the only way to get sound working with the latest FreeBSD-4.1 ? My many thanks in advance while I keep digging. -- Bill Schoolcraft http://wiliweld.com PO Box 210076 San Francisco, CA 94121 " saevis tranquillus in undis " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 14:14:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pobox.eng.sjc.above.net (pobox.eng.sjc.above.net [216.200.255.92]) by hub.freebsd.org (Postfix) with ESMTP id 5234A37B4D7 for ; Tue, 17 Oct 2000 14:14:54 -0700 (PDT) Received: from pobox.eng.sjc.above.net (pobox.eng.sjc.above.net [216.200.255.92]) by pobox.eng.sjc.above.net (8.9.3/8.9.3) with ESMTP id OAA40689 for ; Tue, 17 Oct 2000 14:14:53 -0700 (PDT) (envelope-from peterp@above.net) Date: Tue, 17 Oct 2000 14:14:53 -0700 (PDT) From: Pete Perreault X-Sender: peterp@pobox.eng.sjc.above.net To: freebsd-questions@FreeBSD.ORG Subject: 4.1/netscape/java Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm running FreeBSD 4.1 and Netscape's Communicator 4.7 and having problems with Java Script. Specifically, when Java is enabled Netscape crashes. This seems to be a common problem and I was hoping someone could provide the url for a fix if not the answer in a reply. I can't seem to find anything on it myself. thanks, Pete To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 14:16:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id E873A37B4F9 for ; Tue, 17 Oct 2000 14:16:15 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id RAA26861 for ; Tue, 17 Oct 2000 17:16:14 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id RAA01233 for ; Tue, 17 Oct 2000 17:15:47 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2LF3000.3LD; Tue, 17 Oct 2000 17:16:12 -0400 Message-ID: <39ECC1AD.F0554D4B@mitre.org> Date: Tue, 17 Oct 2000 17:16:29 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Bill Schoolcraft Cc: FBSD Subject: Re: Soundblaster_16 and FreeBSD-4.1 ? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill Schoolcraft wrote: > > I may be jumping the gun with this but just went to investigate the > procedure for setting up the Soundblaster_16 sound card and I'm > reading that I have to recompile the kernel ? I've always purchased > this card for it's a troublefree card to setup with the > "sndcofig" utility in Linux. > > Is this the only way to get sound working with the latest > FreeBSD-4.1 ? > > My many thanks in advance while I keep digging. Soundblaster 16s play music and sound effects just fine in every version of FreeBSD I've ever used. In FreeBSD 4.x you need to crank the volume up a lot higher than you used to (I usually put vol, pcm, and ogain at 100 and leave my speakers in the middle position). Full duplex mode doesn't work in 4.0, but it supposedly works in 4-CURRENT. Full duplex mode works fine in 3.x. Note that the SB16 has a design deficency that really makes it more like 3/4 duplex. To use the soundcard, you have to recompile a kernel (4.x) with: device pcm device sbc If you have an old ISA non-pnp version, you will also have to include the IO port, IRQs, and DMAs (see LINT). For more information on compiling a kernel, read the handbook at http://www.freebsd.org/handbook To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 14:19:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from proxy4.ba.best.com (proxy4.ba.best.com [206.184.139.15]) by hub.freebsd.org (Postfix) with ESMTP id C394B37B479 for ; Tue, 17 Oct 2000 14:19:34 -0700 (PDT) Received: from best.com (dynamic60.pm03.mv.best.com [209.24.240.188]) by proxy4.ba.best.com (8.9.3/8.9.2/best.out) with ESMTP id OAA09388 for ; Tue, 17 Oct 2000 14:19:12 -0700 (PDT) Message-ID: <39ECC1ED.1B870C78@best.com> Date: Tue, 17 Oct 2000 14:17:33 -0700 From: Guy Williams X-Mailer: Mozilla 4.7 [en]C-CCK-MCD NSCPCD47 (Win98; I) X-Accept-Language: en,ja MIME-Version: 1.0 To: questions@FreeBSD.org Subject: CDROM and Floppies inop Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear friends, I hope you can help. This is my first UNIX-like system setup. FreeBSD 4.1 Release FreeBSD 4.1-Release#0:friJUL 28 14:30:31 GMT 2000 jkh@ref4.freebsd.org:/usr/src/sys/compile/generic:386 system: Iwill P55AV Ultra SCSI Motherboard Pentium 200 MHz MMX sound card (probed as unknown), std. IDE/ESDI HDC (probed as unknown), Voodoo3, CDROM E-IDE ISO 9660, generic 3.5 and 5.25 floppies, 2 hard drives. Pri and sec. IDE ctlrs., PS/2 mouse No SCSI devices and the SCSI cntls are disabled on the board setup probes: indicate some invalid I/O ports associated with adv1. No conf in basic view setup. probes: WARNING "fd" is usurping "dd"'s cdevsw[] WARNING "fd" is usurping 'dd"'s bmaj I get a prompt, I can log on, move around, run vi, the screen saver works and the mouse works. I loaded the system from the CD drive using boot disks. PROBLEM: The floppies do not show up in /etc/fstab; the CDROM is there but does not mount on startup. If I try to mount the the CDROM I get: CD9660 device busy If I try to mount the floppies I get: fd0c hard error reading fsbn 16 of 16-31 (nostatus) fd1c hard error reading fsbn 16 of 16-31 (nostatus) Thanks for you help. Guy -- Guy Williams 1220 Carmel Terrace Los Altos, CA 94024 (650)967-0230 guywill@best.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 14:54:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r20.mail.aol.com (imo-r20.mx.aol.com [152.163.225.162]) by hub.freebsd.org (Postfix) with ESMTP id 1DD6B37B65E for ; Tue, 17 Oct 2000 14:54:53 -0700 (PDT) Received: from SCARLETTRETT@aol.com by imo-r20.mx.aol.com (mail_out_v28.31.) id n.bf.7c6dd77 (4398) for ; Tue, 17 Oct 2000 17:54:47 -0400 (EDT) From: SCARLETTRETT@aol.com Message-ID: Date: Tue, 17 Oct 2000 17:54:46 EDT Subject: canon djc-4000 printer To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Windows AOL sub 114 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am having troble with my printer printing it goes through the motions, but does not print. I have refilled my Ink.It wont print on line or off line. HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! THANK YOU CINDY To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 14:58:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by hub.freebsd.org (Postfix) with ESMTP id 28A6437B4C5 for ; Tue, 17 Oct 2000 14:58:10 -0700 (PDT) Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by mail.cafes.net (8.9.3/8.9.3) with ESMTP id QAA10365 for ; Tue, 17 Oct 2000 16:58:07 -0500 Date: Tue, 17 Oct 2000 16:58:07 -0500 (CDT) From: Mike Eldridge To: freebsd-questions@freebsd.org Subject: alpha multia axp (aka noname) boot problems Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have an Alpha Multia AXP 166mhz box that I've been running Linux on for a couple of years and decided I'd try FreeBSD. I created the two 1.44MB floppies needed and booted with them. I kept getting the soft errors as described in some of the FreeBSD documentation. During kernel boot, it spit out "dec_axppci_33_intr_map: bad interrupt pin 192" about 80 times and then the kernel failed with a memory management fault. Now, the documentation said booting from floppy with this type of alpha was broken, so I burned a cd and was going to boot from the cd. I got a couple of soft errors to the effect of "device dka2: sense error", but the kernel started to boot. It failed again at the same places, spitting out loads of garbage about bad interrupt pins. I've also read that you can't use FreeBSD on the console with Multias because of some issue with the video card. I'm not quite sure I understand why this is, I ran Linux on the console just fine (I even got it to run X!, although only at 640x480). Any insight or direction on where to buy new interrupt pins would be appreciated. =P Thanks, Mike ----------------------------------------------------- Save the whales. Feed the hungry. Free the mallocs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15: 4:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from octarine.itsc.adfa.edu.au (octarine.itsc.adfa.edu.au [131.236.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 7CA4437B4CF for ; Tue, 17 Oct 2000 15:04:49 -0700 (PDT) Received: from bron.adfa.edu.au (a104016.student.adfa.edu.au [131.236.104.16]) by octarine.itsc.adfa.edu.au (8.11.1/8.11.1) with ESMTP id e9HM4lR11443 for ; Wed, 18 Oct 2000 09:04:47 +1100 (EST) Message-ID: <39ECDEF2.249805E1@adfa.edu.au> Date: Wed, 18 Oct 2000 09:21:22 +1000 From: Bronwen Harrigan X-Mailer: Mozilla 4.01 [en] (Win95; U) MIME-Version: 1.0 To: questions@FreeBSD.org Subject: user authentication controls X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To whom it may concern, I am a 3rd year information systems student at the Australian Defence Force Academy in Canberra, Australia and am currently doing an assignment on user authentication controls for Linux and FreeBSD. Can you please tell me what user authentication controls exist for FreeBSD and/or Linux? Also, is FreeBSD and/or Linux currently able to support or use any biometric encryption technology? If so, what sort? Your help with this assignment would be greatly appreciated, Yours kindly, Bronwen Harrigan Officer Cadet ADFA Canberra, Australia (02) 6268 6222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15: 6:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 31FFD37B4C5 for ; Tue, 17 Oct 2000 15:06:08 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id for ; Tue, 17 Oct 2000 18:06:19 -0400 Message-ID: <39ECCDAD.38162D28@tellurian.com> Date: Tue, 17 Oct 2000 18:07:41 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: FreeBSD questions Subject: Need help getting my RCN cable modem running Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have had my cable modem for about a week now, and the whole week spent on trying to set it up on FreeBSD (version 4.1.1-STABLE) machine. I know modem itself is functional because I have used it with Windows machine, with no additional software (only DHCP setup). The modem uses a telephone line for upstream connection, so it has to dialup before anything can be sent out. I have installed a second NIC into my FreeBSD box and connected the modem to it. DHCP seems to be working fine, giving me my IP and router/DNS IPs. But will not allow me to ping even DNS and I do not hear it dial out either. Here's what I know... On boot the system cannot add the default route (modem IP) because it is "unreachable". After I log in I add the route manually like so: # route add default -interface ed0 After doing so, I can ping my modem/router (10.17.56.XXX) but I cannot ping anything further out, and the modem still doesn't dial out. Ping tells me "ping: sendto: Host is down". I did try adding a route from NIC to modem (unsuccessfully, possibly because of bad syntax) like this: # route add -host 10.17.56.XXX -gateway 208.59.162.XXX where last is my assigned IP. Here are some relevant lines from my rc.conf file: network_interfaces="ed0 ed1 lo0" ifconfig_ed0="DHCP" ifconfig_ed1="inet 192.168.0.1 netmask 255.255.255.0" defaultrouter="10.17.56.XXX" gateway_enable="YES" Any ideas? I know from searching the mailing list archive that there are users of RCN cable modems out there. And apparently they had not much trouble setting their's up. What's the problem in my case? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:11: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.jonelrienton.org (dsl-64-34-25-237.telocity.com [64.34.25.237]) by hub.freebsd.org (Postfix) with SMTP id 4638D37B479 for ; Tue, 17 Oct 2000 15:10:57 -0700 (PDT) Received: (qmail 26609 invoked from network); 17 Oct 2000 22:27:20 -0000 Received: from debian (10.29.22.23) by zeus with SMTP; 17 Oct 2000 22:27:20 -0000 Message-ID: <015501c03888$b05f30b0$17161d0a@jonelrienton.org> From: "Jonel Rienton" To: "pstapley" , References: <013c01c03853$e5908a70$f5f055ce@rapidnet.com> Subject: Re: mail Date: Tue, 17 Oct 2000 17:22:08 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 if you're using qmail at all, you have these variables you can set prior to sending: MAILHOST MAILNAME MAILUSER i haven't tried it with other MTA. hth Jonel Rienton http://qmail.freebsduser.org sent by qmail-1.03 on a FreeBSD 4.1-STABLE - ----- Original Message ----- From: "pstapley" To: Sent: Tuesday, October 17, 2000 11:04 AM Subject: mail | Is there anyway to specify a reply to address on the command line | when using 'mail'? | | | | | To Unsubscribe: send mail to majordomo@FreeBSD.org | with "unsubscribe freebsd-questions" in the body of the message -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.8 for non-commercial use iQA/AwUBOezRD6Q0pAI9Fl/WEQJNbACfey+iG0uyZ0DngEA1dPCxf+MzIAwAoL6U 7LE6qyg99UZGyPjbVTApGKjV =TNzy -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:17:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f293.law9.hotmail.com [64.4.8.168]) by hub.freebsd.org (Postfix) with ESMTP id 203FB37B4E5 for ; Tue, 17 Oct 2000 15:17:53 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 17 Oct 2000 15:17:48 -0700 Received: from 63.210.214.84 by lw9fd.law9.hotmail.msn.com with HTTP; Tue, 17 Oct 2000 22:17:47 GMT X-Originating-IP: [63.210.214.84] From: "d X" To: questions@freebsd.org Subject: about downloading freebsd Date: Tue, 17 Oct 2000 18:17:47 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 17 Oct 2000 22:17:48.0002 (UTC) FILETIME=[14ADDC20:01C03888] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi, i tried to dl the kern.flp file, and i just bought mf2hd formatted 1.44mb floppies, and when it gets to 1.40mb, it says that the file you i too large for the disk, please insert a disk with a higher capacity, i then try to put in another disk, and i can't , i have the files on my c drive but i cant copy it to drive a. pls let me know if there is something else i can do to get unix as a 2nd os, thank you very much. Moe. _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:25:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rapidnet.com (rapidnet.com [205.164.216.1]) by hub.freebsd.org (Postfix) with ESMTP id 77BDA37B4F9 for ; Tue, 17 Oct 2000 15:25:35 -0700 (PDT) Received: from imagination (imagination.rapidnet.com [206.85.240.245]) by rapidnet.com (8.9.3/8.9.3) with SMTP id QAA87291; Tue, 17 Oct 2000 16:25:25 -0600 (MDT) Message-ID: <029301c03889$0927c450$f5f055ce@rapidnet.com> From: "pstapley" To: "Jonel Rienton" , References: <013c01c03853$e5908a70$f5f055ce@rapidnet.com> <015501c03888$b05f30b0$17161d0a@jonelrienton.org> Subject: Re: mail Date: Tue, 17 Oct 2000 16:24:37 -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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am usign send mail. ----- Original Message ----- From: "Jonel Rienton" To: "pstapley" ; Sent: Tuesday, October 17, 2000 4:22 PM Subject: Re: mail > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > if you're using qmail at all, you have these variables you can set > prior to sending: > > MAILHOST > MAILNAME > MAILUSER > > i haven't tried it with other MTA. hth > > Jonel Rienton > http://qmail.freebsduser.org > sent by qmail-1.03 on a FreeBSD 4.1-STABLE > - ----- Original Message ----- > From: "pstapley" > To: > Sent: Tuesday, October 17, 2000 11:04 AM > Subject: mail > > > | Is there anyway to specify a reply to address on the command line > | when using 'mail'? > | > | > | > | > | To Unsubscribe: send mail to majordomo@FreeBSD.org > | with "unsubscribe freebsd-questions" in the body of the message > > -----BEGIN PGP SIGNATURE----- > Version: PGPfreeware 6.5.8 for non-commercial use > > iQA/AwUBOezRD6Q0pAI9Fl/WEQJNbACfey+iG0uyZ0DngEA1dPCxf+MzIAwAoL6U > 7LE6qyg99UZGyPjbVTApGKjV > =TNzy > -----END PGP SIGNATURE----- > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:30:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9608.mail.yahoo.com (web9608.mail.yahoo.com [216.136.129.187]) by hub.freebsd.org (Postfix) with SMTP id 5692737B4CF for ; Tue, 17 Oct 2000 15:30:50 -0700 (PDT) Message-ID: <20001017223049.77005.qmail@web9608.mail.yahoo.com> Received: from [61.11.233.102] by web9608.mail.yahoo.com; Tue, 17 Oct 2000 15:30:49 PDT Date: Tue, 17 Oct 2000 15:30:49 -0700 (PDT) From: salman latif Subject: what r virtual devices? To: 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 dear sir: 1- i need to know that what r virtual devices? what is the purpose to creat a virtual machine/device? 2- what is the main difference b/w virtual memory, buffer, cache memory & registers? regards salman latif qureshi __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:36:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by hub.freebsd.org (Postfix) with ESMTP id CFC2037B65E for ; Tue, 17 Oct 2000 15:36:08 -0700 (PDT) Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by mail.cafes.net (8.9.3/8.9.3) with ESMTP id RAA29858; Tue, 17 Oct 2000 17:36:05 -0500 Date: Tue, 17 Oct 2000 17:36:05 -0500 (CDT) From: Mike Eldridge To: d X Cc: questions@FreeBSD.ORG Subject: Re: about downloading freebsd 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 As stated all over the FreeBSD documentation (and in various common sense manuals), these files are *images*. They contain a filesystem. You don't copy them to the disk, that would do nothing, you write the image over the disk. There should be an imaging utility (fdimage.exe) on your FreeBSD cd under the tools directory. If you have another unix box available, use dd. It might also benefit you to actually read the documentation before resorting to other methods. The README.TXT file located in the floppies directory was made for this purpose. Mike ----------------------------------------------------- Save the whales. Feed the hungry. Free the mallocs. On Tue, 17 Oct 2000, d X wrote: > hi, i tried to dl the kern.flp file, and i just bought mf2hd formatted > 1.44mb floppies, and when it gets to 1.40mb, it says that the file you i too > large for the disk, please insert a disk with a higher capacity, i then try > to put in another disk, and i can't , i have the files on my c drive but i > cant copy it to drive a. pls let me know if there is something else i can do > to get unix as a 2nd os, thank you very much. > Moe. > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:46: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 36DA137B4E5 for ; Tue, 17 Oct 2000 15:45:56 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id JAA98184; Wed, 18 Oct 2000 09:45:25 +1100 (EST) Date: Wed, 18 Oct 2000 09:45:25 +1100 From: Nick Slager To: "Oles' Hnatkevych" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: jetdirect Message-ID: <20001018094524.C91516@albury.net.au> References: <16706.001017@fc.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <16706.001017@fc.kiev.ua>; from gnut@fc.kiev.ua on Tue, Oct 17, 2000 at 04:56:57PM +0400 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Oles' Hnatkevych (gnut@fc.kiev.ua): > How I can if possible make my samba print on > HP JetDirect EX Plus? Have a look at the 'rm' capability for /etc/printcap. There are comments in that file regarding setting up remote printers. Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:46:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by hub.freebsd.org (Postfix) with ESMTP id 693C237B479 for ; Tue, 17 Oct 2000 15:46:21 -0700 (PDT) Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by mail.cafes.net (8.9.3/8.9.3) with ESMTP id RAA02453; Tue, 17 Oct 2000 17:46:14 -0500 Date: Tue, 17 Oct 2000 17:46:14 -0500 (CDT) From: Mike Eldridge To: salman latif Cc: questions@FreeBSD.ORG Subject: Re: what r virtual devices? In-Reply-To: <20001017223049.77005.qmail@web9608.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Oct 2000, salman latif wrote: > dear sir: > > 1- i need to know that what r virtual devices? what is > the purpose to creat a virtual machine/device? Well, virtual means not really, so a virtual device or machine would mean a device or machine that's not really there. :) Basically, a virtual machine is something like a java bytecode interpreter that does an 'in-between' task. Ie, java isn't directly executed, it is interpreted by a java virtual machine, which in turn executes the neccessary instructions. A virtual device is a device that is emulated in some way, shape or form. When you hear virtual, think emulation. > 2- what is the main difference b/w virtual memory, > buffer, cache memory & registers? Is this your homework? Again, virtual memory isn't real memory, it's some other form of space that is used as memory, such as additional hard disk space. Hard disk space would of course be a much slower form of memory than real memory, but since hard disks are very inexpensive compared to memory, they work well when additional memory is needed. Registers and cache are two forms of 'memory.' They keep state. Registers are located IN the processor. They are limited in number, but since they are IN the processor, they are VERY fast. i386 processors have 32-bit registers (meaning they can store 4 bytes). The new IA64 processor (codenamed Merced, recodenamed Itanium) has 64-bit registers. Alphas also have 64-bit registers. Cache is fast memory that is located on the board close to the processor. Cache can come in several levels. L1 cache is usually very small amount of memory (64K, 128K) that is on the processor die. It runs at the clock speed of the processor. L2 cache used to be on the motherboard, running at fractions of the speed of the processor. Some L2 cache is on the processor or on the processor board, such as Pentium IIs, other cache is on the motherboard somewhere. L2 cache can be anywhere from 128K (crappy) up to several MBs for the Xeon line. You usually can't find a motherboard or processor with less than 512K cache nowadays. L3 cache is a new concept, brought about by the release of the K6-3 that had faster on-die L2 cache, making the L2 cache built into the board become L3 cache. A buffer is anything that holds data for a short period of time. Mike ----------------------------------------------------- Save the whales. Feed the hungry. Free the mallocs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:56:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 7670937B681 for ; Tue, 17 Oct 2000 15:56:35 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 824CB328F; Mon, 16 Oct 2000 15:20:00 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 6739A328E; Mon, 16 Oct 2000 15:20:00 +0000 (GMT) Date: Mon, 16 Oct 2000 15:20:00 +0000 (GMT) From: Rick Hamell To: d X Cc: questions@freebsd.org Subject: Re: about downloading freebsd In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You need to use the fdimage.exe program to "make" the boot disks... you can't just copy the images over. It can be found in the /tools directory either off of your CDROM, or on the FTP site. You may also want to read the instructions at www.freebsd.org :) Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org On Tue, 17 Oct 2000, d X wrote: > hi, i tried to dl the kern.flp file, and i just bought mf2hd formatted > 1.44mb floppies, and when it gets to 1.40mb, it says that the file you i too > large for the disk, please insert a disk with a higher capacity, i then try > to put in another disk, and i can't , i have the files on my c drive but i > cant copy it to drive a. pls let me know if there is something else i can do > to get unix as a 2nd os, thank you very much. > Moe. > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 15:59:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 090A137B4CF for ; Tue, 17 Oct 2000 15:59:15 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id JAA00724; Wed, 18 Oct 2000 09:59:12 +1100 (EST) Date: Wed, 18 Oct 2000 09:59:12 +1100 From: Nick Slager To: Kal Torak Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards Message-ID: <20001018095911.D91516@albury.net.au> References: <39EC4CC4.BB576E22@quake.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39EC4CC4.BB576E22@quake.com.au>; from kaltorak@quake.com.au on Tue, Oct 17, 2000 at 10:57:40PM +1000 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Kal Torak (kaltorak@quake.com.au): > I was wondering if anyone knows of some good guides to setting > up FreeBSD to use PC-Cards like Ethernet and that... > Just using the base PC-Card stuff that comes with FreeBSD, not > all that PAO dist stuff... > I am having trouble getting it working, just need a guide that > explains what steps are needed.. First, make sure your card is supported. A good place to start for that is the release notes: http://www.freebsd.org/releases/4.1.1R/notes.html Make sure pccardd is running. Set pccard_enable="YES" in /etc/rc.conf, or use /stand/sysinstall. If your card is supported, at this stage there's a good chance things will "just work". Further than that, some specific details would be required. Post them here or to freebsd-mobile@freebsd.org. Nick [ PS: Kal Torak died, remember :-) ] -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 16: 8:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail24.bigmailbox.com (mail24.bigmailbox.com [209.132.220.207]) by hub.freebsd.org (Postfix) with ESMTP id 7C49E37B4CF for ; Tue, 17 Oct 2000 16:08:38 -0700 (PDT) Received: œby mail24.bigmailbox.com (8.8.7/8.8.7) id QAA31318; Tue, 17 Oct 2000 16:11:25 -0700 Date: Tue, 17 Oct 2000 16:11:25 -0700 Message-Id: <200010172311.QAA31318@mail24.bigmailbox.com> Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary X-Mailer: MIME-tools 4.104 (Entity 4.116) Mime-Version: 1.0 X-Originating-Ip: [63.28.165.185] From: "gummibear@nettaxi.com" To: questions@freebsd.org Subject: Samba 2.0.7 homes share problem with NT 4.0 w/ serv pack 6 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings! This here question is in need of a Samba guru. I'll try to list out all the information that you'll might need. Okay, I have a FreeBSD 4.1 box with Samba 2.0.7 installed from the ports collection that is having some troubles with NT 4.0 (with service pack 6). Here's the situation. I'd like to have the FreeBSD box as a simple File Server. As of current I only have homes share and a tmp share. The tmp share works fine when accessing from FreeBSD, but the homes share (which samba maps to the user name/directory) gives me some error messages. So basically, when I log into the NT box as administrator and I open the network neighborhood and open the FreeBSD workstation icon, I get presented with a list of shares on the FreeBSD/Samba server. I can open the tmp share, but when I try to open the administrator share I get this error message: "\\FreeBSD\administrator is not accessible. The network name cannot be found." I have read the diagnosing file on the samba site. I found something weird when issuing the "net view \\freebsd" command on the NT 4 box. Their is a missing field next to the the administrator share. Anyways, I'm attatching smb.conf file and some output from smbclient and 'net view \\freebsd' commands and my log files. I'm really stumped and would really like to get this working. I'd like thos priove to my boss that FreeBSD and Samba has it's place in our network. Any help would be greatly appreciated. Thanks! # Samba config File (/usrlocal/etc/smb.conf) # Global parameters [global] workgroup = MIS netbios name = FREEBSD server string = Samba Server interfaces = xl0 encrypt passwords = Yes log file = /var/log/log.%m max log size = 50 os level = 33 local master = No dns proxy = No [homes] comment = Home Directories writeable = Yes browseable = No [printers] comment = All Printers path = /var/spool/samba printable = Yes browseable = No [tmp] comment = Temporary file space path = /tmp writeable = Yes guest ok = Yes # From the FreeBSD/Samba box logged in as administrator $ smbclient -L freebsd added interface ip=10.0.0.5 bcast=10.255.255.255 nmask=255.0.0.0 Got a positive name query response from 10.0.0.5 ( 10.0.0.5 ) Password: Domain=[MIS] OS=[Unix] Server=[Samba 2.0.7] Sharename Type Comment --------- ---- ------- tmp Disk Temporary file space IPC$ IPC IPC Service (Samba Server) lp Printer HP Laserjet 2100 ibm Printer IBM 6400 cc Printer Canon IR330E administrator Disk Home Directories Server Comment --------- ------- FREEBSD Samba Server STEVE Workgroup Master --------- ------- MIS STEVE # From the NT 4 box logged in as Administrator C:>net view \\freebsd Shared resources at \\freebsd Samba Server Share name Type Used as Comment ------------------------------------------------------------------------------- administrator Disk Home Directories cc Print Canon IR330E ibm Print IBM 6400 lp Print HP Laserjet 2100 tmp Disk (UNC) Temporary file space The command completed successfully. # From the NT 4 box - trying to access administrator share via Network Neighborhood # (error message given) \\FreeBSD\administrator is not accessible. The network name cannot be found. Note: accessing the tmp share works fine. I think their is something up with the homes share # log.smb [2000/10/16 18:20:04, 0] lib/util_sock.c:set_socket_options(154) Failed to set socket option SO_KEEPALIVE (Error Bad file descriptor) [2000/10/16 18:20:04, 0] lib/util_sock.c:set_socket_options(154) Failed to set socket option TCP_NODELAY (Error Bad file descriptor) [2000/10/17 14:05:01, 1] smbd/server.c:main(641) smbd version 2.0.7 started. Copyright Andrew Tridgell 1992-1998 [2000/10/17 14:05:01, 1] smbd/files.c:file_init(216) file_init: Information only: requested 10000 open files, 1054 are available. [2000/10/17 14:07:19, 1] smbd/service.c:make_connection(550) freebsd (10.0.0.5) connect to service tmp as user bear (uid=1001, gid=0) (pid 16200) [2000/10/17 14:08:10, 1] smbd/service.c:close_cnum(583) freebsd (10.0.0.5) closed connection to service tmp [2000/10/17 14:23:55, 0] lib/util_sock.c:set_socket_options(154) Failed to set socket option SO_KEEPALIVE (Error Bad file descriptor) [2000/10/17 14:23:55, 0] lib/util_sock.c:set_socket_options(154) Failed to set socket option TCP_NODELAY (Error Bad file descriptor) [2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:23:55, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:23:55, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:23:55, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:24:05, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:05, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:05, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:24:09, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:09, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:09, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:24:14, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:14, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:14, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:24:20, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:24:20, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:24:20, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'bear': authentication failed [2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:44, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) Account for user 'administrator' was disabled. [2000/10/17 14:24:44, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:38:59, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:38:59, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:38:59, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'bear': authentication failed [2000/10/17 14:39:23, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:39:23, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:39:23, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'bear': authentication failed [2000/10/17 14:39:27, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:39:27, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:39:27, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'bear': authentication failed [2000/10/17 14:40:24, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:40:24, 1] smbd/password.c:pass_check_smb(506) Account for user 'bear' was disabled. [2000/10/17 14:40:24, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'bear': authentication failed [2000/10/17 14:40:39, 0] smbd/chgpasswd.c:check_oem_password(644) check_lanman_password: account bear disabled. [2000/10/17 14:41:42, 1] smbd/service.c:make_connection(550) joey (10.0.0.12) connect to service tmp as user administrator (uid=1002, gid=1002) (pid 16299) [2000/10/17 14:42:14, 0] smbd/nttrans.c:call_nt_transact_ioctl(2516) call_nt_transact_ioctl: Currently not implemented. [2000/10/17 14:44:06, 1] smbd/service.c:close_cnum(583) joey (10.0.0.12) closed connection to service tmp [2000/10/17 14:53:00, 1] smbd/reply.c:reply_sesssetup_and_X(925) Rejecting user 'administrator': authentication failed [2000/10/17 14:53:25, 1] smbd/service.c:make_connection(550) freebsd (10.0.0.5) connect to service administrator as user administrator (uid=1002, gid=1002) (pid 16348) [2000/10/17 14:54:07, 1] smbd/service.c:close_cnum(583) freebsd (10.0.0.5) closed connection to service administrator [2000/10/17 15:02:43, 0] lib/util_sock.c:set_socket_options(154) Failed to set socket option SO_KEEPALIVE (Error Bad file descriptor) [2000/10/17 15:02:43, 0] lib/util_sock.c:set_socket_options(154) Failed to set socket option TCP_NODELAY (Error Bad file descriptor) [2000/10/17 15:07:57, 1] smbd/server.c:main(641) smbd version 2.0.7 started. Copyright Andrew Tridgell 1992-1998 [2000/10/17 15:07:57, 1] smbd/files.c:file_init(216) file_init: Information only: requested 10000 open files, 1054 are available. ------------------------------------------------------------ Nettaxi MP3 Player, Burner, Ripper - NEW Version 2.0!!! DOWNLOAD IT FREE! (5MBs) MP3 DOWNLOAD: http://www.nettaxi.com/mp3/version_2/ntxy_MP3_setup.exe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 16:11:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 79D6937B4E5 for ; Tue, 17 Oct 2000 16:11:36 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id KAA03132; Wed, 18 Oct 2000 10:11:30 +1100 (EST) Date: Wed, 18 Oct 2000 10:11:30 +1100 From: Nick Slager To: Pete Perreault Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 4.1/netscape/java Message-ID: <20001018101130.E91516@albury.net.au> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from peterp@above.net on Tue, Oct 17, 2000 at 02:14:53PM -0700 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Pete Perreault (peterp@above.net): > I'm running FreeBSD 4.1 and Netscape's Communicator 4.7 and having > problems with Java Script. Specifically, when Java is enabled Netscape > crashes. This seems to be a common problem and I was hoping someone > could provide the url for a fix if not the answer in a reply. I can't > seem to find anything on it myself. Try using Netscape for BSD/OS or Linux (with linux emulation). Both of these seem more stable than the native Netscape, at least as far as Javascript goes. I haven't found a browser that doesn't routinely die when Java is enabled, though :-( Nick [ waiting for a stable-ish Mozilla... ] -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 16:11:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 55EB637B4F9 for ; Tue, 17 Oct 2000 16:11:34 -0700 (PDT) Received: from nasby.net (sysnasby@2.nasby.dsl.enteract.com [216.80.51.18]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id SAA18162; Tue, 17 Oct 2000 18:11:05 -0500 (CDT) (envelope-from jim@nasby.net) Message-ID: <39ECDC7F.BB95BBA4@nasby.net> Date: Tue, 17 Oct 2000 18:10:55 -0500 From: "Jim C. Nasby" Organization: distributed.net X-Mailer: Mozilla 4.73 [en] (WinNT; U) X-Accept-Language: en-US,en MIME-Version: 1.0 To: Odhiambo Washington Cc: FBSD-Q Subject: Re: Defragmentation References: <20001017175658.E89971@poeza.iconnect.co.ke> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Odhiambo Washington wrote: > > * Micke Josefsson [20001017 17:21]: > => > =>On 17-Oct-00 Daniel Bye wrote: > =>> As far as I know, there are no defragmentation agents for FreeBSD (or most > =>> other *NICES). Therefore, you would have to rebuild your file systems. > =>> Take a tape backup of the entire system (this is sequential, so disk > =>> fragmentation is not an issue), rebuild your disk slice/partition setup, and > =>> then restore the backed up file systems from the tape. > > Now that is where the dilemna is..my box has no tape drive! But I have a > tape of 10GB and there is another FBSD box near me which has the tape > drive. I've heard about amanda and some network backup applications but I > think I may be able to backup but not restore....what is the procedure > when the tape drive is not on the box?? If you have another box you can conveniently ship data to via NFS or SCP, then I'd say you don't need the backup... just move the data off the box, delete, and move it back. Or as someone else suggented, even a cp on the local drive might help. If both FBSD boxes are running the same branch, you could also rm /usr/src && rm /usr/obj and then copy stuff around (ie: mkdir /usr/.usr && cp -R /usr/* /usr/.usr, then rm -r /usr/* && mv /usr/.usr/* /usr && rm -r /usr/.usr) > It's now at 2.3% but for a long time I've been watching it come this > far... Personally, I wouldn't worry about that level of fragmentation at all. > Some Linux guy said Linux does it automatically ??? Heard anything like > that? I've never used Linux though, except as a dumb user..just telnet, > mail.. I'm guessing that what they meant to say is that whatever filesystem linux uses works very hard to avoid fragmentation in the first place. > Any idea how I can capture the msgs about the file systems when system > boots, including when it's starting the daemons..? No, but if you really want to know you can drop to single user, umount -a, and fsck -p. fsck is what's giving you the fragmentation info. There may be another way to do it without unmounting. > Thanking you guys BIG! > > -Wash > > -- > Odhiambo Washington Inter-Connect Ltd., > wash@iconnect.co.ke 5th Flr Furaha Plaza > Tel: 254 11 222604 Nkrumah Rd., > Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. > > Just as a flower which seems beautiful and has color but no perfume, so are > the fruitless words of the man who speaks them but does them not. -Dhammapada > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Jim C. Nasby (aka Decibel!) /^\ jim@nasby.net /___\ Freelance lighting designer and database developer / | \ Member: Triangle Fraternity, Sports Car Club of America /___|___\ Give your computer some brain candy! www.distributed.net Team #1828 Get paid to surf!! http://www.enteract.com/~nasby/alladvantage.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 16:35:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 7D78237B4E5 for ; Tue, 17 Oct 2000 16:35:11 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 4A6B91F20; Tue, 17 Oct 2000 16:35:10 -0700 (PDT) Subject: Re: changing root shell?? In-Reply-To: "from media@ct1.nai.net at Oct 17, 2000 01:45:56 pm" To: media@ct1.nai.net Date: Tue, 17 Oct 2000 16:35:10 -0700 (PDT) Cc: dima@unixfreak.org, freebsd-questions@FreeBSD.ORG From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001017233510.4A6B91F20@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > At 2:04 PM -0700 10/14/00, Dima Dorfman wrote: > > > >They're both uid 0, so I don't see how toor is any more accessable > >than root. All restrictions (no telent/ftp logins) apply to both of > >them. Maybe whoever said that was referring to the case where you > >forget your root password and don't have physical access to the host > >in question. > > So why should I activate toor?? I don't need remote access. If I can't > get at the computer, I have a bigger problem of being locked out of I don't remember exactly what this thread was about (you snipped it, I think), but from the subject I guess you were asking something about changing root's shell (obvious, isn't it? ). The answer here is, if you really want a root-level account with a shell other than /bin/sh or /bin/csh, you should probably leave the 'root' account alone, and change the shell for toor to your liking. This is recommended in favor of changing the root shell because if, for whatever reason, the shell you set for toor is inaccessable (if it's in /usr/local/bin/tcsh and /usr isn't mounted) you still have a valid account you can fix things with. Two other solutions (which are probably recommended over this one) are to just type '' whenever you su to root, or use sudo (in the ports). Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Never understimate the power of human stupidity." -- Robert A. Heinlein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 16:38:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail6.lig.bellsouth.net (mail6.lig.bellsouth.net [205.152.0.91]) by hub.freebsd.org (Postfix) with ESMTP id DEDA137B4D7 for ; Tue, 17 Oct 2000 16:38:24 -0700 (PDT) Received: from prokyon.com (adsl-61-148-46.int.bellsouth.net [208.61.148.46]) by mail6.lig.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id TAA25796 for ; Tue, 17 Oct 2000 19:38:23 -0400 (EDT) Message-ID: <39ECE2A3.E138EF70@prokyon.com> Date: Tue, 17 Oct 2000 19:37:07 -0400 From: Chris Browning X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: keyboard mapping problem w/ m4 sendmail config? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been trying to configure sendmail (first time) with m4. If I use one of the included sample .mc files, m4 gives me a clean sendmail.cf, but when I edit the file, run m4 and then run sendmail -v -bi, I get this error: /etc/mail/sendmail.cf: line 1: invalid argument to V line: "ERSIONID(@(#)tcpprot" /etc/mail/sendmail.cf: line 3: fileclass: cannot open ATURE(nouucp): No such file or directory /etc/mail/sendmail.cf: line 4: MAILER(local): A= argument required /etc/mail/sendmail.cf: line 5: MAILER(smtp): A= argument required On using hexedit to examine both my edited .mc file and the sendmail.cf it produces, I see 0A's (backspaces) instead of 0C's (newlines). Which makes "sense" given the errors I see. Any idea what's up here? I'd rather be asking sendmail questions. Thanks. -- ------------------------ Chris Browning brownicm@prokyon.com ------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 16:57:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from radiant.net (radiant.net [207.194.200.18]) by hub.freebsd.org (Postfix) with ESMTP id D3FD937B479 for ; Tue, 17 Oct 2000 16:57:23 -0700 (PDT) Received: from shula [208.181.145.20] by radiant.net (SMTPD32-6.04) id A91BED30072; Tue, 17 Oct 2000 17:04:43 -0700 Reply-To: From: "Simon Block" To: Subject: PCI resources in driver Date: Tue, 17 Oct 2000 17:02:25 -0700 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.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello FreeBSD, I am using using the bus_alloc_resource() API (for a PCI interrupt and memory region on FreeBSD 4.1 Stable) but we are still experiencing situations where the resource is not allocated (bus_alloc_resource returns NULL). On my development machine I can map all memory regions (3 per card) but cannot map one of the three interrupts (we have 3 PCI bridge chips per card). On my clients machine they cannot even map all memory regions. The bottom line is that I need to know what determines the limit on PCI resource for interrupts (IRQ's) and memory regions. Typically an OS will allow the PCI interrupts to be shared (based on the limitations of the motherboard) and will allocate so much address space to the PCI bus for memory mapping (we have no IO space). What are these limits for FreeBSD? How do we determine them? How do we change them? Any ideas will be greatly appreciated! :) The following two code segments show how I map the memory and interrupts respectively: ========================================================================== /* temp_resc_id = 0x10; pDevice->mem = bus_alloc_resource( device, SYS_RES_MEMORY, &temp_resc_id, 0, ~0, 1, RF_ACTIVE ); pDevice->memid = temp_resc_id; if( !pDevice->mem ) { Ddbg(2, (device, "rln_attach: could not map memory\n")); error = ENXIO; goto failed_alloc_mem; } ========================================================================== temp_resc_id = 0; pDevice->irq = bus_alloc_resource( device, SYS_RES_IRQ, &temp_resc_id, 0ul, ~0ul, 1, (RF_SHAREABLE | RF_ACTIVE) ); pDevice->irqid = temp_resc_id; if( pDevice->irq == NULL ) { Ddbg(2, (device, "rln_attach: could not map interrupt (irqid: %d)\n", pDevice->irqid)); error = ENXIO; goto failed_alloc_irq; } Ddbg(4, (device, "rln_attach: interrupt mapped ok (irqid: %d).\n", pDevice->irqid)); error = bus_setup_intr( device, pDevice->irq, INTR_TYPE_TTY, rln_intr, pDevice, &pDevice->ih ); if( error ) { Ddbg(2, (device, "rln_attach: could not setup irq, error: %d\n", error)); error = ENXIO; goto failed_setup_irq; } ========================================================================== PS. Do you know of any documentation for the bus_dma (bus_dmamem_alloc() and bus_dmammap_load() API's). The NET BSD man pages are close but the API's are different, with differing prototypes. Regards, Simon Block Shula Consulting Incorporated 1-1430 Maple St Vancouver, BC V6J 3R9 Phone: 604 736 8791 Fax: 604 736 8796 Cell: 604 841 8791 Email: sblock@computer.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 17:15: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id BBE2A37B4D7 for ; Tue, 17 Oct 2000 17:15:02 -0700 (PDT) Received: from backup.af.speednet.com.au (backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.11.0/8.11.0) with ESMTP id e9I0Eka83917; Wed, 18 Oct 2000 11:14:48 +1100 (EST) (envelope-from andyf@speednet.com.au) Date: Wed, 18 Oct 2000 11:14:45 +1100 (EST) From: Andy Farkas X-Sender: andyf@backup.af.speednet.com.au To: "gummibear@nettaxi.com" Cc: questions@FreeBSD.ORG Subject: Re: Samba 2.0.7 homes share problem with NT 4.0 w/ serv pack 6 In-Reply-To: <200010172311.QAA31318@mail24.bigmailbox.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Oct 2000, gummibear@nettaxi.com wrote: > # Samba config File (/usrlocal/etc/smb.conf) > # Global parameters > [global] > workgroup = MIS > netbios name = FREEBSD > server string = Samba Server > interfaces = xl0 You chopped out a very important part of the config file: # You may wish to use password encryption. Please read # ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. # Do not enable this option unless you have read those documents > encrypt passwords = Yes Go and read those documents! -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 17:57:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from uswgco34.uswest.com (uswgco34.uswest.com [199.168.32.123]) by hub.freebsd.org (Postfix) with ESMTP id DED9237B4E5 for ; Tue, 17 Oct 2000 17:57:40 -0700 (PDT) Received: from egate-co2.uswc.uswest.com (egate-co2.uswc.uswest.com [151.119.214.10]) by uswgco34.uswest.com (8.10.0/8.10.0) with ESMTP id e9I0veY04575 for ; Tue, 17 Oct 2000 18:57:40 -0600 (MDT) Received: from notes.uswc.uswest.com (localhost [127.0.0.1]) by egate-co2.uswc.uswest.com (8.10.0/8.10.0) with SMTP id e9I0vdY29367 for ; Tue, 17 Oct 2000 18:57:39 -0600 (MDT) Received: by notes.uswc.uswest.com(Lotus SMTP MTA v4.6.5 (863.2 5-20-1999)) id 8825697C.000ACE25 ; Tue, 17 Oct 2000 18:58:01 -0700 X-Lotus-FromDomain: USWEST From: "Erich Jenkins" To: Questions@FREEBSD.ORG Message-ID: <8825697C.000ACC53.00@notes.uswc.uswest.com> Date: Tue, 17 Oct 2000 19:57:22 -0500 Subject: ultra 100 hard drive support 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 Salutations, I would like to know if the current Stable release of FreeBSD supports the Ultra100 hard drive interface? I will be installing it on a set of three servers for 3D modeling and topological analysis soon and need very fast hard drive access, limited only to the capability of the systems it is being installed on. Thanks Erich M. Jenkins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 18: 8:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B351537B4E5 for ; Tue, 17 Oct 2000 18:08:21 -0700 (PDT) Received: from hades.hell.gr (patr530-b094.otenet.gr [195.167.121.222]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e9I17xe16351; Wed, 18 Oct 2000 04:07:59 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id e9I0vwe27372; Wed, 18 Oct 2000 03:57:58 +0300 (EEST) Date: Wed, 18 Oct 2000 03:57:57 +0300 From: Giorgos Keramidas To: Erin Cc: questions@FreeBSD.ORG Subject: Re: Adding an IP alias without a reboot. Message-ID: <20001018035757.A26845@hades.hell.gr> References: <004d01c03866$e3edb540$e815820a@sdccd.cc.ca.us> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <004d01c03866$e3edb540$e815820a@sdccd.cc.ca.us>; from Kahn@deadbbs.com on Tue, Oct 17, 2000 at 11:20:11AM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 11:20:11AM -0700, Erin wrote: > I have a production machine whos IP is going to change. I have to add > an aliased IP to it for a while from a completely different subnet > then by the middle of next month have everything changed over (i.e. > defaultrouter, dns servers, etc.). I'd like to do this with out > rebooting the machine if possable. > > The machine in question is a 3.3-RELEASE and is colocated with very > limited access. I am not sure if this works in 3.3-REL since I don't have access to a 3.3 machine or to the sources of 3.3 for now. However, in my 4.STABLE installation I can do: # ifconfig lo0 inet 10.0.0.1 alias and the required alias is ready to use. Then when I am bored of it: # ifconfig lo0 inet 10.0.0.1 -alias and the alias is gone. It's all in the manpage of ifconfig :) -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 18: 8:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B41C437B4CF for ; Tue, 17 Oct 2000 18:08:27 -0700 (PDT) Received: from hades.hell.gr (patr530-b094.otenet.gr [195.167.121.222]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e9I17oe16305; Wed, 18 Oct 2000 04:07:51 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id e9I0quR26248; Wed, 18 Oct 2000 03:52:56 +0300 (EEST) Date: Wed, 18 Oct 2000 03:52:55 +0300 From: Giorgos Keramidas To: pstapley Cc: questions@FreeBSD.ORG Subject: Re: mail Message-ID: <20001018035255.A24977@hades.hell.gr> References: <013c01c03853$e5908a70$f5f055ce@rapidnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <013c01c03853$e5908a70$f5f055ce@rapidnet.com>; from pstapley@rapidnet.com on Tue, Oct 17, 2000 at 10:04:14AM -0600 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 10:04:14AM -0600, pstapley wrote: > > Is there anyway to specify a reply to address on the command line when > using 'mail'? Yes, of course. Just set REPLYTO environment variable to the desired address. I used to have this set in my ~/.tcshrc with: % grep REPLYTO ~/.tcshrc setenv REPLYTO 'keramida@ceid.upatras.gr' until I found out about Sendmail's genericstable feature. Now I have /etc/mail/genericstable set up and I worry no more about mail or any other command that sends mail :-) -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 18:20:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail3.sdc1.sfba.home.com (femail3.sdc1.sfba.home.com [24.0.95.83]) by hub.freebsd.org (Postfix) with ESMTP id CE20237B65F for ; Tue, 17 Oct 2000 18:20:09 -0700 (PDT) Received: from home.com ([24.12.186.185]) by femail3.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001018011912.TLRZ26554.femail3.sdc1.sfba.home.com@home.com>; Tue, 17 Oct 2000 18:19:12 -0700 Message-ID: <39ECFAF3.1CC3BE28@home.com> Date: Tue, 17 Oct 2000 18:20:51 -0700 From: Rob X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Wolfgang Zeikat Cc: freebsd-questions@FreeBSD.ORG Subject: Re: updating software packages References: <39ECAFA4.DB4A0C19@webseek.de> 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 did it the other night. Gnome 1.2 seems to be pretty unstable. Core dumps galore. And it takes longer to load than Windows 2000 takes to boot, seriously. Thats what I get for not reading the mailing list archives :) Rob. Wolfgang Zeikat wrote: > > after reading about installing gnome 1.2 on > http://www.bsdtoday.com/2000/October/Features310.html > i wonder: > > can i somehow use /stand/sysinstall to install the ports of gnome > version 1.2 (more recent than the default 1.0.* that comes with FreeBSD > 4.0) from the ftp site? > > or how else would i select and install packages from the directory > ftp://ftp.FreeBSD.org/pub/FreeBSD/FreeBSD-stable/packages/gnome/ ? > > i would prefer some method that handles dependencies > > greetings > wolfgang > > -- > http://www.infoseek.de > Wolfgang Zeikat > Technik/Tech Department - System Administrator - > e-Mail: w.zeikat@webseek.de > > WSI Webseek Infoservice GmbH & Co. KG > Buero/Office: Herrengraben 3, D-20459 Hamburg > Post/Mail: Brieffach 8250, D-20350 Hamburg > Telefon/Phone: (00)49-(0)40-300-69-322 > Fax: (00)49-(0)40-300-69-199 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 18:30:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web205.mail.yahoo.com (web205.mail.yahoo.com [128.11.68.105]) by hub.freebsd.org (Postfix) with SMTP id 5920B37B4E5 for ; Tue, 17 Oct 2000 18:30:07 -0700 (PDT) Received: (qmail 16201 invoked by uid 60001); 18 Oct 2000 01:29:58 -0000 Message-ID: <20001018012958.16200.qmail@web205.mail.yahoo.com> Received: from [208.151.188.240] by web205.mail.yahoo.com; Tue, 17 Oct 2000 18:29:58 PDT Date: Tue, 17 Oct 2000 18:29:58 -0700 (PDT) From: Luan Tran Subject: RE: 3Com 3C589 To: Matthew Swinbourne , freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Matthew, Thanks for the reply. I was looking for the util you mentioned at 3com.com but could not find it. Do you know the URL that I can point my browser to? Is it a dos util or FreeBSD? I will try changing the IRQ and IO values later. Thanks again. Luan --- Matthew Swinbourne wrote: > Luan, > > You may have to get the card config util from > 3com.com and turn the plug and > play off and fix the irq and io to something common > like 10 and 310 or > something. > > That what I had to do. > > Thanks > > Matt > > -----Original Message----- > From: Luan Tran [mailto:teazie98@yahoo.com] > Sent: 14 October 2000 11:53 > To: freebsd-questions@FreeBSD.ORG > Subject: 3Com 3C589 > > > Hi- > > I'm running FreeBSD 4.0-RELEASE with generic kernel > built on my laptop. Error messages are: > > /kernel: ep0: No I/O space?! > pccardd[183]: Driver allocation failed for 3Com > Corporation(3c589) (3 times) > > /etc/rc.conf: > pccard_enable="YES" > network_interfaces="ep0 lo0" > ifconfig_pccard="inet 192.168.1.5 netmask > 255.255.255.0" > defaultrouter="192.168.1.1" > > /etc/pccard.conf > # Generally available IO ports > io 0x240-0x360 > # IRQs > irc 3 10 11 13 15 > memory 0xd4000 96K > > # 3Com Etherlink III 3c589B, 3c589C > card "3Com Corporation" "3C589" > config 0x1 "ep0" ? > insert logger -t pccard:$device -s 3Com > EtherLink > III inserted > insert /etc/pccard_ether $device -link0 link1 > .... > > Anyone has this card working for 4.0 RELEASE? > Thanks!! > > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Messenger - Talk while you surf! It's FREE. > http://im.yahoo.com/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 18:38:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id B197C37B4CF for ; Tue, 17 Oct 2000 18:38:24 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id MAA23136; Wed, 18 Oct 2000 12:38:16 +1100 (EST) Date: Wed, 18 Oct 2000 12:38:16 +1100 From: Nick Slager To: Erich Jenkins Cc: Questions@FreeBSD.ORG Subject: Re: ultra 100 hard drive support Message-ID: <20001018123816.B20513@albury.net.au> References: <8825697C.000ACC53.00@notes.uswc.uswest.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <8825697C.000ACC53.00@notes.uswc.uswest.com>; from emjenki@uswest.com on Tue, Oct 17, 2000 at 07:57:22PM -0500 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Erich Jenkins (emjenki@uswest.com): > I would like to know if the current Stable release of FreeBSD supports > the Ultra100 hard drive interface? I will be installing it on a set of > three servers for 3D modeling and topological analysis soon and need > very fast hard drive access, limited only to the capability of the > systems it is being installed on. 4.1.1-RELEASE and later support ATA-100 controllers. If you really need a fast system, though, I'd go for SCSI. Remember IDE still depends on the host CPU for a lot of work. Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 18:42:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id A1E3437B4E5 for ; Tue, 17 Oct 2000 18:42:28 -0700 (PDT) Received: from hades.hell.gr (patr530-b066.otenet.gr [195.167.121.194]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e9I1foe02206; Wed, 18 Oct 2000 04:41:51 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id e9I1gEC01199; Wed, 18 Oct 2000 04:42:14 +0300 (EEST) Date: Wed, 18 Oct 2000 04:42:14 +0300 From: Giorgos Keramidas To: Chris Browning Cc: freebsd-questions@FreeBSD.ORG Subject: Re: keyboard mapping problem w/ m4 sendmail config? Message-ID: <20001018044214.A985@hades.hell.gr> References: <39ECE2A3.E138EF70@prokyon.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39ECE2A3.E138EF70@prokyon.com>; from brownicm@prokyon.com on Tue, Oct 17, 2000 at 07:37:07PM -0400 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 07:37:07PM -0400, Chris Browning wrote: > I've been trying to configure sendmail (first time) with m4. If I use > one of the included sample .mc files, m4 gives me a clean sendmail.cf, > but when I edit the file, run m4 and then run sendmail -v -bi, I get > this error: Something breaks while you edit the file. Without seeing the actual .mc file you are using, we can only guess :-/ > On using hexedit to examine both my edited .mc file and the > sendmail.cf it produces, I see 0A's (backspaces) instead of 0C's > (newlines). Which makes "sense" given the errors I see. Any idea > what's up here? I'd rather be asking sendmail questions. Err, 0A is not backspace AFAIK, but newline :-) Can you post your sendmail.mc file? Please. -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 19: 2:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id E87EE37B4C5 for ; Tue, 17 Oct 2000 19:02:40 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id wuoraaaa for ; Wed, 18 Oct 2000 13:06:57 +1000 Message-ID: <39ED04E5.A8F0DEE@quake.com.au> Date: Wed, 18 Oct 2000 12:03:17 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Nick Slager Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards References: <39EC4CC4.BB576E22@quake.com.au> <20001018095911.D91516@albury.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nick Slager wrote: > > Thus spake Kal Torak (kaltorak@quake.com.au): > > > I was wondering if anyone knows of some good guides to setting > > up FreeBSD to use PC-Cards like Ethernet and that... > > Just using the base PC-Card stuff that comes with FreeBSD, not > > all that PAO dist stuff... > > I am having trouble getting it working, just need a guide that > > explains what steps are needed.. > > First, make sure your card is supported. A good place to start for that > is the release notes: http://www.freebsd.org/releases/4.1.1R/notes.html > > Make sure pccardd is running. Set pccard_enable="YES" in /etc/rc.conf, > or use /stand/sysinstall. > > If your card is supported, at this stage there's a good chance things > will "just work". > > Further than that, some specific details would be required. Post them > here or to freebsd-mobile@freebsd.org. > > Nick Ok, well I am using 4.0 on an IBM Thinkpad I series 2611, the pc-card is a D-Link DFE-650... But thats not the prob, I havent actually got to trying to use the pc-card... This is what I have tried, I installed from the cd, making sure to put two pc-card slots in on the kernel config thing, then from the console started pccardd, it said there was no config file, so I copied pccard.conf.sample to the right place so there was one... Then when starting pccardd is said something like no pc-card slots found... After that I decided to compile a new kernel, I put in two pc-card devices, still no go, I fiddled around with the interrupts and memory ranges, but nothing makes it work... I am figuring I have missed something, or am going about it the wrong way... Thanks! Kal. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 19:24: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.lig.bellsouth.net (mail1.lig.bellsouth.net [205.152.0.55]) by hub.freebsd.org (Postfix) with ESMTP id 7949B37B4E5 for ; Tue, 17 Oct 2000 19:23:59 -0700 (PDT) Received: from prokyon.com (adsl-61-148-46.int.bellsouth.net [208.61.148.46]) by mail1.lig.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id WAA02879; Tue, 17 Oct 2000 22:27:48 -0400 (EDT) Message-ID: <39ED096C.ED0B9122@prokyon.com> Date: Tue, 17 Oct 2000 22:22:36 -0400 From: Chris Browning X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Giorgos Keramidas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: keyboard mapping problem w/ m4 sendmail config? References: <39ECE2A3.E138EF70@prokyon.com> <20001018044214.A985@hades.hell.gr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Giorgos Keramidas wrote: > > Something breaks while you edit the file. Without seeing the actual .mc > file you are using, we can only guess :-/ > > > Err, 0A is not backspace AFAIK, but newline :-) I was hoping someone would tell me that. > > Can you post your sendmail.mc file? Please. Indeed. Not much to it: divert(-1) # config1.mc -- what I'm assuming you mean by sendmail.cf # this is just what I named it # # # config1.mc copied from tcpproto.mc 10/17/2k # changed OSTYPE to bsd4.4 # divert(0)dnl VERSIONID(`@(#)tcpproto.mc 8.10 (Berkeley) 5/19/1998') OSTYPE(bsd4.4) FEATURE(nouucp) MAILER(local) MAILER(smtp) And it produces the following as /etc/mail/sendmail.cf VERSIONID(@(#)tcpproto.mc 8.10 (Berkeley) 5/19/1998) OSTYPE(bsd4.4) FEATURE(nouucp) MAILER(local) MAILER(smtp) -- ------------------------ Chris Browning brownicm@prokyon.com ------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 19:24:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from penkovsky.complexsys.net (cn863530-a.newcas1.de.home.com [24.40.15.231]) by hub.freebsd.org (Postfix) with ESMTP id B8D9237B4F9 for ; Tue, 17 Oct 2000 19:24:26 -0700 (PDT) Received: by penkovsky.complexsys.net (Postfix, from userid 500) id 020FA2BD58; Tue, 17 Oct 2000 18:26:13 -0400 (EDT) Received: from penkovsky (localhost [127.0.0.1]) by penkovsky.complexsys.net (Postfix) with ESMTP id 000EE23DC7 for ; Tue, 17 Oct 2000 18:26:13 -0400 (EDT) From: "Philip R. Moyer" Reply-To: prm@complexsys.net To: freebsd-questions@freebsd.org Subject: 4.1.1 and 30 Gig disk, still no dice Date: Tue, 17 Oct 2000 18:26:08 -0400 Message-Id: <20001017222613.020FA2BD58@penkovsky.complexsys.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think I might be out of luck running 4.1.1 on my system. I have an 8 Gig IDE disk as the primary master, and a 30 Gig Western Digital as the primary slave. The system is running RedHat 7.0 right now. When the 4.1.1 install disk boots up, it reads the second drive as a 2.0 Gig drive (4094/16/63). I tried manually resetting the drive geometry in fdisk, but as soon as I create a slice, the geometry entry at the top of the screen reverts to a 2 Gig disk, with geometry 255/255/63 (or perhaps it's 259/255/63, but this is close). I read in one of the on-line FAQs that recomputing the drive geometry may work better, so I used the formula and came up with 3739/255/63. When I tried that, I had the same results (drive geometry reverts back to 2 Gig). When I first installed RedHat on this system, I had to remove the drive entry from the BIOS to make RH ignore the default geometry. This worked fine. I twiddled the various settings for this drive, in the BIOS, and had no better luck. The fdisk behavior remained unchanged. The settings I tried were none, auto, and manual (with LBA both enabled and disabled). Finally, another of the online FAQs suggested recreating the partition table with a DOS entry. Under RH, then, I created a 20 Meg DOS partition. Still no luck. Obviously, I'm doing something stupid, because all the mail I've gotten says, to paraphrase, "yep, works like a charm." :-| Has anyone run across similar problems? How did you solve them? Cheers, Phil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 19:50:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wondermutt.net (host75-157.student.udel.edu [128.175.75.157]) by hub.freebsd.org (Postfix) with ESMTP id B750037B4F9 for ; Tue, 17 Oct 2000 19:50:35 -0700 (PDT) Received: from morgaine.udel.edu (morgaine.wondermutt.net [192.168.1.2]) by wondermutt.net (8.11.1/8.11.1) with ESMTP id e9I2ptB21554 for ; Tue, 17 Oct 2000 22:51:56 -0400 (EDT) (envelope-from papalia@udel.edu) Message-Id: <4.3.2.7.2.20001017224042.00ad54a0@mail.udel.edu> X-Sender: papalia@mail.udel.edu X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Tue, 17 Oct 2000 22:48:36 -0400 To: freebsd-questions@freebsd.org From: John Subject: Odd (to me) error 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 Hey all, I did something apparently extremely silly and got a really odd error message. Scenario: - Running in screen - SU'd to root - issued: `egrep "irpd" /' Results: I got BOATLOADS of the error message: merlin /kernel: swap_pager_getswapspace: failed It repeats... oh... 10k times + until the REALLY odd message shows up: 'Suddenly the Dungeon collapses!! - You die...' Um... what does that mean, other than the fact that all my processes died and dumped me out of screen? Is that a screen error? Thanks in advance, John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:11: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-ether.rz.uni-ulm.de [134.60.1.36]) by hub.freebsd.org (Postfix) with ESMTP id 0686037B4D7 for ; Tue, 17 Oct 2000 20:11:01 -0700 (PDT) Received: from lilith (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with SMTP id FAA16056; Wed, 18 Oct 2000 05:10:44 +0200 (MEST) Message-ID: <002001c038b1$01a60c00$4011a8c0@wohnheim.uniulm.de> From: "Siegbert Baude" To: "Christian Burger" , References: <20001017112419.A9052@raxel.com> Subject: Re: mount_ext2fs problem Date: Wed, 18 Oct 2000 05:10:45 +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 Hi Christian, > I'm trying to mount my 2nd partition(ext2) on my primary hard drive. I get the following error: > > # mount_ext2fs /dev/ad0b /mnt/debian/ > mount_ext2fs: vfsload(ext2fs): No such file or directory Your second partition is /dev/ad0s2 not ad0b :-) Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:17:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ux5.cso.uiuc.edu (ux5.cso.uiuc.edu [128.174.5.45]) by hub.freebsd.org (Postfix) with ESMTP id 053E337B4CF for ; Tue, 17 Oct 2000 20:17:19 -0700 (PDT) Received: from sanjuro (isr5869.urh.uiuc.edu [130.126.211.101]) by ux5.cso.uiuc.edu (8.10.1/8.10.1) with SMTP id e9I3HHY16385 for ; Tue, 17 Oct 2000 22:17:17 -0500 (CDT) Message-ID: <000801c038b2$5b059300$65d37e82@sanjuro> From: "Ian Fricker" To: Subject: Geforce 2 Date: Tue, 17 Oct 2000 22:20:24 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C03888.71CDE300" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C03888.71CDE300 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I recently installed freebsd. I have a Creative Labs 3D Annihilator 2 = with Nvidia's GeForce 2 chipset. It isn't supported, and I was wondering = if you knew if there were bsd drivers for my card and where I can get = them. I've looked several places on the web and haven't been able to = find any, but maybe I'm overlooking something. If you need any more = info, let me know. Thanks. Ian ------=_NextPart_000_0005_01C03888.71CDE300 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
I recently installed freebsd. I have a = Creative=20 Labs 3D Annihilator 2 with Nvidia's GeForce 2 chipset. It isn't = supported, and I=20 was wondering if you knew if there were bsd drivers for my card and = where I can=20 get them. I've looked several places on the web and haven't been able to = find=20 any, but maybe I'm overlooking something. If you need any more info, let = me=20 know. Thanks.
Ian
------=_NextPart_000_0005_01C03888.71CDE300-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:18:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id E2D5937B4CF for ; Tue, 17 Oct 2000 20:18:07 -0700 (PDT) Received: from MAILER-DAEMON@smtp.tznet.com ([205.216.111.34]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 2968500; Tue, 17 Oct 2000 22:18:04 -0500 Received: (qmail 1006 invoked by uid 1001); 18 Oct 2000 03:23:51 -0000 Date: Tue, 17 Oct 2000 22:23:51 -0500 From: Michael Urban To: John Cc: freebsd-questions@freebsd.org Subject: Re: Odd (to me) error Message-ID: <20001017222351.A975@tznet.com> References: <4.3.2.7.2.20001017224042.00ad54a0@mail.udel.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <4.3.2.7.2.20001017224042.00ad54a0@mail.udel.edu>; from papalia@udel.edu on Tue, Oct 17, 2000 at 10:48:36PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, as for the first part, I am going to take an educated guess that it means either you ran out of swap space, or the pager was trying to get something out of swap that it thought should be there, and couldn't get it for some reason. As far the "Suddenly the Dungeon collapses!! - You die..." message... Well, That is one I have to say I have never seen before. But UNIX has sort of a tradition of humourous error messages. Ones I have seen include "lp on fire" when a printer is returning an error code that UNIX thinks is invalid, and "You don't exist. Go away!" when certain things attempt to happen as a UID that does not really exist. On Tue, Oct 17, 2000 at 10:48:36PM -0400, John wrote: > Hey all, > > I did something apparently extremely silly and got a really odd error message. > > Scenario: > - Running in screen > - SU'd to root > - issued: `egrep "irpd" /' > > Results: > I got BOATLOADS of the error message: > merlin /kernel: swap_pager_getswapspace: failed > It repeats... oh... 10k times + until the REALLY odd message shows up: > > 'Suddenly the Dungeon collapses!! - You die...' > > Um... what does that mean, other than the fact that all my processes died > and dumped me out of screen? Is that a screen error? > > Thanks in advance, > John > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:27:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id AA22A37B4C5 for ; Tue, 17 Oct 2000 20:27:19 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id OAA38039; Wed, 18 Oct 2000 14:27:17 +1100 (EST) Date: Wed, 18 Oct 2000 14:27:17 +1100 From: Nick Slager To: Kal Torak Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards Message-ID: <20001018142717.A25002@albury.net.au> References: <39EC4CC4.BB576E22@quake.com.au> <20001018095911.D91516@albury.net.au> <39ED04E5.A8F0DEE@quake.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39ED04E5.A8F0DEE@quake.com.au>; from kaltorak@quake.com.au on Wed, Oct 18, 2000 at 12:03:17PM +1000 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Kal Torak (kaltorak@quake.com.au): > Ok, well I am using 4.0 on an IBM Thinkpad I series 2611, > the pc-card is a D-Link DFE-650... But thats not the prob, > I havent actually got to trying to use the pc-card... > > This is what I have tried, I installed from the cd, making > sure to put two pc-card slots in on the kernel config thing, > then from the console started pccardd, it said there was no > config file, so I copied pccard.conf.sample to the right > place so there was one... Then when starting pccardd is > said something like no pc-card slots found... The GENERIC kernel has the pc card devices. Are you sure your PC-Card controller is supported by FreeBSD? What's the brand/model of your controller? Is it able to function in non-cardbus mode? Do your BIOS settings match the software configuration? dmesg output would be useful. Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:28: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from n5ial.gnt.com (n5ial.gnt.com [204.49.69.6]) by hub.freebsd.org (Postfix) with ESMTP id 7CC3E37B479 for ; Tue, 17 Oct 2000 20:27:56 -0700 (PDT) Received: (from jim@localhost) by n5ial.gnt.com (8.7.5/8.7.3) id WAA31348 for freebsd-questions@FreeBSD.ORG; Tue, 17 Oct 2000 22:25:14 -0500 Date: Tue, 17 Oct 2000 22:25:14 -0500 From: Jim Graham To: freebsd-questions@FreeBSD.ORG Subject: HP DeskJet 612C ... any suggestions on drivers? Message-ID: <20001017222514.A31228@n5ial.gnt.net> Mail-Followup-To: freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i X-PGP: see http://www.gnt.net/~n5ial for PGP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm looking at moving more and more stuff from my old (and, due to hardware problems that I've already identified, highly unreliable) Linux system to my new FreeBSD system, and have a question..... Up to this point, I've been using GhostScript to drive my HP DeskJet 612C printer. This works for 99% of what I want, but when I want to use the "photo" quality[1] print cartridge, so far I've had to use a Windoze laptop to drive the printer. Does anyone have any suggestions for getting better results? I'm using GS 5.10 now, so if a newer version has better drivers (i.e., drivers that support the "photo" quality print cartridge on the 612C), that would do nicely. Otherwise, does anyone know of any better drivers that exist for FreeBSD? On a related topic, does anyone have any suggestions for low-cost (i.e., less than $300 or so---I'm *NOT* in the market for a $6000 Kodak printer that costs $3/page to print on) true photo quality printers that can be driven directly from FreeBSD? Thanks, --jim [1] What HP calls photo quality, anyways...it isn't. I'll no doubt be upgrading my printer before long.... -- 73 DE N5IAL (/4) | Another good rule to follow: jim@n5ial.gnt.net | Do not try to implement solutions that ICBM / Hurricane: | do not work. 30.39735N 86.60439W | -- Thomas Ptacek in comp.security.unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:31: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-ether.rz.uni-ulm.de [134.60.1.36]) by hub.freebsd.org (Postfix) with ESMTP id 4D3F337B4C5 for ; Tue, 17 Oct 2000 20:30:58 -0700 (PDT) Received: from lilith (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with SMTP id FAA17300; Wed, 18 Oct 2000 05:30:57 +0200 (MEST) Message-ID: <008801c038b3$d49af380$4011a8c0@wohnheim.uniulm.de> From: "Siegbert Baude" To: Cc: "Christian Burger" Subject: Fw: mount_ext2fs problem Date: Wed, 18 Oct 2000 05:30:58 +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 ----- Original Message ----- From: mike johnson To: Siegbert Baude Sent: Wednesday, October 18, 2000 5:27 AM Subject: Re: mount_ext2fs problem > > > and you dont have ext2 support in the kernel > you need > > options EXT2FS > > On Wed, 18 Oct 2000, Siegbert Baude wrote: > > Date: Wed, 18 Oct 2000 05:10:45 +0200 > > To: "Christian Burger" , > > From: "Siegbert Baude" > > Subject: Re: mount_ext2fs problem > > > > Hi Christian, > > > > > I'm trying to mount my 2nd partition(ext2) on my primary hard drive. I > > get > > the following error: > > > > > > # mount_ext2fs /dev/ad0b /mnt/debian/ > > > mount_ext2fs: vfsload(ext2fs): No such file or directory > > > > > > Your second partition is /dev/ad0s2 not ad0b :-) > > > > Ciao > > Siegbert > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:32:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ruby.he.net (ruby.he.net [216.218.187.2]) by hub.freebsd.org (Postfix) with ESMTP id B8F5D37B4CF for ; Tue, 17 Oct 2000 20:32:27 -0700 (PDT) Received: from corten5.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by ruby.he.net (8.8.6/8.8.2) with ESMTP id UAA29507; Tue, 17 Oct 2000 20:32:22 -0700 Date: Tue, 17 Oct 2000 20:29:48 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten5 To: "Andresen,Jason R." Cc: FBSD Subject: Re: Soundblaster_16 and FreeBSD-4.1 ? In-Reply-To: <39ECC1AD.F0554D4B@mitre.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Tue, 17 Oct 2000 it looks like Andresen,Jason R. composed: AR-->Soundblaster 16s play music and sound effects just fine in every AR-->version of FreeBSD I've ever used. In FreeBSD 4.x you need to crank AR-->the volume up a lot higher than you used to (I usually put vol, pcm, AR-->and ogain at 100 and leave my speakers in the middle position). AR--> AR-->Full duplex mode doesn't work in 4.0, but it supposedly works in AR-->4-CURRENT. Full duplex mode works fine in 3.x. Note that the SB16 AR-->has a design deficency that really makes it more like 3/4 duplex. AR--> AR-->To use the soundcard, you have to recompile a kernel (4.x) with: AR-->device pcm AR-->device sbc AR-->If you have an old ISA non-pnp version, you will also have to include AR-->the IO port, IRQs, and DMAs (see LINT). AR--> Thanks Jason, The file did specify the device as sbc0 with the recommended params. I'm at home now and will go back to work tomorrow and take a try at it. Thanks again. -- Bill Schoolcraft http://wiliweld.com PO Box 210076 San Francisco, CA 94121 " saevis tranquillus in undis " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:34: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by hub.freebsd.org (Postfix) with ESMTP id 0616E37B4D7 for ; Tue, 17 Oct 2000 20:33:59 -0700 (PDT) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.0/8.11.0) with SMTP id e9I3Xef20734; Tue, 17 Oct 2000 23:33:45 -0400 (EDT) From: Mike Tancsa To: Kahn@deadbbs.com ("Erin") Cc: questions@freebsd.org Subject: Re: Adding an IP alias without a reboot. Date: Tue, 17 Oct 2000 23:33:40 -0400 Message-ID: References: In-Reply-To: X-Mailer: Forte Agent 1.8/32.548 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 17 Oct 2000 14:20:46 -0400, in sentex.lists.freebsd.questions you = wrote: >I have a production machine whos IP is going to change. I have to add an >aliased IP to it for a while from a completely different subnet then by = the >middle of next month have everything changed over (i.e. defaultrouter, = dns >servers, etc.). I'd like to do this with out rebooting the machine if >possable. lets say its fxp0, old address is 192.168.1.1/24, new address is 172.16.20.1/25 ifconfig fxp0 172.16.20.1 netmask 255.255.255.128 alias later.... ifconfig fxp0 172.16.20.1 netmask 255.255.255.128 -alias ifconfig fxp0 192.168.1.1 netmask 255.255.255.0 -delete arp -da route delete 192.168.1.0/24 ifconfig fxp0 172.16.20.1 netmask 255.255.255.128 ---Mike Mike Tancsa (mdtancsa@sentex.net) =09 Sentex Communications Corp, =09 Waterloo, Ontario, Canada "Given enough time, 100 monkeys on 100 routers=20 could setup a national IP network." (KDW2) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:35:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from prserv.net (out1.prserv.net [32.97.166.31]) by hub.freebsd.org (Postfix) with ESMTP id 69B7137B4D7 for ; Tue, 17 Oct 2000 20:35:31 -0700 (PDT) Received: from hydrogen.vehrs.org ([32.101.252.212]) by prserv.net (out1) with ESMTP id <2000101803352825201gcquce>; Wed, 18 Oct 2000 03:35:29 +0000 Received: (from jwvehrs@localhost) by hydrogen.vehrs.org (8.11.0/8.11.0) id e9I3YIF62947; Tue, 17 Oct 2000 22:34:18 -0500 (CDT) (envelope-from jwvehrs) Date: Tue, 17 Oct 2000 22:33:31 -0500 From: Jeffrey Vehrs To: iago Cc: freebsd-questions@freebsd.org Subject: Re: laptops Message-ID: <20001017223331.B62572@hydrogen.vehrs.org> References: <001201c03838$185c9aa0$0200a8c0@ryan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001201c03838$185c9aa0$0200a8c0@ryan>; from rnera@optushome.com.au on Tue, Oct 17, 2000 at 10:45:13PM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've install FreeBSD on three different laptops. o Thinkpad 560 - installed 2.2.6 via ftp, plip - use Megahertz modems(28.8 & 33.6) - install PAO to use pccard stuff - X server running in 800x600(max) o Thinkpad 600 - installed 3.x & 4.x via CDROM, ftp - use Megahertz modems(33.6 & 56k) - one annoying problem with ppp on 3.x that kept lose the connection - sound works using pcm0 even though xmms doesn't work good - X server running in 1024x768(max) - integrated modem(v.90) is no good(of course, it's winmodem) o Dell Latitude CSx - installed 3.x & 4.x via CDROM - diffcult to configure pccard due to irq conflicts - use Megahertz modem(56k only) - sound works using pcm0 even though xmms doesn't work good - X server running in 1152x864(max)(had to add NM2200 for video card or you'll be stuck in 800x600!) I never try network card becuase at my work, there is only token-ring setup. :( I'm sure ethernet cards work well as long as it's supported in the hardware list. Good luck! On Tue, Oct 17, 2000 at 10:45:13PM +1000, iago wrote: > > HI everyone > > looking into getting a laptop > > i will most likelt dual boot betweem MS and FreeBSD, to that end... what > laptops are people using with FreeBSD these days? > > are they running well ... X also working fine? > > thanks > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:41:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 8750537B4D7 for ; Tue, 17 Oct 2000 20:41:49 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id OAA40015; Wed, 18 Oct 2000 14:41:40 +1100 (EST) Date: Wed, 18 Oct 2000 14:41:40 +1100 From: Nick Slager To: Ian Fricker Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Geforce 2 Message-ID: <20001018144140.B25002@albury.net.au> References: <000801c038b2$5b059300$65d37e82@sanjuro> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000801c038b2$5b059300$65d37e82@sanjuro>; from ifricker@uiuc.edu on Tue, Oct 17, 2000 at 10:20:24PM -0500 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Ian Fricker (ifricker@uiuc.edu): > I recently installed freebsd. I have a Creative Labs 3D Annihilator 2 > with Nvidia's GeForce 2 chipset. It isn't supported, and I was wondering > if you knew if there were bsd drivers for my card and where I can get > them. I've looked several places on the web and haven't been able to > find any, but maybe I'm overlooking something. If you need any more > info, let me know. Thanks. Please wrap your lines at ~70 characters. There's actually no such thing as BSD drivers for video cards; all graphics card drivers are part of XFree86. The best place to start searching for compatible cards is at http://www.xfree86.org/4.0.1/Status.html. Bear in mind that nVidia have traditionally been less than helpful in opening up the specs of their cards, so open source drivers may be hard to come by. There's a couple of commerical X servers mentioned at http://www.freebsd.org/FAQ/x.html#AEN3014 which might help. Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 20:54:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from diarmadhi.mushhaven.net (diarmadhi.mushhaven.net [63.75.111.197]) by hub.freebsd.org (Postfix) with ESMTP id 3158137B65E for ; Tue, 17 Oct 2000 20:54:16 -0700 (PDT) Received: (from mistwolf@localhost) by diarmadhi.mushhaven.net (8.9.3/8.9.3) id UAA66708; Tue, 17 Oct 2000 20:56:32 -0700 (PDT) (envelope-from mistwolf) Date: Tue, 17 Oct 2000 20:56:32 -0700 From: Jamie Norwood To: Michael Urban Cc: John , freebsd-questions@FreeBSD.ORG Subject: Re: Odd (to me) error Message-ID: <20001017205632.A66642@mushhaven.net> References: <4.3.2.7.2.20001017224042.00ad54a0@mail.udel.edu> <20001017222351.A975@tznet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <20001017222351.A975@tznet.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The screen message you got is because the port compiles to use the Nethack-style error messages. It can be configured not to if you look through the config files. Jamie On Tue, Oct 17, 2000 at 10:23:51PM -0500, Michael Urban wrote: > Well, as for the first part, I am going to take an educated guess that it > means either you ran out of swap space, or the pager was trying to get > something out of swap that it thought should be there, and couldn't get it > for some reason. > > As far the "Suddenly the Dungeon collapses!! - You die..." message... Well, > That is one I have to say I have never seen before. But UNIX has sort of a > tradition of humourous error messages. Ones I have seen include "lp on fire" > when a printer is returning an error code that UNIX thinks is invalid, and > "You don't exist. Go away!" when certain things attempt to happen as a UID > that does not really exist. > > On Tue, Oct 17, 2000 at 10:48:36PM -0400, John wrote: > > Hey all, > > > > I did something apparently extremely silly and got a really odd error message. > > > > Scenario: > > - Running in screen > > - SU'd to root > > - issued: `egrep "irpd" /' > > > > Results: > > I got BOATLOADS of the error message: > > merlin /kernel: swap_pager_getswapspace: failed > > It repeats... oh... 10k times + until the REALLY odd message shows up: > > > > 'Suddenly the Dungeon collapses!! - You die...' > > > > Um... what does that mean, other than the fact that all my processes died > > and dumped me out of screen? Is that a screen error? > > > > Thanks in advance, > > John > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 21:15: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from outmail3.pacificnet.net (outmail3.pacificnet.net [207.171.0.14]) by hub.freebsd.org (Postfix) with ESMTP id 3B21337B4D7 for ; Tue, 17 Oct 2000 21:14:59 -0700 (PDT) Received: from beelzebub.inside.killermartian.com (usr3-20.pacificnet.net [207.171.38.149]) by outmail3.pacificnet.net (8.9.3/8.9.3) with ESMTP id VAA13420 for ; Tue, 17 Oct 2000 21:14:38 -0700 (PDT) Date: Tue, 17 Oct 2000 21:14:58 -0700 (PDT) From: Stephen Krauth X-Sender: stephenk@beelzebub.inside.killermartian.com To: freebsd-questions@freebsd.org Subject: PCI sound cards under 4.1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anybody have a suggestion for one that works, all the time? I need to return the SB Live! that FreeBSD simply hates, so what should I replace it with? Thanks! Steve K. U.F.O. - "For the feeler gauge in you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 21:52: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail3.sdc1.sfba.home.com (femail3.sdc1.sfba.home.com [24.0.95.83]) by hub.freebsd.org (Postfix) with ESMTP id 831B137B479 for ; Tue, 17 Oct 2000 21:52:02 -0700 (PDT) Received: from c1130043a ([24.176.115.9]) by femail3.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001018045105.DZZV26554.femail3.sdc1.sfba.home.com@c1130043a> for ; Tue, 17 Oct 2000 21:51:05 -0700 Message-ID: <000801c038bf$0f364de0$0973b018@sttls1.wa.home.com> From: "Tom Kocir" To: Subject: gnats Date: Tue, 17 Oct 2000 21:51:20 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C03884.62480720" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C03884.62480720 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable trying to find out simple things about real gnats but you assholes get = in the way with your fucked up electronic web sites this sucks a big = dick. ------=_NextPart_000_0005_01C03884.62480720 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
trying to find out simple things about = real gnats=20 but you assholes get in the way with your fucked up electronic  web = sites=20 this sucks a big dick.
------=_NextPart_000_0005_01C03884.62480720-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 21:54:34 2000 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 0AB3837B479 for ; Tue, 17 Oct 2000 21:54:33 -0700 (PDT) Received: from rac1.wam.umd.edu (IDENT:root@rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id AAA22106; Wed, 18 Oct 2000 00:54:26 -0400 (EDT) Received: from rac1.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id AAA01511; Wed, 18 Oct 2000 00:54:26 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id AAA01507; Wed, 18 Oct 2000 00:54:25 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Wed, 18 Oct 2000 00:54:25 -0400 (EDT) From: Kenneth Wayne Culver To: Ian Fricker Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Geforce 2 In-Reply-To: <000801c038b2$5b059300$65d37e82@sanjuro> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That's odd, I'm using a Geforce II mx card right now, and 2d works fine... I had to use XFree86's CVS version, but 2d works. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Tue, 17 Oct 2000, Ian Fricker wrote: > Hello, > I recently installed freebsd. I have a Creative Labs 3D Annihilator 2 with Nvidia's GeForce 2 chipset. It isn't supported, and I was wondering if you knew if there were bsd drivers for my card and where I can get them. I've looked several places on the web and haven't been able to find any, but maybe I'm overlooking something. If you need any more info, let me know. Thanks. > Ian > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 22:26:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web1705.mail.yahoo.com (web1705.mail.yahoo.com [128.11.23.216]) by hub.freebsd.org (Postfix) with SMTP id 5011637B4CF for ; Tue, 17 Oct 2000 22:26:38 -0700 (PDT) Received: (qmail 23854 invoked by uid 60001); 18 Oct 2000 05:26:37 -0000 Message-ID: <20001018052637.23853.qmail@web1705.mail.yahoo.com> Received: from [202.101.165.61] by web1705.mail.yahoo.com; Tue, 17 Oct 2000 22:26:37 PDT Date: Tue, 17 Oct 2000 22:26:37 -0700 (PDT) From: Yifeng Xu Subject: what is accf_http.ko? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have freshly installed FreeBSD 4.1.1, and found there is a kernel module accf_http.ko in /modules, what is it? Regards, XuYifeng __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 22:36:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4406.mail.yahoo.com (web4406.mail.yahoo.com [216.115.105.37]) by hub.freebsd.org (Postfix) with SMTP id 921A337B4C5 for ; Tue, 17 Oct 2000 22:36:11 -0700 (PDT) Message-ID: <20001018053611.5929.qmail@web4406.mail.yahoo.com> Received: from [208.142.142.202] by web4406.mail.yahoo.com; Tue, 17 Oct 2000 22:36:10 PDT Date: Tue, 17 Oct 2000 22:36:10 -0700 (PDT) From: Mark Demonteverde Subject: my server crashed 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 I think my server crashed, it dislplays "THE FOLLOWING FILE SYSTEM HAD AN UNEXPECTED INCONSISTENCY: /dev/vinum/rexport (/mnt/export) Enter full pathname of shell or return for /bin/sh:, and when I run fsck it displays cannot read from Block 16, and my pathname now is "[\u@\h \w]$", by the way I'm using Freebsd 3.5.1 version and this server is an email server. what should I do? thanks mark __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 23:13:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from isy.liu.se (isy.liu.se [130.236.48.10]) by hub.freebsd.org (Postfix) with ESMTP id 38D7E37B4C5 for ; Tue, 17 Oct 2000 23:13:25 -0700 (PDT) Received: from lagrange.isy.liu.se (lagrange.isy.liu.se [130.236.49.127]) by isy.liu.se (8.10.0/8.10.0) with ESMTP id e9I6DFn27518; Wed, 18 Oct 2000 08:13:15 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20001017175658.E89971@poeza.iconnect.co.ke> Date: Wed, 18 Oct 2000 08:13:14 +0200 (CEST) From: Micke Josefsson To: Odhiambo Washington Subject: Re: Defragmentation Cc: FBSD-Q Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17-Oct-00 Odhiambo Washington wrote: > * Micke Josefsson [20001017 17:21]: > => > =>On 17-Oct-00 Daniel Bye wrote: > =>> As far as I know, there are no defragmentation agents for FreeBSD (or most > =>> other *NICES). Therefore, you would have to rebuild your file systems. > =>> Take a tape backup of the entire system (this is sequential, so disk > =>> fragmentation is not an issue), rebuild your disk slice/partition setup, > and > =>> then restore the backed up file systems from the tape. > > Now that is where the dilemna is..my box has no tape drive! But I have a > tape of 10GB and there is another FBSD box near me which has the tape > drive. I've heard about amanda and some network backup applications but I > think I may be able to backup but not restore....what is the procedure > when the tape drive is not on the box?? Something like this works for me: dump -0aub 64 -f vanheden:/dev/nrsa0 / dump -0aub 64 -f vanheden:/dev/nrsa0 /usr dump -0aub 64 -f vanheden:/dev/rsa0 /var (this way it'll rewind when done) authentication is through rsh, which maybe is dangerous for you? Variations on that theme e.g. tar -c -v -p -f - -b 20 directory | ssh -c arcfour vanheden dd \ of=/dev/rmt/0n obs=20b should do just as well I imagine. Try not to use a too computer intensive encipherment though. Anyway man dump and man restore is prolly what you want. /M ---------------------------------- Michael Josefsson, MSEE mj@isy.liu.se This message was sent by XFMail running on FreeBSD 3.5-STABLE ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 23:16:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id CA21437B657 for ; Tue, 17 Oct 2000 23:16:44 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id RAA62592; Wed, 18 Oct 2000 17:16:39 +1100 (EST) Date: Wed, 18 Oct 2000 17:16:38 +1100 From: Nick Slager To: Yifeng Xu Cc: freebsd-questions@FreeBSD.ORG Subject: Re: what is accf_http.ko? Message-ID: <20001018171638.A59824@albury.net.au> References: <20001018052637.23853.qmail@web1705.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001018052637.23853.qmail@web1705.mail.yahoo.com>; from websoft@yahoo.com on Tue, Oct 17, 2000 at 10:26:37PM -0700 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Yifeng Xu (websoft@yahoo.com): > Hi, > > I have freshly installed FreeBSD 4.1.1, and found > there is a kernel module accf_http.ko in /modules, > what is it? The HTTP accept filter module. There's details in the accept_filter(9) manpage. Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 23:18:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from MIT.EDU (SOUTH-STATION-ANNEX.MIT.EDU [18.72.1.2]) by hub.freebsd.org (Postfix) with SMTP id 8502737B4E5 for ; Tue, 17 Oct 2000 23:18:54 -0700 (PDT) Received: from GRAND-CENTRAL-STATION.MIT.EDU by MIT.EDU with SMTP id AA16238; Wed, 18 Oct 00 02:18:41 EDT Received: from melbourne-city-street.MIT.EDU (MELBOURNE-CITY-STREET.MIT.EDU [18.69.0.45]) by grand-central-station.MIT.EDU (8.9.2/8.9.2) with ESMTP id CAA25628 for ; Wed, 18 Oct 2000 02:18:52 -0400 (EDT) Received: from biohazard-cafe.mit.edu (BIOHAZARD-CAFE.MIT.EDU [18.184.0.31]) by melbourne-city-street.MIT.EDU (8.9.3/8.9.2) with ESMTP id CAA20981 for ; Wed, 18 Oct 2000 02:18:51 -0400 (EDT) Received: (from slyph@localhost) by biohazard-cafe.mit.edu (8.9.3) id CAA04177; Wed, 18 Oct 2000 02:18:51 -0400 (EDT) Message-Id: <200010180618.CAA04177@biohazard-cafe.mit.edu> To: freebsd-questions@FreeBSD.ORG Subject: Static NAT mappings on internal net Date: Wed, 18 Oct 2000 02:18:51 -0400 From: Michael L Artz Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have successfully set up natd and ipfw on my FreeBSD4.0 gateway box, using unrouteable addresses for my internal network. I had a couple of extra IPs, so I set up a couple of static mapppings (using the -redirect_address flag to natd) to my internal machines. Everything works fine from outside of the network, however when I try and access one of the statically mapped machines from inside the network by its "outside" ip, I end up trying to connect to the gateway, e.g. the gateway does not seem to perform nat translation on packets coming from the internal network. To be a little more concrete, I am on a class-c network and have several IPs of the form 1.2.3.*. I use 1.2.3.200 as the IP of the external interface on my FreeBSD box, and use 192.168.0.1 for the internal interface. All of the internal machines then use addresses from the 192.168.0.* range. I statically mapped 1.2.3.201 on the outside to 192.168.0.2 on the inside, by first aliasing 1.2.3.201 to my FreeBSD external interface, and then using the flag -redirect_address 192.168.0.2 1.2.3.201. When I connect from the outside world to 1.2.3.201, I am successfully redirected to 192.168.0.2 on the inside of the network. However, when I try and connect to 1.2.3.201 from inside the network, I get the FreeBSD gateway machine. Is there any way around this problem, or should I solve this by setting up a decent DNS and not using IPs? -Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 23:31:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.visi.com (baal.visi.com [209.98.98.3]) by hub.freebsd.org (Postfix) with ESMTP id 78ED237B4E5 for ; Tue, 17 Oct 2000 23:31:52 -0700 (PDT) Received: from localhost.visi.com (orpheus.static.visi.com [208.42.12.80]) by mail.visi.com (8.8.8/8.7.5) with ESMTP id BAA25886 for ; Wed, 18 Oct 2000 01:31:41 -0500 (CDT) Posted-Date: Wed, 18 Oct 2000 01:31:41 -0500 (CDT) Received: (from orpheus@localhost) by localhost.visi.com (8.9.3/8.9.3-CONDOLAN) id BAA08501 for questions@freebsd.org; Wed, 18 Oct 2000 01:32:29 -0500 Date: Wed, 18 Oct 2000 01:32:28 -0500 From: Jeffrey Dunitz To: questions@freebsd.org Subject: LaserJet 4L printing difficulty Message-ID: <20001018013228.O1929@lemieux.condolan.asn> Reply-To: orpheus@avalon.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-Blargh: This message is Blargh. (lemieux) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello everyone...perhaps someone can help me with this problem. I have an LJ4L connected locally to the parallel port of a machine running FreeBSD 4.0. I want to be able to print to this machine remotely, particularly from Netscape, but also from lpr (text) on other unix machines on the local net. I've successfully used this printer on a RedHat machine, which would do the right thing, accepting printjobs from unix machines (text and postscript (netscape) ) as well as NT machines via samba. I want to try to move printing services onto my freebsd machine and let the red hat box do...other stuff. So anyway-- I decided to use magicfilter, because I've heard it's very flexible. I installed it from the ports collection. I'm using magicfilter-1.2 and ghostscript-5.50. My printcap looks like this: lp|local line printer:\ :sh:\ :if=/usr/local/libexec/magicfilter/ljet4l-filter:\ :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs: Now, I can print text, both from the local machine and from a remote unix box, and it works fine--no stair-stepping or other problems. However, when I try to print from netscape, one of three things happens: 1) nothing happens, and I get a message in lpd-errs about Oct 18 01:19:01 freebsd lpd[25078]: lp: job could not be printed (cfA730two.mydomain.org) 2) I get this nasty error: /usr/local/libexec/magicfilter/ljet4l-filter: /usr/local/bin/gs -q -dSAFER -dNO PAUSE -r300 -sDEVICE=ljet4 -sOutputFile=- - failed Oct 18 00:26:23 freebsd lpd[23956]: restarted Bus error 3) I get garbage output--a postscript header and infinite blank pages. Which of these occurs depends on where I have the input filter line placed in the printcap file--second line, after the sh: directive, or last line. Anyone have any ideas on what I can look at to solve this problem? This shouldn't be hard... -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Jeffrey Dunitz | *** ENRGi.com *** | orpheus@avalon.net BOFH Emeritus, Avalon Networks | Network Engineer | (651) 686-9974 / http://www.avalon.net/~orpheus | Net/Sec/Dev/Arch | Eagan, MN _ / To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 23:36:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vi.senet.com.au (vi.senet.com.au [203.56.239.223]) by hub.freebsd.org (Postfix) with ESMTP id 9436C37B479 for ; Tue, 17 Oct 2000 23:36:19 -0700 (PDT) Received: from pluto.senet.com.au (pluto.senet.com.au [203.56.239.150]) by vi.senet.com.au (8.9.3/8.9.3) with ESMTP id QAA80052 for ; Wed, 18 Oct 2000 16:06:17 +0930 (CST) (envelope-from llb@senet.com.au) Received: from lyall (c8-p0.senet.com.au [203.56.238.193]) by pluto.senet.com.au (8.9.3/8.9.3) with SMTP id QAA10616 for ; Wed, 18 Oct 2000 16:06:16 +0930 Message-ID: <004a01c038cd$d78bfa20$c1ee38cb@lyall> From: "Lyall Braidwood" To: Subject: Date: Wed, 18 Oct 2000 16:07:09 +0930 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0047_01C0391D.77ADFD60" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0047_01C0391D.77ADFD60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable subscribe FreeBSD-questions ------=_NextPart_000_0047_01C0391D.77ADFD60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
subscribe=20 FreeBSD-questions
------=_NextPart_000_0047_01C0391D.77ADFD60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 17 23:37:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web122.yahoomail.com (web122.mail.yahoo.com [205.180.60.57]) by hub.freebsd.org (Postfix) with SMTP id 9531337B4D7 for ; Tue, 17 Oct 2000 23:37:43 -0700 (PDT) Received: (qmail 6857 invoked by uid 60001); 18 Oct 2000 06:37:43 -0000 Message-ID: <20001018063743.6856.qmail@web122.yahoomail.com> Received: from [24.21.87.62] by web122.yahoomail.com; Tue, 17 Oct 2000 23:37:43 PDT Date: Tue, 17 Oct 2000 23:37:43 -0700 (PDT) From: Chris Dempsey Subject: Re: Geforce 2 To: Ian Fricker Cc: 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 Ian, Join the club of nonsupported GeForce 2 users. Currently, there are XFree86 drivers, but no FreeBSD kernel drivers. You need both. GeForce does work under linux, using drivers available from www.nvidia.com. As of last week, the people at NVidia are "getting to it, but nobody at FreeBSD will help us." I don't know if that is true on the FreeBSD end, but needless to say you are stuck with either the console or using X through linux. It is possible that FreeBSD binaries will be available by mid to late-November. That is the best guess they could give. Chris Dempsey --- Ian Fricker wrote: > Hello, > I recently installed freebsd. I have a Creative Labs > 3D Annihilator 2 with Nvidia's GeForce 2 chipset. It > isn't supported, and I was wondering if you knew if > there were bsd drivers for my card and where I can > get them. I've looked several places on the web and > haven't been able to find any, but maybe I'm > overlooking something. If you need any more info, > let me know. Thanks. > Ian > __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 0: 1:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zeus.dnt.md (dnt.md [195.138.124.37]) by hub.freebsd.org (Postfix) with ESMTP id CE1E037B4CF for ; Wed, 18 Oct 2000 00:01:16 -0700 (PDT) Received: from localhost (vg@localhost) by zeus.dnt.md (8.9.3/8.9.3) with ESMTP id KAA97021 for ; Wed, 18 Oct 2000 10:00:56 +0300 (EEST) (envelope-from vg@zeus.dnt.md) Date: Wed, 18 Oct 2000 10:00:56 +0300 (EEST) From: Vladimir Girnetz To: freebsd-questions@freebsd.org Subject: Alpha SERVER Crash 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 Sorry for my bad english I have an ALPHA server ( 1000A 5/333) with 64RAM, Qlogic ISP 1020 SCSI Adapter, Digital 21140A Fast Ethernet (DEC DE500-AA). On kernel booting there are only one error: isp0: invalid NVRAM header (ff,ff,ff,ff). Manually I added 2 Intel EtherExpress Pro cards, that seems to work fine. FreeBSD is 4.1-RELEASE. But this server crashes some times. Maybe one time in 2-3 days, or 2-3 times per day. This is the error I get: fatal kernel trap: trap entry = 0x2 (memory management fault) a0 = 0x12fe4040168d1b a1 = 0x1 a2 = 0x0 pc = 0xfffffc00004d11a0 ra = 0xfffffc00004cf660 curproc = 0 panic : trap I recompile the kernel and tried more than 3 configurations. This does not solve the problem. Please, help me to solve this. Thanks, Vladimir Girnet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 0:20: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 6B6C837B4C5 for ; Wed, 18 Oct 2000 00:20:05 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id VAA63227; Tue, 17 Oct 2000 21:19:41 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Tue, 17 Oct 2000 21:19:41 -1000 (HST) From: Vincent Poy To: Erin Cc: questions@FreeBSD.ORG Subject: Re: Adding an IP alias without a reboot. In-Reply-To: <004d01c03866$e3edb540$e815820a@sdccd.cc.ca.us> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Oct 2000, Erin wrote: It's pretty easy, let's assume you have a primary ip of 123.123.123.2 and you wanted to add the alias 124.123.123.2, All you have to do is: ifconfig fxp0 inet 124.123.123.2 netmask 255.255.255.0 alias Replace the fxp0 with the ethernet card type you're using... For the DNS, all you have to do is change the /etc/resolv.conf file or basically edit it. As for the default router. Do this in one line. route delete default ; route add default newgatewayip And you can even either delete the primary IP or flip it around as follows later. Make sure everything is on one line separated by the ;'s: ifconfig fxp0 inet 123.123.123.2 delete ; ifconfig fxp0 inet 124.123.123.2 delete ; ifconfig fxp0 inet 124.123.123.2 netmask 255.255.255.0 The above will delete the original primary and replace it with the alias. Then there is the flipping around method as well. ifconfig fxp0 inet 123.123.123.2 delete ; ifconfig fxp0 inet 124.123.123.2 delete ; ifconfig fxp0 inet 124.123.123.2 netmask 255.255.255.0 ; ifconfig fxp0 inet 123.123.123.2 netmask 255.255.255.0 alias Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin > I have a production machine whos IP is going to change. I have to add an > aliased IP to it for a while from a completely different subnet then by the > middle of next month have everything changed over (i.e. defaultrouter, dns > servers, etc.). I'd like to do this with out rebooting the machine if > possable. > > The machine in question is a 3.3-RELEASE and is colocated with very limited > access. > > > Thanks, > > > Erin > > > mailto:kahn@deadbbs.com > http://www.deadbbs.com > http://www.fortenberry.net > > > "Can i dial 1-255-255-255255 and make every phone in the world ring?" > > -- Tanuki > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 0:38:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mss.rdc2.nsw.optushome.com.au (ha1.rdc2.nsw.optushome.com.au [203.164.2.50]) by hub.freebsd.org (Postfix) with ESMTP id 82E9237B4CF for ; Wed, 18 Oct 2000 00:38:39 -0700 (PDT) Received: from powerhouse ([203.164.6.148]) by mss.rdc2.nsw.optushome.com.au (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001018070546.MLGP29783.mss.rdc2.nsw.optushome.com.au@powerhouse> for ; Wed, 18 Oct 2000 18:05:46 +1100 Message-ID: <001201c038da$4d63dc70$0500a8c0@eburwd1.vic.optushome.com.au> From: "Tristan" To: Subject: How Can i MOUNT M$ NTFS Date: Wed, 18 Oct 2000 18:06:21 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000F_01C0392E.1EF2EE90" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000F_01C0392E.1EF2EE90 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable How Can I mount An WinNT NTFS Drive ??? Mount_NTFS Seem to be Network File System=20 ------=_NextPart_000_000F_01C0392E.1EF2EE90 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
How Can I mount An WinNT = NTFS  Drive=20 ???
Mount_NTFS Seem to be Network File = System=20
 
------=_NextPart_000_000F_01C0392E.1EF2EE90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 0:49:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id AEBB837B4CF for ; Wed, 18 Oct 2000 00:49:15 -0700 (PDT) Received: from hyperion.informatik.rwth-aachen.de (hyperion.Informatik.RWTH-Aachen.DE [137.226.112.212]) by nets5.rz.rwth-aachen.de (8.10.1/8.10.1/7) with ESMTP id e9I7nEm20203 for ; Wed, 18 Oct 2000 09:49:14 +0200 (MET DST) Received: from agamemnon.informatik.rwth-aachen.de (agamemnon.Informatik.RWTH-Aachen.DE [137.226.194.74]) by hyperion.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1/2) with ESMTP id JAA12534 for ; Wed, 18 Oct 2000 09:49:11 +0200 (MET DST) Received: (from stolz@localhost) by agamemnon.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1-gb-2) id JAA27009 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 09:49:13 +0200 (MET DST) Date: Wed, 18 Oct 2000 09:49:13 +0200 From: Volker Stolz To: freebsd-questions@freebsd.org Subject: xdm & login.conf Message-ID: <20001018094913.A27003@agamemnon.informatik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i Organization: Chair for CS II, Anomalous Programming Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG xdm doesnīt care about various settings (e.g. /sbin/nologin in /etc/passwd), so doesnīt it about /etc/login.conf, either. IMO the problem is that login never gets invoked. Are there any solutions to getting a "real" login when using xdm? -- Volker Stolz * stolz@i2.informatik.rwth-aachen.de * PGP + S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:19:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 5BBD337B4D7 for ; Wed, 18 Oct 2000 01:19:15 -0700 (PDT) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.9.3/8.9.3) with ESMTP id WAA63688; Tue, 17 Oct 2000 22:19:01 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Tue, 17 Oct 2000 22:19:01 -1000 (HST) From: Vincent Poy To: Len Conrad Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Best DSL Router? In-Reply-To: <5.0.0.25.0.20001016224843.048dd3d0@mail.Go2France.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 Oct 2000, Len Conrad wrote: > > As a followup, please discuss this on the following thread on the > >newsgroups: ba.internet and comp.dcom.xdsl: > > > > >How will this > > >help and is it with all ADSL implementations or only with PacBell since > > >I noticed Cable Modems doesn't exhibit this problem. > > > >Cable modems do exhibit the problem when they are running at an upstream > >cap -- the problem can happen with TCP/IP on *any* asymmetric link. > > ok, cool. The pb is not upstream "robbing" bandwidth from > downstream, (ie, they are truly independent channels/media allowing > full duplex) but bad congestion the slow channel slowing/blocking > tcp/ip protocol responses awaited by the fast channel. I guess maybe if the up channel has slightly more bandwidth, the problem might not be as evident. > > >Also, is ADSL > > >technically full duplex or is it half duplex? > > > >Full duplex. > > ok > > > >From what Netopia and > > >Cisco told me, ADSL is Assynchronous and not Synchronous like the other > > >xDSL implementations. Thanks for any input you can provide. > > > >ADSL is synchronous. > > asymmetric, not asynchronous vbg Hehe, Asynchronous doesn't sound right since I thought only Analog modems used Asynchronous. > > So I guess > > "guess" ? vbg Heh, what does vbg mean? > >you were right that ADSL is Full Duplex but just > >because it's Full Duplex doesn't mean that you will get the advertised > >speeds simultaneously in both directions. > > You were right about the slowdown but wrong about the reason. Yeah, but someone mentioned that traffic shaping can fix the problem. The only problem is how would this work if a Ethernet card has two IP's binded with one of them being dynamic and you only want to traffic shape on the dynamic IP and not the inernal LAN? > And we both learned a few points. Well, I learned one, you learned > more than one, "asymmetric learning", but don't let me slow you down!! LOL Heh... That Assymmetric doesn't mean assymmetric when it comes to Verizon/GTE's Silver ADSL which is 384k/384k or 768k/768k =) > Thanks for the follow through, very helpful. The Paradyne book still > applies and will help build street cred at the next geek cocktail > party, even if Paradyne doesn't lead the market. Heh, it's kinda interesting. Maybe it's PacBell who is doing something on their end for all we know to prevent people from using too much bandwidth. Run a server, say slow down to the downloads! LOL Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:26:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id D871237B4D7 for ; Wed, 18 Oct 2000 01:26:11 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13loWy-000BHz-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 11:25:00 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13loZ7-0001KD-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 11:27:13 +0300 Date: Wed, 18 Oct 2000 11:27:13 +0300 From: Odhiambo Washington To: freebsd-questions@freebsd.org Subject: Re: How Can i MOUNT M$ NTFS Message-ID: <20001018112713.F99856@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-questions@freebsd.org References: <001201c038da$4d63dc70$0500a8c0@eburwd1.vic.optushome.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001201c038da$4d63dc70$0500a8c0@eburwd1.vic.optushome.com.au>; from "Tristan" on Wed, Oct 18, 2000 at 06:06:21PM +1000 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-Location: Mombasa, KE, East Africa Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Tristan [20001018 10:40]: =>How Can I mount An WinNT NTFS Drive ??? =>Mount_NTFS Seem to be Network File System sudo mount_ntfs /dev/da0s1 winnt - this is specific to my system and it works on my FBSD 4.1.1-STABLE. winnt is a mount point in my home directory and I use sudo to do the mount as myself, not as root. -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. All my relationships sunk in stormy weather. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:32:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.rdc2.bc.home.com (mail1.rdc2.bc.home.com [24.2.10.84]) by hub.freebsd.org (Postfix) with ESMTP id 2AB6F37B4C5 for ; Wed, 18 Oct 2000 01:32:32 -0700 (PDT) Received: from cr816685a ([24.113.95.72]) by mail1.rdc2.bc.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001018083231.UYJK20181.mail1.rdc2.bc.home.com@cr816685a> for ; Wed, 18 Oct 2000 01:32:31 -0700 From: "Bennett Hui" To: Subject: how do you close port 587: unknown service? Date: Wed, 18 Oct 2000 01:32:24 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks for the replies on some of the open ports on my webserver, I've closed off all unnecessary ports except for one that no one seems to know what it's used for. I'm not so concerned as to what service runs on it, but more over how to close this port. When I do a portscan on my box, I get the following information: 192.168.1.x :21 ftp 192.168.1.x :22 ssh SSH Remote Login Protocol 192.168.1.x :23 telnet 192.168.1.x :25 smtp mail 192.168.1.x :53 domain nameserver 192.168.1.x :80 www-http World Wide Web HTTP 192.168.1.x :587 unknown service. It would be great if anyone knew what port 587 was used for (it just came with my install of 4.1.1-RELEASE), but more importantly how can I close it off. I suppose the quick and easy way would be to block it off with ipfw, but is there a line in a config file where I can disable this service? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:36:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id 8C93837B4C5 for ; Wed, 18 Oct 2000 01:36:24 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13logw-000BtS-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 11:35:18 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13loj5-0001Me-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 11:37:31 +0300 Date: Wed, 18 Oct 2000 11:37:31 +0300 From: Odhiambo Washington To: freebsd-questions@freebsd.org Subject: Re: how do you close port 587: unknown service? Message-ID: <20001018113730.H99856@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Bennett Hui" on Wed, Oct 18, 2000 at 01:32:24AM -0700 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-Location: Mombasa, KE, East Africa Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Bennett Hui [20001018 11:34]: =>Thanks for the replies on some of the open ports on my webserver, I've =>closed off all unnecessary ports except for one that no one seems to know =>what it's used for. I'm not so concerned as to what service runs on it, but =>more over how to close this port. When I do a portscan on my box, I get the =>following information: => =>192.168.1.x :21 ftp =>192.168.1.x :22 ssh SSH Remote Login Protocol =>192.168.1.x :23 telnet =>192.168.1.x :25 smtp mail =>192.168.1.x :53 domain nameserver =>192.168.1.x :80 www-http World Wide Web HTTP =>192.168.1.x :587 unknown service. => =>It would be great if anyone knew what port 587 was used for (it just came =>with my install of 4.1.1-RELEASE), but more importantly how can I close it =>off. I suppose the quick and easy way would be to block it off with ipfw, =>but is there a line in a config file where I can disable this service? I did not have time to read ALL but I believe the clue is right in front of you in /etc/services ;) HTH -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. The best thing to do with the best things in life is to give them up. -Dorothy Day To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:42:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id 23AA537B4C5 for ; Wed, 18 Oct 2000 01:42:07 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9I8fe909184; Wed, 18 Oct 2000 11:41:40 +0300 (EEST) Date: Wed, 18 Oct 2000 11:41:40 +0300 From: Giorgos Keramidas To: Chris Browning Cc: freebsd-questions@FreeBSD.ORG Subject: Re: keyboard mapping problem w/ m4 sendmail config? Message-ID: <20001018114140.B9003@gray.westgate.gr> References: <39ECE2A3.E138EF70@prokyon.com> <20001018044214.A985@hades.hell.gr> <39ED096C.ED0B9122@prokyon.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39ED096C.ED0B9122@prokyon.com>; from brownicm@prokyon.com on Tue, Oct 17, 2000 at 10:22:36PM -0400 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 10:22:36PM -0400, Chris Browning wrote: > Giorgos Keramidas wrote: > > > > Can you post your sendmail.mc file? Please. > ... > And it produces the following as /etc/mail/sendmail.cf > > VERSIONID(@(#)tcpproto.mc 8.10 (Berkeley) 5/19/1998) > OSTYPE(bsd4.4) > FEATURE(nouucp) > MAILER(local) > MAILER(smtp) This does not look like a valid sendmail.cf to me, though :-( There is something wrong with the way that you `procude' your sendmail.cf file. Check out the page http://students.ceid.upatras.gr/~keramida/sendmail/ to see how I use a simple Makefile to make my own .cf files :-) You can always copy the .mc file in /usr/src/etc/sendmail/local.mc and use the standard way of making your .cf file, too: # cp custom.mc /usr/src/etc/sendmail/local.mc # cd /usr/src/etc/sendmail # make local.cf and then you will have a valid local.cf which you can copy over your existing /etc/mail/sendmail.cf before you restart sendmail. -- Giorgos Keramidas, For my public pgp2 key: finger -l keramida@diogenis.ceid.upatras.gr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:46:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id EF8C037B4CF for ; Wed, 18 Oct 2000 01:46:54 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9I8jxH09350; Wed, 18 Oct 2000 11:45:59 +0300 (EEST) Date: Wed, 18 Oct 2000 11:45:59 +0300 From: Giorgos Keramidas To: Bennett Hui Cc: freebsd-questions@FreeBSD.ORG Subject: Re: how do you close port 587: unknown service? Message-ID: <20001018114559.C9003@gray.westgate.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bhui@mail.com on Wed, Oct 18, 2000 at 01:32:24AM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 01:32:24AM -0700, Bennett Hui wrote: > > It would be great if anyone knew what port 587 was used for (it just > came with my install of 4.1.1-RELEASE), but more importantly how can > I close it off. I suppose the quick and easy way would be to block > it off with ipfw, but is there a line in a config file where I can > disable this service? It's the MSA port of Sendmail, documented in the usual place, i.e. /usr/src/contrib/sendmail/cf/README. You can see the following in your sendmail.cf file: O DaemonPortOptions=Port=587, Name=MSA, M=E and you can close it if you like with: FEATURE(`no_default_msa')dnl Ciao. -- Giorgos Keramidas, For my public pgp2 key: finger -l keramida@diogenis.ceid.upatras.gr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 1:51:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ponyexpress.interwoven.com (ponyexpress.interwoven.com [63.70.28.106]) by hub.freebsd.org (Postfix) with SMTP id 15BBA37B4D7 for ; Wed, 18 Oct 2000 01:51:30 -0700 (PDT) Received: (qmail 25686 invoked from network); 18 Oct 2000 08:51:17 -0000 Received: from unknown (HELO antonio) (202.104.132.91) by ponyexpress.interwoven.com with SMTP; 18 Oct 2000 08:51:17 -0000 From: "Antonio Yu" To: Subject: Freebsd installation in IBM Thinkpad T20 Date: Wed, 18 Oct 2000 16:51:03 +0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-AntiVirus: scanned for viruses by Interwoven (http://www.interwoven.com) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG RGVhciBTaXIsDQoNCkkgaGF2ZSB0cmllZCBpbnN0YWxsaW5nIEZyZWVCU0QgMy40IGludG8gbXkg bmV3IElCTSBUaGlua3BhZCBUMjAgbm90ZWJvb2sgYnV0IGl0IHNlZW1zIHRoYXQgYWZ0ZXIgdGhl IGluc3RhbGxhdGlvbiwgSSBjb3VsZG4ndCBldmVuIHN0YXJ0IG15IGNvbXB1dGVyISENCg0KSXMg aXQgdGhlIHByb2JsZW0gaW4gRnJlZUJTRD8/DQoNClRoYW5rcyBmb3IgeW91ciBhdHRlbnRpb24h DQoNCkFudG9uaW8NCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQ0KDQpBbnRvbmlvIFl1DQpUZWNobmljYWwgQ29uc3VsdGFudA0KVGVsOiArODUyLTIyNTEt MTg3Mw0KRmF4OiArODUyLTIyNTEtMTgxOA0KTW9iOiArODUyLTkxOTctMzg1Mg0KRW1haWw6IGF5 dUBpbnRlcndvdmVuLmNvbQ0KDQpWaXNpdCBodHRwOi8vd3d3LmludGVyd292ZW4uY29tDQpNb3Zp bmcgQnVzaW5lc3MgdG8gdGhlIFdlYiANCg0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 2:20: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hyperbate.francenet.fr (hyperbate.francenet.fr [193.149.97.80]) by hub.freebsd.org (Postfix) with ESMTP id 4C14F37B663 for ; Wed, 18 Oct 2000 02:20:02 -0700 (PDT) Received: from notbsdems.nantes.kisoft-services.com ([193.149.110.143]) by hyperbate.francenet.fr (8.10.1/8.10.1) with ESMTP id e9I9Jwn17068; Wed, 18 Oct 2000 11:19:59 +0200 (MET DST) Received: by notbsdems.nantes.kisoft-services.com (Postfix, from userid 1001) id 1FDE8E6BD8; Wed, 18 Oct 2000 10:08:56 +0200 (CEST) To: Joe.Warner@smed.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: UNIX - AS/400 References: <8525697B.0061EA51.00@Deimos.smed.com> From: Eric Masson In-Reply-To: <8525697B.0061EA51.00@Deimos.smed.com> Date: 18 Oct 2000 10:08:55 +0200 Message-ID: <86og0ir2p4.fsf@localhost.nantes.kisoft-services.com> Lines: 24 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> "Joe" == Joe Warner writes: Joe> Hi, Joe> Does anyone know of a FreeBSD or UNIX client application that will Joe> provide TN5250 connectivity to the IBM AS/400 (now iSeries)? Joe> Better yet, an application that would provide a session through a Joe> web browser? Hi, I've asked Rochester a few months ago for a full java release of CA/Express. I was answered that it was considered but that I should use Host On Demand at the moment. The native JDK1.2 should be released soon now, so what about bothering Rochester again and see if there is any work is in progress. Regards Eric Masson -- Progress (n) : What led from smart users in front of dumb terminals to dumb users in front of smart terminals. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 2:38:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stjohn.stjohn.ac.th (stjohn.stjohn.ac.th [202.21.144.1]) by hub.freebsd.org (Postfix) with ESMTP id 2281B37B4E5 for ; Wed, 18 Oct 2000 02:38:26 -0700 (PDT) Received: from granite ([203.151.134.100]) by stjohn.stjohn.ac.th (8.9.3/8.9.3) with SMTP id QAA08180 for ; Wed, 18 Oct 2000 16:33:05 +0700 (GMT) Message-Id: <3.0.6.32.20001018163847.007ab6b0@stjohn.stjohn.ac.th> X-Sender: mcrogerm@stjohn.stjohn.ac.th X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 18 Oct 2000 16:38:47 +0700 To: freebsd-questions@freebsd.org From: Roger Merritt Subject: setting prompt in tcsh Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Using bash I set PS1 to "[\u@\h:\w]" and then test to see if I'm root or not to add '$' or '#'. This gives me a nice prompt like '[acharn@ceres:/usr/ports/security]$ ', which is useful because I have two machines I telnet to and it's nice to be reminded if I've su'd to root and just what directory I'm currently in. I've been going through man 1 tcsh and haven't found anything similar, and I can't find the web site I ran across a couple of months ago which had unix tutorials, including one on shells. Can anyone help me out with an expression to put in .cshrc or .tcshrc so I can get a similar prompt in tcsh? After playing with it a little bit I've decided I should restore it as the shell for root (since tcsh lives in /bin). -- Roger "The only way to look younger is not to be born so soon." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 2:41:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stjohn.stjohn.ac.th (stjohn.stjohn.ac.th [202.21.144.1]) by hub.freebsd.org (Postfix) with ESMTP id 4585D37B657 for ; Wed, 18 Oct 2000 02:41:38 -0700 (PDT) Received: from granite ([203.151.134.100]) by stjohn.stjohn.ac.th (8.9.3/8.9.3) with SMTP id QAA08415 for ; Wed, 18 Oct 2000 16:36:24 +0700 (GMT) Message-Id: <3.0.6.32.20001018164207.007c6850@stjohn.stjohn.ac.th> X-Sender: mcrogerm@stjohn.stjohn.ac.th X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 18 Oct 2000 16:42:07 +0700 To: freebsd-questions@freebsd.org From: Roger Merritt Subject: I/O redirection in tcsh Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can't figure out from the man page how to redirect STDERR to STDIN so error messages will be logged while I'm running a job in the background. In bash I could just add '2>&1' in the command line, but tcsh calls that 'ambiguous redirection' and refuses to run the command. I tried just '>&', but that didn't work, either. What's the proper command? -- Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 2:46:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stjohn.stjohn.ac.th (stjohn.stjohn.ac.th [202.21.144.1]) by hub.freebsd.org (Postfix) with ESMTP id 21BF337B4E5 for ; Wed, 18 Oct 2000 02:46:14 -0700 (PDT) Received: from granite ([203.151.134.100]) by stjohn.stjohn.ac.th (8.9.3/8.9.3) with SMTP id QAA08730 for ; Wed, 18 Oct 2000 16:40:54 +0700 (GMT) Message-Id: <3.0.6.32.20001018164638.007c87e0@stjohn.stjohn.ac.th> X-Sender: mcrogerm@stjohn.stjohn.ac.th X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 18 Oct 2000 16:46:38 +0700 To: freebsd-questions@freebsd.org From: Roger Merritt Subject: path in single-user mode Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I haven't had to boot up in single-user mode except for doing a 'make installworld' for quite a while now, but I notice that when I do the path doesn't include /sbin or /usr/sbin. I haven't been able to find how the default is set. Changing login.conf doesn't seem to have any effect. What can I do so I don't have to enter 'PATH=$PATH:/sbin:/usr/sbin; export PATH' whenever I go into single-user? (well, I guess now that I'm reverting to tcsh I would have to use 'setenv', right?) -- Roger "Too soon old, too late schmart!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 2:59:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id 676A637B479 for ; Wed, 18 Oct 2000 02:59:48 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with SMTP id CAA24280; Wed, 18 Oct 2000 02:55:40 -0700 (PDT) From: "Otter" To: "Giorgos Keramidas" , "Bennett Hui" Cc: Subject: RE: how do you close port 587: unknown service? Date: Wed, 18 Oct 2000 06:03:17 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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: <20001018114559.C9003@gray.westgate.gr> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG and if you don't know what app had the port open, there's always the output of "sockstat". -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Giorgos }Keramidas }Sent: Wednesday, October 18, 2000 4:46 AM }To: Bennett Hui }Cc: freebsd-questions@FreeBSD.ORG }Subject: Re: how do you close port 587: unknown service? } } }On Wed, Oct 18, 2000 at 01:32:24AM -0700, Bennett Hui wrote: }> }> It would be great if anyone knew what port 587 was used }for (it just }> came with my install of 4.1.1-RELEASE), but more }importantly how can }> I close it off. I suppose the quick and easy way would be to block }> it off with ipfw, but is there a line in a config file where I can }> disable this service? } }It's the MSA port of Sendmail, documented in the usual place, i.e. }/usr/src/contrib/sendmail/cf/README. You can see the }following in your }sendmail.cf file: } } O DaemonPortOptions=Port=587, Name=MSA, M=E } }and you can close it if you like with: } } FEATURE(`no_default_msa')dnl } }Ciao. } }-- }Giorgos Keramidas, For my public pgp2 key: }finger -l keramida@diogenis.ceid.upatras.gr } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 3:17:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srcso.globis.ru (globis.ru [212.248.80.7]) by hub.freebsd.org (Postfix) with ESMTP id EEEE037B479 for ; Wed, 18 Oct 2000 03:16:56 -0700 (PDT) Received: from raduga.dyndns.org (raduga.sochi.net [212.248.82.76]) by srcso.globis.ru (8.9.3/8.9.3) with ESMTP id OAA51001 for ; Wed, 18 Oct 2000 14:39:58 +0400 (MSD) (envelope-from igor@raduga.dyndns.org) Received: (from igor@localhost) by raduga.dyndns.org (8.10.1/8.10.0) id e9IAGbu14577 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 14:16:37 +0400 Date: Wed, 18 Oct 2000 14:16:37 +0400 From: Igor Roboul To: freebsd-questions@freebsd.org Subject: test Message-ID: <20001018141637.A14570@linux.rainbow> Reply-To: igorr@crosswinds.net Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm sorry, but I had not received no mails from this list last 3 days. So, this is a test -- Igor Roboul, Unix System Administrator & Programmer @ sanatorium "Raduga", Sochi, Russia http://www.brainbench.com/transcript.jsp?pid=304744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 3:45:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id 0CCDD37B4CF for ; Wed, 18 Oct 2000 03:45:28 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9IAivZ00468; Wed, 18 Oct 2000 13:44:57 +0300 (EEST) Date: Wed, 18 Oct 2000 13:44:57 +0300 From: Giorgos Keramidas To: Roger Merritt Cc: freebsd-questions@FreeBSD.ORG Subject: Re: setting prompt in tcsh Message-ID: <20001018134457.B302@gray.westgate.gr> References: <3.0.6.32.20001018163847.007ab6b0@stjohn.stjohn.ac.th> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3.0.6.32.20001018163847.007ab6b0@stjohn.stjohn.ac.th>; from mcrogerm@stjohn.ac.th on Wed, Oct 18, 2000 at 04:38:47PM +0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 04:38:47PM +0700, Roger Merritt wrote: > > Using bash I set PS1 to "[\u@\h:\w]" and then test to see if I'm root > or not to add '$' or '#'. This gives me a nice prompt like > '[acharn@ceres:/usr/ports/security]$ ', which is useful because I have > two machines I telnet to and it's nice to be reminded if I've su'd to > root and just what directory I'm currently in. I've been going through > man 1 tcsh and haven't found anything similar, and I can't find the > web site I ran across a couple of months ago which had unix tutorials, > including one on shells. > > Can anyone help me out with an expression to put in .cshrc or .tcshrc > so I can get a similar prompt in tcsh? After playing with it a little > bit I've decided I should restore it as the shell for root (since tcsh > lives in /bin). I think that I got what you want: % set prompt = '[%n@%m:%~]%# ' [charon@gray:~]> su Password: gray# set prompt = '[%n@%m:%~]%# ' [charon@gray:/home/charon]# exit For more details, see the manpage of tcsh(1). Ciao :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 3:48:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id 6F6A137B479 for ; Wed, 18 Oct 2000 03:48:29 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9IAmDG00501; Wed, 18 Oct 2000 13:48:13 +0300 (EEST) Date: Wed, 18 Oct 2000 13:48:13 +0300 From: Giorgos Keramidas To: Roger Merritt Cc: freebsd-questions@FreeBSD.ORG Subject: Re: I/O redirection in tcsh Message-ID: <20001018134813.C302@gray.westgate.gr> References: <3.0.6.32.20001018164207.007c6850@stjohn.stjohn.ac.th> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3.0.6.32.20001018164207.007c6850@stjohn.stjohn.ac.th>; from mcrogerm@stjohn.ac.th on Wed, Oct 18, 2000 at 04:42:07PM +0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 04:42:07PM +0700, Roger Merritt wrote: > I can't figure out from the man page how to redirect STDERR to STDIN so > error messages will be logged while I'm running a job in the background. In > bash I could just add '2>&1' in the command line, but tcsh calls that > 'ambiguous redirection' and refuses to run the command. I tried just '>&', > but that didn't work, either. What's the proper command? tcsh (and csh, for that matter) is known for it's lack of file-descriptor manipulation in the prompt. You can do limited stuff like: % ./program >& program.stderr.log & which will redirect only stderr of ./program in program.stderr.log, but I don't know of a way to redirect file descriptor 2 to where 1 points at that point. I tend to use too many times the following trick: % /bin/sh -c './program 2>&1 > error.log &' Ciao, Giorgos. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 4:44:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lerami.lerctr.org (lerami.lerctr.org [207.158.72.11]) by hub.freebsd.org (Postfix) with ESMTP id BEBB537B4E5 for ; Wed, 18 Oct 2000 04:44:48 -0700 (PDT) Received: (from ler@localhost) by lerami.lerctr.org (8.11.1/8.11.1/20000901) id e9IBilR27669 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 06:44:47 -0500 (CDT) (envelope-from ler) Date: Wed, 18 Oct 2000 06:44:47 -0500 From: Larry Rosenman To: freebsd-questions@freebsd.org Subject: Re: how do you close port 587: unknown service? Message-ID: <20001018064447.A27653@lerami.lerctr.org> References: <20001018114559.C9003@gray.westgate.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: <20001018114559.C9003@gray.westgate.gr>; from keramida@ceid.upatras.gr on Wed, Oct 18, 2000 at 11:45:59AM +0300 X-Mailer: Mutt http://www.mutt.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG And, I would not necessarily recommend closing it off. It seems that with the new SMTP AUTH stuff, the difference between SUBMISSION (Port 587), and TRANSPORT (port 25) will be significant for antispam and authentication reasons. Larry Rosenman * Giorgos Keramidas [001018 03:47]: > On Wed, Oct 18, 2000 at 01:32:24AM -0700, Bennett Hui wrote: > > > > It would be great if anyone knew what port 587 was used for (it just > > came with my install of 4.1.1-RELEASE), but more importantly how can > > I close it off. I suppose the quick and easy way would be to block > > it off with ipfw, but is there a line in a config file where I can > > disable this service? > > It's the MSA port of Sendmail, documented in the usual place, i.e. > /usr/src/contrib/sendmail/cf/README. You can see the following in your > sendmail.cf file: > > O DaemonPortOptions=Port=587, Name=MSA, M=E > > and you can close it if you like with: > > FEATURE(`no_default_msa')dnl > > Ciao. > > -- > Giorgos Keramidas, For my public pgp2 key: > finger -l keramida@diogenis.ceid.upatras.gr > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 (voice) Internet: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 5:17:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id 77B9337B4CF for ; Wed, 18 Oct 2000 05:17:32 -0700 (PDT) Received: from dougy (dougy.apana.org.au [203.3.126.131]) by bryden.apana.org.au (8.9.3/8.9.3) with ESMTP id WAA19288 for ; Wed, 18 Oct 2000 22:22:21 +1000 (EST) (envelope-from dougy@bryden.apana.org.au) Message-ID: <022d01c038fe$58d533f0$837e03cb@dougy> From: "Doug Young" To: Subject: Videocard query Date: Wed, 18 Oct 2000 22:23:39 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0226_01C03952.10C43710" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0226_01C03952.10C43710 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'd appreciate comments from X users as to what videocards work well = with XF86Config. I run a=20 heap of CLI gateway / webserver / mailserver boxes, but occasionally = have a use for GUI stuff as well. What I'm looking for are reasonably priced (ie not those horribly = overpriced Matrox things) PCI or=20 AGP videocards that allow something like 16 bit 800x600 resolution or = better & which are straightforward to configure. I know to avoid rubbish like SiS which rarely work well = even in Windows but I have no idea=20 exactly what fairly basic cards do give good results. ------=_NextPart_000_0226_01C03952.10C43710 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'd appreciate comments from X users as = to what=20 videocards work well with XF86Config. I run a
heap of CLI gateway / webserver / = mailserver boxes,=20 but occasionally have a use for GUI stuff as well.
 
What I'm looking for are = reasonably priced (ie=20 not those horribly overpriced Matrox things) PCI or
AGP videocards that allow something = like 16 bit=20 800x600 resolution or better & = which are straightforward
to configure. I know=20 to avoid rubbish like SiS which = rarely work well=20 even in Windows but I have no idea =
exactly what fairly=20 basic cards do give good = results.
 
 
 
 
------=_NextPart_000_0226_01C03952.10C43710-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 5:26:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id 38CE737B4CF for ; Wed, 18 Oct 2000 05:26:22 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id lbpraaaa for ; Wed, 18 Oct 2000 23:30:38 +1000 Message-ID: <39ED9701.6D3B244@quake.com.au> Date: Wed, 18 Oct 2000 22:26:41 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Nick Slager Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards References: <39EC4CC4.BB576E22@quake.com.au> <20001018095911.D91516@albury.net.au> <39ED04E5.A8F0DEE@quake.com.au> <20001018142717.A25002@albury.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nick Slager wrote: > > Thus spake Kal Torak (kaltorak@quake.com.au): > > > Ok, well I am using 4.0 on an IBM Thinkpad I series 2611, > > the pc-card is a D-Link DFE-650... But thats not the prob, > > I havent actually got to trying to use the pc-card... > > > > This is what I have tried, I installed from the cd, making > > sure to put two pc-card slots in on the kernel config thing, > > then from the console started pccardd, it said there was no > > config file, so I copied pccard.conf.sample to the right > > place so there was one... Then when starting pccardd is > > said something like no pc-card slots found... > > The GENERIC kernel has the pc card devices. > > Are you sure your PC-Card controller is supported by FreeBSD? What's the > brand/model of your controller? Is it able to function in non-cardbus > mode? Do your BIOS settings match the software configuration? Well, I have no idea what the controller is... nothing in the documentation says what its meant to be... Looking at the windows driver, I think its called a: 02Micro 026832/6833 Cardbuss Could it help to specify the interrupt and irq settings etc in /boot/kernel.conf? Not that I actually know what those settings are meant to be... On boot up it finds two PCI to CardBus bridge's... But pccardd gives one of two messages, ether: /dev/card0 not configured or error: No PC-Card Slots Thanks for your help! Kal. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 5:28:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pro.fais.net (mail.fais.net [208.249.141.254]) by hub.freebsd.org (Postfix) with ESMTP id 00D5537B4CF for ; Wed, 18 Oct 2000 05:28:09 -0700 (PDT) Received: from drnet.fais.net (root@drnet.fais.net [208.249.141.31]) by pro.fais.net (8.9.3/8.9.3/Debian/GNU) with ESMTP id TAA11624; Tue, 17 Oct 2000 19:19:29 -0500 Received: from wks01.jwpages.com (wks01 [10.64.80.10]) by drnet.fais.net (8.9.3/8.9.3) with ESMTP id TAA00666; Tue, 17 Oct 2000 19:15:23 GMT (envelope-from jwpauler@jwpages.com) Message-Id: <5.0.0.25.0.20001017191732.009cfeb0@mail> X-Sender: jwpauler@mail X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Tue, 17 Oct 2000 19:19:24 -0500 To: "gummibear@nettaxi.com" , questions@FreeBSD.ORG From: "Jusitn W. Pauler" Subject: Re: Samba 2.0.7 homes share problem with NT 4.0 w/ serv pack 6 In-Reply-To: <200010172311.QAA31318@mail24.bigmailbox.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had this same problem, except on Windows 98. What you need to ensure is that in the FreeBSD box, you give permissions for everyone to view: -rwxrwx--x That should be (owner: read write view, group: read write view, guest: view) if I remember right. I made that change as was immediatly able to open the share, after hupping smbd. Justin W. Pauler At 06:11 PM 10/17/00, gummibear@nettaxi.com wrote: >Greetings! This here question is in need of a Samba guru. I'll try to >list out all the information that you'll might need. > >Okay, I have a FreeBSD 4.1 box with Samba 2.0.7 installed from the ports >collection that is having some troubles with NT 4.0 (with service pack 6). > >Here's the situation. I'd like to have the FreeBSD box as a simple File >Server. As of current I only have homes share and a tmp share. The tmp >share works fine when accessing from FreeBSD, but the homes share (which >samba maps to the user name/directory) gives me some error messages. > >So basically, when I log into the NT box as administrator and I open the >network neighborhood and open the FreeBSD workstation icon, I get >presented with a list of shares on the FreeBSD/Samba server. I can open >the tmp share, but when I try to open the administrator share I get this >error message: "\\FreeBSD\administrator is not accessible. >The network name cannot be found." > >I have read the diagnosing file on the samba site. I found something >weird when issuing the "net view \\freebsd" command on the NT 4 >box. Their is a missing field next to the the administrator share. > >Anyways, I'm attatching smb.conf file and some output from smbclient and >'net view \\freebsd' commands and my log files. > >I'm really stumped and would really like to get this working. I'd like >thos priove to my boss that FreeBSD and Samba has it's place in our >network. Any help would be greatly appreciated. Thanks! > ># Samba config File (/usrlocal/etc/smb.conf) ># Global parameters >[global] > workgroup = MIS > netbios name = FREEBSD > server string = Samba Server > interfaces = xl0 > encrypt passwords = Yes > log file = /var/log/log.%m > max log size = 50 > os level = 33 > local master = No > dns proxy = No > >[homes] > comment = Home Directories > writeable = Yes > browseable = No > >[printers] > comment = All Printers > path = /var/spool/samba > printable = Yes > browseable = No > >[tmp] > comment = Temporary file space > path = /tmp > writeable = Yes > guest ok = Yes > > ># From the FreeBSD/Samba box logged in as administrator >$ smbclient -L freebsd >added interface ip=10.0.0.5 bcast=10.255.255.255 nmask=255.0.0.0 >Got a positive name query response from 10.0.0.5 ( 10.0.0.5 ) >Password: >Domain=[MIS] OS=[Unix] Server=[Samba 2.0.7] > > Sharename Type Comment > --------- ---- ------- > tmp Disk Temporary file space > IPC$ IPC IPC Service (Samba Server) > lp Printer HP Laserjet 2100 > ibm Printer IBM 6400 > cc Printer Canon IR330E > administrator Disk Home Directories > > Server Comment > --------- ------- > FREEBSD Samba Server > STEVE > > Workgroup Master > --------- ------- > MIS STEVE > > ># From the NT 4 box logged in as Administrator >C:>net view \\freebsd > >Shared resources at \\freebsd > > >Samba Server > >Share name Type Used as Comment > > >------------------------------------------------------------------------------- >administrator > Disk Home > Directories >cc Print Canon >IR330E >ibm Print IBM >6400 >lp Print HP Laserjet >2100 >tmp Disk (UNC) Temporary file >space >The command completed successfully. > ># From the NT 4 box - trying to access administrator share via Network >Neighborhood ># (error message given) > >\\FreeBSD\administrator is not accessible. >The network name cannot be found. > > >Note: accessing the tmp share works fine. I think their is something up >with the homes share > ># log.smb >[2000/10/16 18:20:04, 0] lib/util_sock.c:set_socket_options(154) > Failed to set socket option SO_KEEPALIVE (Error Bad file descriptor) >[2000/10/16 18:20:04, 0] lib/util_sock.c:set_socket_options(154) > Failed to set socket option TCP_NODELAY (Error Bad file descriptor) >[2000/10/17 14:05:01, 1] smbd/server.c:main(641) > smbd version 2.0.7 started. > Copyright Andrew Tridgell 1992-1998 >[2000/10/17 14:05:01, 1] smbd/files.c:file_init(216) > file_init: Information only: requested 10000 open files, 1054 are > available. >[2000/10/17 14:07:19, 1] smbd/service.c:make_connection(550) > freebsd (10.0.0.5) connect to service tmp as user bear (uid=1001, > gid=0) (pid 16200) >[2000/10/17 14:08:10, 1] smbd/service.c:close_cnum(583) > freebsd (10.0.0.5) closed connection to service tmp >[2000/10/17 14:23:55, 0] lib/util_sock.c:set_socket_options(154) > Failed to set socket option SO_KEEPALIVE (Error Bad file descriptor) >[2000/10/17 14:23:55, 0] lib/util_sock.c:set_socket_options(154) > Failed to set socket option TCP_NODELAY (Error Bad file descriptor) >[2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:23:55, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:23:55, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:23:55, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:23:55, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:24:05, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:05, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:05, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:24:09, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:09, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:09, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:24:14, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:14, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:14, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:24:20, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:24:20, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:24:20, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'bear': authentication failed >[2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:44, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:44, 1] smbd/password.c:pass_check_smb(506) > Account for user 'administrator' was disabled. >[2000/10/17 14:24:44, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:38:59, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:38:59, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:38:59, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'bear': authentication failed >[2000/10/17 14:39:23, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:39:23, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:39:23, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'bear': authentication failed >[2000/10/17 14:39:27, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:39:27, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:39:27, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'bear': authentication failed >[2000/10/17 14:40:24, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:40:24, 1] smbd/password.c:pass_check_smb(506) > Account for user 'bear' was disabled. >[2000/10/17 14:40:24, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'bear': authentication failed >[2000/10/17 14:40:39, 0] smbd/chgpasswd.c:check_oem_password(644) > check_lanman_password: account bear disabled. >[2000/10/17 14:41:42, 1] smbd/service.c:make_connection(550) > joey (10.0.0.12) connect to service tmp as user administrator > (uid=1002, gid=1002) (pid 16299) >[2000/10/17 14:42:14, 0] smbd/nttrans.c:call_nt_transact_ioctl(2516) > call_nt_transact_ioctl: Currently not implemented. >[2000/10/17 14:44:06, 1] smbd/service.c:close_cnum(583) > joey (10.0.0.12) closed connection to service tmp >[2000/10/17 14:53:00, 1] smbd/reply.c:reply_sesssetup_and_X(925) > Rejecting user 'administrator': authentication failed >[2000/10/17 14:53:25, 1] smbd/service.c:make_connection(550) > freebsd (10.0.0.5) connect to service administrator as user > administrator (uid=1002, gid=1002) (pid 16348) >[2000/10/17 14:54:07, 1] smbd/service.c:close_cnum(583) > freebsd (10.0.0.5) closed connection to service administrator >[2000/10/17 15:02:43, 0] lib/util_sock.c:set_socket_options(154) > Failed to set socket option SO_KEEPALIVE (Error Bad file descriptor) >[2000/10/17 15:02:43, 0] lib/util_sock.c:set_socket_options(154) > Failed to set socket option TCP_NODELAY (Error Bad file descriptor) >[2000/10/17 15:07:57, 1] smbd/server.c:main(641) > smbd version 2.0.7 started. > Copyright Andrew Tridgell 1992-1998 >[2000/10/17 15:07:57, 1] smbd/files.c:file_init(216) > file_init: Information only: requested 10000 open files, 1054 are > available. > > > >------------------------------------------------------------ >Nettaxi MP3 Player, Burner, Ripper - NEW Version 2.0!!! DOWNLOAD IT FREE! >(5MBs) >MP3 DOWNLOAD: http://www.nettaxi.com/mp3/version_2/ntxy_MP3_setup.exe > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6: 5:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freyr.cba.ualr.edu (access14.mod1.ualr.edu [144.167.7.14]) by hub.freebsd.org (Postfix) with ESMTP id C348737B4C5 for ; Wed, 18 Oct 2000 06:05:12 -0700 (PDT) Received: (from joe@localhost) by freyr.cba.ualr.edu (8.11.1/8.11.1) id e9ID58Z13641; Wed, 18 Oct 2000 08:05:08 -0500 (CDT) (envelope-from joe) Date: Wed, 18 Oct 2000 08:05:07 -0500 From: "Joseph E. Royce" To: Doug Young Cc: freebsd-questions@freebsd.org Subject: Re: Videocard query Message-ID: <20001018080507.A13581@freyr.cba.ualr.edu> References: <022d01c038fe$58d533f0$837e03cb@dougy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <022d01c038fe$58d533f0$837e03cb@dougy>; from dougy@bryden.apana.org.au on Wed, Oct 18, 2000 at 10:23:39PM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 10:23:39PM +1000, Doug Young wrote: > I'd appreciate comments from X users as to what videocards work >well with XF86Config. I run a > heap of CLI gateway / webserver / mailserver boxes, but occasionally > have a use for GUI stuff as well. > > What I'm looking for are reasonably priced (ie not those horribly > overpriced Matrox things) PCI or > AGP videocards that allow something like 16 bit 800x600 resolution > or better & which are straightforward > to configure. I know to avoid rubbish like SiS which rarely work > well even in Windows but I have no idea > exactly what fairly basic cards do give good results. > > > > The ATI cards based on the Rage Pro chip work fairly well. They have been supported by XFree86 for a while now too. HTH -Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:12:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cindrpmx1.corp.harris.com (cindrpmx1.corp.harris.com [137.237.241.23]) by hub.freebsd.org (Postfix) with ESMTP id 81E4C37B4D7 for ; Wed, 18 Oct 2000 06:12:12 -0700 (PDT) Received: by cindrpmx1.corp.harris.com with Internet Mail Service (5.5.2650.21) id <4S4YNTG4>; Wed, 18 Oct 2000 09:12:06 -0400 Message-ID: <95B669A7D872D41182A600508BDFFB8C12D5BA@mlbmx7.ess.harris.com> From: "Potts, Ross" To: 'nathan' , "Person, Roderick" Cc: "'questions@FreeBSD.ORG'" Subject: RE: Installing on to a laptop with no CD-Rom. Date: Wed, 18 Oct 2000 09:12:05 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The thing is, on the laptop drive, power is supplied by the ribbon. The adapter has that white power plug on it to make it hook up like a regular ide drive. > -----Original Message----- > From: nathan [SMTP:beemern@telecom.ksu.edu] > Sent: Tuesday, October 17, 2000 2:26 PM > To: Person, Roderick > Cc: 'questions@FreeBSD.ORG' > Subject: Re: Installing on to a laptop with no CD-Rom. > > don't think you could "construct" one.. unless you have a LOT of patience (: > > seriously tho, i'm sure there's a store in the greater Pittsburgh area that > would have one. > the one i used didn't even have any 'logic' or anything on it, basically just > wired a "small" connector (for the laptop) to a "bigger" one for the standard > IDE cable. > > "Person, Roderick" wrote: > > seems like a simple solution. Where would I get a adapter to do this, > or would I have to construct it. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:13:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id 5451037B4CF for ; Wed, 18 Oct 2000 06:13:09 -0700 (PDT) Received: from dougy (dougy.apana.org.au [203.3.126.131]) by bryden.apana.org.au (8.9.3/8.9.3) with ESMTP id XAA19492; Wed, 18 Oct 2000 23:17:55 +1000 (EST) (envelope-from dougy@bryden.apana.org.au) Message-ID: <023e01c03906$187d8480$837e03cb@dougy> From: "Doug Young" To: "Joseph E. Royce" Cc: References: <022d01c038fe$58d533f0$837e03cb@dougy> <20001018080507.A13581@freyr.cba.ualr.edu> Subject: Re: Videocard query Date: Wed, 18 Oct 2000 23:19:45 +1000 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks Joseph I've used those with very satisfactory results in both Win2000 & Solaris, but never yet in FreeBSD / XF86, so sounds like thats something to try. I've just been messing around with some old PCI Cirrus Logic things but they are proving to be more trouble than they are worth !!! ----- Original Message ----- From: "Joseph E. Royce" To: "Doug Young" Cc: Sent: Wednesday, October 18, 2000 11:05 PM Subject: Re: Videocard query > On Wed, Oct 18, 2000 at 10:23:39PM +1000, Doug Young wrote: > > I'd appreciate comments from X users as to what videocards work > >well with XF86Config. I run a > > heap of CLI gateway / webserver / mailserver boxes, but occasionally > > have a use for GUI stuff as well. > > > > What I'm looking for are reasonably priced (ie not those horribly > > overpriced Matrox things) PCI or > > AGP videocards that allow something like 16 bit 800x600 resolution > > or better & which are straightforward > > to configure. I know to avoid rubbish like SiS which rarely work > > well even in Windows but I have no idea > > exactly what fairly basic cards do give good results. > > > > > > > > > The ATI cards based on the Rage Pro chip work fairly well. They have > been supported by XFree86 for a while now too. > HTH > -Joe > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:17:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from prinsipe.pworld.net.ph (prinsipe.pworld.net.ph [202.93.64.75]) by hub.freebsd.org (Postfix) with ESMTP id DAF4637B4CF for ; Wed, 18 Oct 2000 06:17:29 -0700 (PDT) Received: from pworld.net.ph (nobody@localhost [127.0.0.1]) by prinsipe.pworld.net.ph (8.9.3/8.9.3) with SMTP id VAA13788; Wed, 18 Oct 2000 21:16:11 +0800 From: noelt@pworld.net.ph Message-Id: <200010181316.VAA13788@prinsipe.pworld.net.ph> Date: Wed, 18 Oct 2000 21:16:10 +0800 (PHT) To: joe@freyr.cba.ualr.edu Cc: freebsd-questions@freebsd.org Subject: Re: Videocard query X-Mailer: PhilWorld Webmail v2.0.1 X-URL: http://www.pworld.net.ph/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Check out s3 video cards, they do not have any problems with X. noelt. You wrote: > From: "Joseph E. Royce" > To: Doug Young > Cc: freebsd-questions@freebsd.org > Date: Wed, 18 Oct 2000 08:05:07 -0500 > Subject: Re: Videocard query > > > On Wed, Oct 18, 2000 at 10:23:39PM +1000, Doug Young wrote: > > I'd appreciate comments from X users as to what videocards work > >well with XF86Config. I run a > > heap of CLI gateway / webserver / mailserver boxes, but occasionally > > have a use for GUI stuff as well. > > > > What I'm looking for are reasonably priced (ie not those horribly > > overpriced Matrox things) PCI or > > AGP videocards that allow something like 16 bit 800x600 resolution > > or better & which are straightforward > > to configure. I know to avoid rubbish like SiS which rarely work > > well even in Windows but I have no idea > > exactly what fairly basic cards do give good results. > > > > > > > > > The ATI cards based on the Rage Pro chip work fairly well. They have > been supported by XFree86 for a while now too. > HTH > -Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > _________________________________________________ This webmail service is courtesy of PhilWorld Online To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:19:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zog.mainline.co.uk (zog.mainline.co.uk [212.158.6.50]) by hub.freebsd.org (Postfix) with ESMTP id 4F7F037B4CF for ; Wed, 18 Oct 2000 06:19:43 -0700 (PDT) Received: from intergraph ([212.158.6.226]) by zog.mainline.co.uk (8.9.2/8.9.3) with SMTP id OAA23523 for ; Wed, 18 Oct 2000 14:19:33 +0100 (BST) From: "Colin Jack" To: Subject: Mailing Users Date: Wed, 18 Oct 2000 14:16:46 +0100 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.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am a relative newbie to freebsd, so please bear with me. Is there a way that I can send an email to all users on a server? The idea is to warn everyone of downtime for maintenance, but with a couple of hundred users .... there HAS to be an easy way :-) Thanks Colin Colin Jack Webmaster - Mainline Internet colin@mainline.co.uk http://www.mainline.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:20:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hal.medianet.ie (hal.medianet.ie [212.17.32.26]) by hub.freebsd.org (Postfix) with ESMTP id 5D4B137B4CF for ; Wed, 18 Oct 2000 06:20:34 -0700 (PDT) Received: [from liffey.co-operation-ireland.ie (letttuce.dialups.via-net-works.ie [212.17.34.128] by hal.medianet.ie (DIESPAM) with ESMTP id e9IDKPe23469 for ; Wed, 18 Oct 2000 14:20:25 +0100] Received: from it1 (it1 [199.107.2.129]) by liffey.co-operation-ireland.ie (8.9.3/8.9.3) with SMTP id OAA09714 for ; Wed, 18 Oct 2000 14:18:24 +0100 (IST) (envelope-from relyod@cooperationireland.org) Message-Id: <3.0.5.32.20001018142036.0085aae0@199.107.2.1> X-Sender: relyod@199.107.2.1 X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Wed, 18 Oct 2000 14:20:36 +0100 To: freebsd-questions@freebsd.org From: Mike Doyle Subject: Location of OpenSSH/SSH ? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I have just installed FreeBSD 4.1 from the installation CDs, and I can't find where OpenSSH is? Is it installed as part of one of the base distributions? Is it one of the packages? Or do I have to download the source from the OpenSSH website and install the port? <>< ============================================================ ><> Michael Doyle email: relyod@co-operation-ireland.ie Network Administrator personal email: relyod@indigo.ie Co-operation Ireland http://www.co-operation-ireland.ie/ Phone: +353-1-661 0588 Fax: +353-1-661 8456 ********************************************************************* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:22:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id BC9BA37B479 for ; Wed, 18 Oct 2000 06:22:24 -0700 (PDT) Received: (qmail 17095 invoked from network); 18 Oct 2000 13:22:23 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 18 Oct 2000 13:22:23 -0000 Received: (qmail 17692 invoked from network); 18 Oct 2000 13:22:22 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 18 Oct 2000 13:22:22 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBLVAH>; Wed, 18 Oct 2000 14:21:22 +0100 Message-ID: From: Daniel Bye To: 'Colin Jack' , freebsd-questions@FreeBSD.ORG Subject: RE: Mailing Users Date: Wed, 18 Oct 2000 14:16:02 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yup, use wall, instead of e-mail. It flashes the users' terminal, and cat's a file out for them to read. man wall for more details. shutdown also sends broadcast messages to all logged-in users - a handy feature for scheduled reboots etc. Dan > -----Original Message----- > From: Colin Jack [mailto:colin@mainline.co.uk] > Sent: Wednesday, October 18, 2000 2:17 PM > To: freebsd-questions@FreeBSD.ORG > Subject: Mailing Users > > > I am a relative newbie to freebsd, so please bear with me. > > Is there a way that I can send an email to all users on a > server? The idea > is to warn everyone of downtime for maintenance, but with a couple of > hundred users .... there HAS to be an easy way :-) > > Thanks > > Colin > > Colin Jack > Webmaster - Mainline Internet > colin@mainline.co.uk > http://www.mainline.co.uk > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:33: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id AFE7E37B479 for ; Wed, 18 Oct 2000 06:33:01 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA07800 for ; Wed, 18 Oct 2000 09:32:59 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA10360 for ; Wed, 18 Oct 2000 09:32:31 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2MOAX00.RYT; Wed, 18 Oct 2000 09:32:57 -0400 Message-ID: <39EDA69D.D8F54D90@mitre.org> Date: Wed, 18 Oct 2000 09:33:17 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: noelt@pworld.net.ph, freebsd-questions@FreeBSD.ORG Subject: Re: Videocard query References: <200010181316.VAA13788@prinsipe.pworld.net.ph> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > > On Wed, Oct 18, 2000 at 10:23:39PM +1000, Doug Young wrote: > > > I'd appreciate comments from X users as to what videocards work > > >well with XF86Config. I run a > > > heap of CLI gateway / webserver / mailserver boxes, but occasionally > > > have a use for GUI stuff as well. > > > > > > What I'm looking for are reasonably priced (ie not those horribly > > > overpriced Matrox things) PCI or > > > AGP videocards that allow something like 16 bit 800x600 resolution > > > or better & which are straightforward > > > to configure. I know to avoid rubbish like SiS which rarely work > > > well even in Windows but I have no idea > > > exactly what fairly basic cards do give good results. Just because Matrox sells expensive cards (G400 Max) doesn't mean you have to buy one. You can get old G200s for ~$40 new and less used. Of course this is overkill for 800x600x16, you might want to look around used computer stores (or Ebay) for 486 era cards you can get for nearly free. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 6:36: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zog.mainline.co.uk (zog.mainline.co.uk [212.158.6.50]) by hub.freebsd.org (Postfix) with ESMTP id EC2D737B4D7 for ; Wed, 18 Oct 2000 06:35:56 -0700 (PDT) Received: from intergraph ([212.158.6.226]) by zog.mainline.co.uk (8.9.2/8.9.3) with SMTP id OAA23676; Wed, 18 Oct 2000 14:35:54 +0100 (BST) From: "Colin Jack" To: "Gus Mueller" , Subject: RE: Mailing Users Date: Wed, 18 Oct 2000 14:33:06 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal In-Reply-To: <20001018082258.A71344@elvis.mu.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That's quite a cool idea - except that my perl skills are VERY limited :-) ... You aren't aware of anything like this any of the online script libraries are you? Colin -----Original Message----- From: gus@elvis.mu.org [mailto:gus@elvis.mu.org]On Behalf Of Gus Mueller Sent: 18 October 2000 14:23 To: Colin Jack Subject: Re: Mailing Users You could write a little perl script that looks at /etc/passwd and sends an emamil for each entry in there. -gus Colin Jack (colin@mainline.co.uk) wrote: > I am a relative newbie to freebsd, so please bear with me. > > Is there a way that I can send an email to all users on a server? The idea > is to warn everyone of downtime for maintenance, but with a couple of > hundred users .... there HAS to be an easy way :-) > > Thanks > > Colin > > Colin Jack > Webmaster - Mainline Internet > colin@mainline.co.uk > http://www.mainline.co.uk > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7: 1:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id B022937B657 for ; Wed, 18 Oct 2000 07:01:40 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2MPMJ00.V0M; Wed, 18 Oct 2000 09:01:31 -0500 From: Jeremy Vandenhouten To: "Doug Young" , freebsd-questions@freebsd.org Message-ID: <33970833a8fe.33a8fe339708@marquette.edu> Date: Wed, 18 Oct 2000 09:01:31 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: Videocard query X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been able to pick up slightly older model ATI cards which when used in conjunction with newer versions of XFree86 provide acceleration. I recently picked up a Xpert98 8mb PCI card online for 20 bucks + it had a 25 dollar rebate. (getting paid to buy something, good concept) I've had good experiences with ATI cards and FreeBSD in general. Good Hunting. ----- Original Message ----- From: "Doug Young" Date: Wednesday, October 18, 2000 7:23 am Subject: Videocard query > I'd appreciate comments from X users as to what videocards work > well with XF86Config. I run a > heap of CLI gateway / webserver / mailserver boxes, but > occasionally have a use for GUI stuff as well. > > What I'm looking for are reasonably priced (ie not those horribly > overpriced Matrox things) PCI or > AGP videocards that allow something like 16 bit 800x600 resolution > or better & which are straightforward > to configure. I know to avoid rubbish like SiS which rarely work > well even in Windows but I have no idea > exactly what fairly basic cards do give good results. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7: 7:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pc30.inescc.pt (pc30.inescc.pt [192.92.144.180]) by hub.freebsd.org (Postfix) with ESMTP id 880A637B4CF for ; Wed, 18 Oct 2000 07:07:01 -0700 (PDT) Received: from localhost (pmelo@localhost) by pc30.inescc.pt (8.9.3/8.9.3) with ESMTP id PAA03462 for ; Sun, 15 Oct 2000 15:17:58 +0100 X-Authentication-Warning: pc30.inescc.pt: pmelo owned process doing -bs Date: Sun, 15 Oct 2000 15:17:58 +0100 (WEST) From: Paulo Melo X-Sender: pmelo@pc30.inescc.pt To: FreeBSD Questions Mailing-List Subject: Re: Can't install with 4.1 or 4.1.1, but can with 4.0RC2 (solved) 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 again. Just solved the problem... It was THE KEYBOARD. Still don't know why it wouldn't work with 4.1 or 4.1.1 when it did with 4.0 (standard PS/2 keyboard) but I switched it with another and it works now (the old one hung BOTH PS/2 ports, and as such the mouse was also placed off-line - strange). Moral of the story: Sometimes when the keyboard stops responding - it may be the keyboard thats faulty (better said, incompatible with FreeBSD as it works without a hitch on linux and Win9x). Best regards Paulo Melo On Fri, 13 Oct 2000, Paulo Melo wrote: > Hi all - I hope this is the right place to post this one. > > I have a server with a N440BX motherboard but with just one > PIII550 processor. The board has an in-board Symbios SYM53C876 SCSI > controller, and I have 3 x 9GB disks in it. No exotic hardware was added. > > I could without any trouble install 4.0RC2 in it (to try it out, > some 6 months ago). However, I intend now to put it to work, and am trying > to install 4.1.1 on it. However, having created the kernel and mfsroot > diskettes I noticed it hang up on me in /stand/sysinstall (it boots the > kernel without problems, draws the screen for sysinstall but hangs without > recognizing the keyboard afterwards). I tried to boot a CD with 4.1 and > the same thing happens. However, the 4.0RC2 CD allows me to install > without problems. This is no problem in the media, as it was used to make > another install in an older machine without problems. > > My guess is that is something to do with SMP support (as I only have one > processor) but I see no sign of it on the boot messages up to the hang > point. Is this support in the -Stable branch active? If so, can it be > de-activated? Any other suggestions (I would prefer not to upgrade it > from a running 4.0RC2 system, as it is on a slow link)? > > TIA > Paulo Melo > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7: 8:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id CAF6D37B4FE for ; Wed, 18 Oct 2000 07:08:36 -0700 (PDT) Received: (qmail 26282 invoked from network); 18 Oct 2000 14:08:35 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 18 Oct 2000 14:08:35 -0000 Received: (qmail 2458 invoked from network); 18 Oct 2000 14:08:35 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 18 Oct 2000 14:08:35 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBLVPZ>; Wed, 18 Oct 2000 15:07:35 +0100 Message-ID: From: Daniel Bye To: Doug Young , freebsd-questions@freebsd.org Subject: RE: Videocard query Date: Wed, 18 Oct 2000 15:02:16 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'd agree with this. (not that I got paid to buy an ATI card, mind you). ATI cards are available for quite cheap to quite expensive, but they WORK with minimal fuss. I also use a Xpert98-based card, and it is excellent. Possibly overkill for what you want, but you could probably get a lower-spec one, for even cheaper (i.e., get even more money back for buying one!) Dan > -----Original Message----- > From: Jeremy Vandenhouten [mailto:jeremy.vandenhouten@marquette.edu] > Sent: Wednesday, October 18, 2000 3:02 PM > To: Doug Young; freebsd-questions@freebsd.org > Subject: Re: Videocard query > > > I've been able to pick up slightly older model ATI cards which when > used in conjunction with newer versions of XFree86 provide > acceleration. I recently picked up a Xpert98 8mb PCI card > online for 20 > bucks + it had a 25 dollar rebate. (getting paid to buy > something, good > concept) I've had good experiences with ATI cards and FreeBSD in > general. > > Good Hunting. > > ----- Original Message ----- > From: "Doug Young" > Date: Wednesday, October 18, 2000 7:23 am > Subject: Videocard query > > > I'd appreciate comments from X users as to what videocards work > > well with XF86Config. I run a > > heap of CLI gateway / webserver / mailserver boxes, but > > occasionally have a use for GUI stuff as well. > > > > What I'm looking for are reasonably priced (ie not those horribly > > overpriced Matrox things) PCI or > > AGP videocards that allow something like 16 bit 800x600 resolution > > or better & which are straightforward > > to configure. I know to avoid rubbish like SiS which rarely work > > well even in Windows but I have no idea > > exactly what fairly basic cards do give good results. > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:29:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 078A237B4C5 for ; Wed, 18 Oct 2000 07:29:23 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 9CC45328F; Tue, 17 Oct 2000 06:52:24 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 7EFB4328E; Tue, 17 Oct 2000 06:52:24 +0000 (GMT) Date: Tue, 17 Oct 2000 06:52:24 +0000 (GMT) From: Rick Hamell To: Doug Young Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Videocard query In-Reply-To: <022d01c038fe$58d533f0$837e03cb@dougy> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use an ATI @ Play 98 with 8 megs for 16 bit 1024x7whatever... works just fine... you can pick them up for about $50 or so. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org On Wed, 18 Oct 2000, Doug Young wrote: > I'd appreciate comments from X users as to what videocards work well with XF86Config. I run a > heap of CLI gateway / webserver / mailserver boxes, but occasionally have a use for GUI stuff as well. > > What I'm looking for are reasonably priced (ie not those horribly overpriced Matrox things) PCI or > AGP videocards that allow something like 16 bit 800x600 resolution or better & which are straightforward > to configure. I know to avoid rubbish like SiS which rarely work well even in Windows but I have no idea > exactly what fairly basic cards do give good results. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:38:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fwse.teligent.se (gateway.teligent.se [194.17.198.3]) by hub.freebsd.org (Postfix) with SMTP id 3EB0E37B4F9 for ; Wed, 18 Oct 2000 07:38:40 -0700 (PDT) Date: Wed, 18 Oct 2000 16:45:08 +0200 Organization: Teligent AB X-Mailer: Mozilla 4.7 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Configure NIS-client to work with AIX server Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable From: =?iso-8859-1?Q?G=F6ran?= Hedman Message-ID: <39EDB774.C745BA16@teligent.se> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I'm trying to get a FreeBSD 3.4 host to work as a nis client. My nis server is running on a AIX4.2.1 server. I get some contact with nis but i can't login with a nis account to the freebsd host. = If i'm root, i can do SU to my nis account. But if i'm a normal user i can't do . To run works fine. The host is using DNS and i have my NFS homedir mounted. = I'm new to Freebsd and totally lost. Can anybody help me? What have i done? - added this lines last in passwd and group files. (used vipw) passwd +::::::::: group +:*:: - This is my nisenties in /etc/defaults/rc.conf hostname=3D"trophy" nisdomainname=3D"link.teligent.se" = nis_client_enable=3D"YES" # We're an NIS client (or NO). nis_client_flags=3D"" # Flags to ypbind (if enabled). nis_ypset_enable=3D"YES" # Run ypset at boot time (or NO). nis_ypset_flags=3D"" # Flags to ypset (if enabled). nis_server_enable=3D"NO" # We're an NIS server (or NO). nis_server_flags=3D"" # Flags to ypserv (if enabled). nis_ypxfrd_enable=3D"NO" # Run rpc.ypxfrd at boot time (or NO). nis_ypxfrd_flags=3D"" # Flags to rpc.ypxfrd (if enabled). nis_yppasswdd_enable=3D"NO" # Run rpc.yppasswdd at boot time (or NO). nis_yppasswdd_flags=3D"" # Flags to rpc.yppasswdd (if enabled). - In auth.conf = auth_list =3D passwd nis - In host.conf # If you have YP/NIS configured, uncomment the next line nis Have not done anything with login.conf. Should i? Regards = /G=F6ran To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:43: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web108.yahoomail.com (web108.mail.yahoo.com [205.180.60.75]) by hub.freebsd.org (Postfix) with SMTP id C987137B4CF for ; Wed, 18 Oct 2000 07:43:05 -0700 (PDT) Received: (qmail 3536 invoked by uid 60001); 18 Oct 2000 14:43:04 -0000 Message-ID: <20001018144304.3535.qmail@web108.yahoomail.com> Received: from [24.21.87.62] by web108.yahoomail.com; Wed, 18 Oct 2000 07:43:04 PDT Date: Wed, 18 Oct 2000 07:43:04 -0700 (PDT) From: Chris Dempsey Subject: Re: Geforce 2 To: Nick Slager Cc: freebsd-questions@freebsd.org, xpert@xfree86.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is untrue. According to nick@nvidia.com, and in my experience, the drivers available for download through NVidia or through a X CVSup update are different packages. NVidia posts both a GLX and a kernel driver for linux. The same GLX driver under BSD seems to work fine, the kernel driver does not. According to him, a BSD port is in the works, when it will arrive he was not terribly specific. --- Nick Slager wrote: > Thus spake Ian Fricker (ifricker@uiuc.edu): > > > I recently installed freebsd. I have a Creative > Labs 3D Annihilator 2 > > with Nvidia's GeForce 2 chipset. It isn't > supported, and I was wondering > > if you knew if there were bsd drivers for my card > and where I can get > > them. I've looked several places on the web and > haven't been able to > > find any, but maybe I'm overlooking something. If > you need any more > > info, let me know. Thanks. > > Please wrap your lines at ~70 characters. > > There's actually no such thing as BSD drivers for > video cards; all > graphics card drivers are part of XFree86. > > The best place to start searching for compatible > cards is at > http://www.xfree86.org/4.0.1/Status.html. > > Bear in mind that nVidia have traditionally been > less than helpful in > opening up the specs of their cards, so open source > drivers may be hard > to come by. There's a couple of commerical X servers > mentioned at > http://www.freebsd.org/FAQ/x.html#AEN3014 which > might help. > > > Nick > > -- > From a Sun Microsystems bug report (#4102680): > "Workaround: don't pound on the mouse like a wild > monkey." > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message ===== Christopher P Dempsey --------------------- chrisdempsey@yahoo.com (805) 570-9230 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:43:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ruby.he.net (ruby.he.net [216.218.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 131B837B4E5 for ; Wed, 18 Oct 2000 07:43:50 -0700 (PDT) Received: from corten5.pacbell.net (adsl-63-193-247-201.dsl.snfc21.pacbell.net [63.193.247.201]) by ruby.he.net (8.8.6/8.8.2) with ESMTP id HAA30912; Wed, 18 Oct 2000 07:43:46 -0700 Date: Wed, 18 Oct 2000 07:41:08 -0700 (PDT) From: Bill Schoolcraft X-Sender: bill@corten5 To: "Andresen,Jason R." Cc: FBSD Subject: Re: Soundblaster_16 and FreeBSD-4.1 ? In-Reply-To: <39ECC1AD.F0554D4B@mitre.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Tue, 17 Oct 2000 it looks like Andresen,Jason R. composed: AR-->To use the soundcard, you have to recompile a kernel (4.x) with: AR-->device pcm AR-->device sbc AR-->If you have an old ISA non-pnp version, you will also have to include AR-->the IO port, IRQs, and DMAs (see LINT). Well I found re-compiling the FreeBSD kernel for sound much easier than the Linux kernel until I received the following errors: isa_compat.o(.data+0x24): undefined reference to `sbdriver' midi_synth.o: In function `midi_outc': midi_synth.o(.text+0x4d): undefined reference to `midi_devs' midi_synth.o: In function `prefix_cmd': midi_synth.o(.text+0xa0): undefined reference to `midi_devs' midi_synth.o: In function `midi_synth_input': midi_synth.o(.text+0xdd): undefined reference to `num_midis' midi_synth.o(.text+0xff): undefined reference to `midi_devs' midi_synth.o: In function `leave_sysex': midi_synth.o(.text+0x2c6): undefined reference to `synth_devs' midi_synth.o(.text+0x2ef): undefined reference to `midi_devs' midi_synth.o: In function `midi_synth_ioctl': midi_synth.o(.text+0x352): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_kill_note': midi_synth.o(.text+0x383): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_set_instr': midi_synth.o(.text+0x4b2): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_start_note': midi_synth.o(.text+0x512): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_open': midi_synth.o(.text+0x5f3): undefined reference to `synth_devs' midi_synth.o(.text+0x600): undefined reference to `num_midis' midi_synth.o(.text+0x630): undefined reference to `midi_devs' midi_synth.o: In function `midi_synth_close': midi_synth.o(.text+0x6b4): undefined reference to `synth_devs' midi_synth.o(.text+0x6c9): undefined reference to `midi_devs' midi_synth.o: In function `midi_synth_load_patch': midi_synth.o(.text+0x70e): undefined reference to `synth_devs' midi_synth.o(.text+0x895): undefined reference to `midi_devs' midi_synth.o: In function `midi_synth_aftertouch': midi_synth.o(.text+0x912): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_controller': midi_synth.o(.text+0x9aa): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_bender': midi_synth.o(.text+0xa66): undefined reference to `synth_devs' midi_synth.o: In function `midi_synth_send_sysex': midi_synth.o(.text+0xb23): undefined reference to `synth_devs' midi_synth.o(.text+0xbc9): undefined reference to `midi_devs' midi_synth.o(.text+0xc12): undefined reference to `midi_devs' Now I found no mention of `synth_devs' or `midi_devs' in my new kernel config file which I copied and renamed to the hostname as suggested. Thanks in advance. -- Bill Schoolcraft http://wiliweld.com PO Box 210076 San Francisco, CA 94121 " saevis tranquillus in undis " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:45:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web108.yahoomail.com (web108.mail.yahoo.com [205.180.60.75]) by hub.freebsd.org (Postfix) with SMTP id 5FB8D37B4E5 for ; Wed, 18 Oct 2000 07:45:13 -0700 (PDT) Received: (qmail 3893 invoked by uid 60001); 18 Oct 2000 14:45:13 -0000 Message-ID: <20001018144513.3892.qmail@web108.yahoomail.com> Received: from [24.21.87.62] by web108.yahoomail.com; Wed, 18 Oct 2000 07:45:13 PDT Date: Wed, 18 Oct 2000 07:45:13 -0700 (PDT) From: Chris Dempsey Subject: Re: Mailing Users 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 You could use a mail alias that coreesponds to a list of all users, or you could use the shutdown command with a long time delay. This will send out periodic messages regarding imminent downtime. Try man shutdown. --- Colin Jack wrote: > I am a relative newbie to freebsd, so please bear > with me. > > Is there a way that I can send an email to all users > on a server? The idea > is to warn everyone of downtime for maintenance, but > with a couple of > hundred users .... there HAS to be an easy way :-) > > Thanks > > Colin > > Colin Jack > Webmaster - Mainline Internet > colin@mainline.co.uk > http://www.mainline.co.uk > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message ===== Christopher P Dempsey --------------------- chrisdempsey@yahoo.com (805) 570-9230 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:47:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nbrmr1003.tp.ac.com (nbrmr1003.tp.ac.com [204.167.146.35]) by hub.freebsd.org (Postfix) with ESMTP id C605237B479 for ; Wed, 18 Oct 2000 07:47:52 -0700 (PDT) Received: from cifnet.com (naalab76116.tp.ac.com [10.10.76.116]) by nbrmr1003.tp.ac.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id JAA10488 for ; Wed, 18 Oct 2000 09:43:00 -0500 (CDT) Message-ID: <39EDB7C6.312FE2F5@cifnet.com> Date: Wed, 18 Oct 2000 09:46:30 -0500 From: "Scott M." X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Unknown ahc0 error Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I posted this question to the news groups, but I have not recieved an answer and that was over a week ago. I have an hp 12/24G dat drive. After 5-7 minutes of backing up a fs. I will receive the following error. "ahc0: ahc_intr - referenced scb not valid during SELTO scb(0, 0)" I ran a man against ahc but I don't have a clear idea what this is telling me. I have a TYAN Tiger-133 SMP board. I rebuilt me kernel and all is working well except for my tape backup. Also I cannot find a reference to what a scb(0, 0) or what a SELTO is. Any info would be GREATLY appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:50: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-server-9.star.net.uk (mail-server-9.star.net.uk [195.216.16.179]) by hub.freebsd.org (Postfix) with SMTP id AE08137B479 for ; Wed, 18 Oct 2000 07:50:01 -0700 (PDT) X-VirusChecked: Checked Received: (qmail 4000 invoked from network); 18 Oct 2000 15:54:39 -0000 Received: from unknown (HELO pluto.apexcomp.co.uk) (212.125.64.148) by mail-server-9.star.net.uk with SMTP; 18 Oct 2000 15:54:39 -0000 Received: by PLUTO with Internet Mail Service (5.5.2448.0) id ; Wed, 18 Oct 2000 15:49:51 +0100 Message-ID: From: Simon Mead To: "'freebsd-questions@FreeBSD.ORG'" Subject: Help Date: Wed, 18 Oct 2000 15:52:19 +0100 Importance: high X-Priority: 1 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 there chaps im just wondering if you can help me ? I work for an Ibm business partner and i was wondering whether your software was compatible with any if not all of the Ibm server range ? I have a customer of which will be installing your firewall software on an IBM NETFINITY Server 3500 M20 Is this possible ? Is your software compatible ? What is the minimum spec required to run the software ? Cheers Sy Simon Mead Configuration Specialist Apex Computers International 01285 863868 Mailto: simonm@apexcomp.co.uk ________________________________________________________________________ This message has been checked for all known viruses, by Star Internet, delivered through the MessageLabs Virus Control Centre. For further information visit: http://www.star.net.uk/stats.asp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:54:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 9B4F337B4D7 for ; Wed, 18 Oct 2000 07:54:47 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id KAA24446 for ; Wed, 18 Oct 2000 10:54:45 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id KAA25987 for ; Wed, 18 Oct 2000 10:54:18 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2MS3700.PZS; Wed, 18 Oct 2000 10:54:43 -0400 Message-ID: <39EDB9C7.DFFB0CC0@mitre.org> Date: Wed, 18 Oct 2000 10:55:03 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Bill Schoolcraft Cc: FBSD Subject: Re: Soundblaster_16 and FreeBSD-4.1 ? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill Schoolcraft wrote: > > At Tue, 17 Oct 2000 it looks like Andresen,Jason R. composed: > > > AR-->To use the soundcard, you have to recompile a kernel (4.x) with: > AR-->device pcm > AR-->device sbc > AR-->If you have an old ISA non-pnp version, you will also have to include > AR-->the IO port, IRQs, and DMAs (see LINT). > > > Well I found re-compiling the FreeBSD kernel for sound much easier > than the Linux kernel until I received the following errors: > > isa_compat.o(.data+0x24): undefined reference to `sbdriver' > midi_synth.o: In function `midi_outc': Don't use device pcm and device snd together or you will get errors like this. They are two different sets of sound drivers and are not compatable. Unfortunatly the snd0 (and its friends sbxvi, sbmidi, awe, sb, etc...) drivers don't work in 4.0 and will probabally disappear entirely in the near future. To fix this: find the lines like: device sb0 at isa.... device sbxvi at isa... device sbmidi at isa... and uncomment them from the kernel config. Also be sure you are using the new buildkernel interface (cd to /usr/src and type "make buildkernel KERNEL=" and then "make installkernel KERNEL=" or your modules will not be recompiled with the kernel (potentially breaking them). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 7:54:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sydney.worldwide.lemis.com (termroom.bsdcon.org [206.55.247.2]) by hub.freebsd.org (Postfix) with ESMTP id 793ED37B4CF for ; Wed, 18 Oct 2000 07:54:47 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9I0hSQ01142; Tue, 17 Oct 2000 17:43:28 -0700 (PDT) (envelope-from grog) Date: Tue, 17 Oct 2000 20:43:28 -0400 From: Greg Lehey To: Suttiwat Youngklai <00557321@student.chula.ac.th> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Please Suggest me about 'Writing Pseudo Device' Message-ID: <20001017204328.D814@sydney.worldwide.lemis.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from 00557321@student.chula.ac.th on Tue, Oct 17, 2000 at 10:35:53AM +0700 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [Format recovered--see http://www.lemis.com/email/email-format.html] Please limit your text lines to < 80 characters. On Tuesday, 17 October 2000 at 10:35:53 +0700, Suttiwat Youngklai wrote: > Hi, > Please give a sugestion to me about how to Writing Pseudo > Device Driver and link into kernel. This depends a lot on the driver. You should give more details and ask FreeBSD-hackers@FreeBSD.org. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8: 6:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sydney.worldwide.lemis.com (termroom.bsdcon.org [206.55.247.2]) by hub.freebsd.org (Postfix) with ESMTP id BB18E37B4C5 for ; Wed, 18 Oct 2000 08:06:44 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9HB0rO03798; Tue, 17 Oct 2000 07:00:53 -0400 (EDT) (envelope-from grog) Date: Tue, 17 Oct 2000 07:00:53 -0400 From: Greg Lehey To: Charles Henrich Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Vinum/Fsck 1TB filesystem Message-ID: <20001017070053.A3194@sydney.worldwide.lemis.com> References: <20001012113054.A9727@sigbus.com> <20001013131107.M2593@wantadilla.lemis.com> <20001013092656.B12492@sigbus.com> <20001014133853.D5353@sydney.worldwide.lemis.com> <20001016105840.C20902@sigbus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001016105840.C20902@sigbus.com>; from henrich@sigbus.com on Mon, Oct 16, 2000 at 10:58:40AM -0700 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Monday, 16 October 2000 at 10:58:40 -0700, Charles Henrich wrote: >>> I finally remembered fsck -b (duh), and it fsck'd off the alternate block >>> just fine, corrected a single file error. When I went and touched the >>> same file however, the same error conditions occured, and another reboot. >> >> Panic? > > No, just the hang again. FreeBSD never panic'd. That filesystem went into a > hung state. It would be interesting to see the output of 'px lax' if you can get it at this point. Also, you could do this before starting: # vinum debug 8 When the system hangs, then do: # vinum info -V > file file will then contain information about the last requests issued to the volume. >> Yes, I'd agree. As I said, you're pushing the limit, and you may just be >> the first person to ever try to use a 1 TB file system. > > I was hoping to put together a 2TB system, didnt realize FreeBSD > didnt support that as of yet. Is anyone working on a journaled file > system for FreeBSD? Not currently. At the moment I'm at a storage systems workshop where I've heard nice things about XFS, but nobody is currently working on it for FreeBSD. > (Fsck'ing 1TB takes a looong time :) It won't when you use the snapshot code which is currently under development. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply. For more information, see http://www.lemis.com/questions.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:14:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 3624737B479 for ; Wed, 18 Oct 2000 08:14:42 -0700 (PDT) Received: from bagabeedaboo.security.at12.de (dial-195-14-235-72.netcologne.de [195.14.235.72]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id RAA02472; Wed, 18 Oct 2000 17:14:39 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.11.1/8.11.0) with ESMTP id e9IFEVS05407; Wed, 18 Oct 2000 17:14:31 +0200 (CEST) (envelope-from pherman@frenchfries.net) Date: Wed, 18 Oct 2000 17:14:30 +0200 (CEST) From: Paul Herman To: Colin Jack Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mailing Users In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000, Colin Jack wrote: > I am a relative newbie to freebsd, so please bear with me. > > Is there a way that I can send an email to all users on a server? > The idea is to warn everyone of downtime for maintenance, but with > a couple of hundred users .... there HAS to be an easy way :-) A lot of people told you how to write messages to those logged in, which might serve your needs, but if you definately would rather send a mail to all your users, you can make an alias in /etc/mail/aliases: all.users: :include:/var/log/user.list or whatever, and then just have a cronjob that updates this file every night or so which does something like: awk -F: '($3>999 && $3<65534) { print $1; }' /etc/passwd > /var/log/user.list -Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:16:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from obelix.rby.hk-r.se (obelix.rby.hk-r.se [194.47.134.4]) by hub.freebsd.org (Postfix) with ESMTP id B92A037B479 for ; Wed, 18 Oct 2000 08:16:20 -0700 (PDT) Received: from orc.rby.hk-r.se (orc [194.47.134.179]) by obelix.rby.hk-r.se (8.10.2/8.10.2) with ESMTP id e9IFGfK18636 for ; Wed, 18 Oct 2000 17:16:41 +0200 (MEST) Received: from localhost (t98pth@localhost) by orc.rby.hk-r.se (8.10.2/8.10.2) with ESMTP id e9IFGHh06967 for ; Wed, 18 Oct 2000 17:16:17 +0200 (MET DST) Date: Wed, 18 Oct 2000 17:16:17 +0200 (MET DST) From: =?ISO-8859-1?Q?P=E4r_Thoren?= To: freebsd-questions@freebsd.org Subject: Supported Hardware (SCSI) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Is there support for Adaptec SCSI Card 19160 in the latest stable release? Couldn=B4t find in the Handbook. Anyone got it working? /P=E4r To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:31:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 5999F37B4C5 for ; Wed, 18 Oct 2000 08:31:53 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2MTT000.BY7; Wed, 18 Oct 2000 10:31:48 -0500 From: Jeremy Vandenhouten To: "Andresen,Jason R." , freebsd-questions@freebsd.org Message-ID: <355574352b8a.352b8a355574@marquette.edu> Date: Wed, 18 Oct 2000 10:31:48 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Kernel Rebuild w/ Sound X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Not really a question, but just a comment. I was unaware that the method to building a kernel had changed as of 4.0 and greater. I previously ran 3.5 and reloaded 4.0 Release a while later, however when I went to recompile my kernel under the proscribed method in "The Complete FreeBSD 3rd Edition (no errata)" and everything worked fine. Or is this just something for versions after 4.0. In any case I would like more info as to what exactly has been changed. Also of interest, isn't there some difference in how devices are handled in 4.0 and greater. Did it not used to be controller xxx as opposed to device xxx or is it the other way around? Thanks. > Don't use device pcm and device snd together or you will get errors > like this. They are two different sets of sound drivers and are > not compatable. Unfortunatly the snd0 (and its friends sbxvi, sbmidi, > awe, sb, etc...) drivers don't work in 4.0 and will probabally > disappearentirely in the near future. > > > and uncomment them from the kernel config. Also be sure you are using > the new buildkernel interface (cd to /usr/src and type > "make buildkernel KERNEL=" and then > "make installkernel KERNEL=" or your modules > will not > be recompiled with the kernel (potentially breaking them). > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:42:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id B273937B479 for ; Wed, 18 Oct 2000 08:42:39 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id IAA02696; Wed, 18 Oct 2000 08:42:16 -0700 Message-ID: <39EDC4D8.7C86AD20@urx.com> Date: Wed, 18 Oct 2000 08:42:16 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Colin Jack Cc: Gus Mueller , freebsd-questions@FreeBSD.ORG Subject: Re: Mailing Users References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Colin Jack wrote: > > That's quite a cool idea - except that my perl skills are VERY limited :-) > ... > > You aren't aware of anything like this any of the online script libraries > are you? I always thought that was one of the purposes of /etc/motd. You can add your scheduled maintenance in there and revert back it to your standard login message after the shutdown. Kent > > Colin > > -----Original Message----- > From: gus@elvis.mu.org [mailto:gus@elvis.mu.org]On Behalf Of Gus Mueller > Sent: 18 October 2000 14:23 > To: Colin Jack > Subject: Re: Mailing Users > > You could write a little perl script that looks at /etc/passwd and sends an > emamil for each entry in there. > > -gus > > Colin Jack (colin@mainline.co.uk) wrote: > > I am a relative newbie to freebsd, so please bear with me. > > > > Is there a way that I can send an email to all users on a server? The idea > > is to warn everyone of downtime for maintenance, but with a couple of > > hundred users .... there HAS to be an easy way :-) > > > > Thanks > > > > Colin > > > > Colin Jack > > Webmaster - Mainline Internet > > colin@mainline.co.uk > > http://www.mainline.co.uk > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:46:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id B504137B4C5 for ; Wed, 18 Oct 2000 08:46:48 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9IFkZn10970; Wed, 18 Oct 2000 08:46:35 -0700 (PDT) Date: Wed, 18 Oct 2000 08:46:35 -0700 From: Alfred Perlstein To: Giorgos Keramidas Cc: Roger Merritt , freebsd-questions@FreeBSD.ORG Subject: Re: I/O redirection in tcsh Message-ID: <20001018084634.J272@fw.wintelcom.net> References: <3.0.6.32.20001018164207.007c6850@stjohn.stjohn.ac.th> <20001018134813.C302@gray.westgate.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001018134813.C302@gray.westgate.gr>; from keramida@ceid.upatras.gr on Wed, Oct 18, 2000 at 01:48:13PM +0300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Giorgos Keramidas [001018 03:48] wrote: > On Wed, Oct 18, 2000 at 04:42:07PM +0700, Roger Merritt wrote: > > I can't figure out from the man page how to redirect STDERR to STDIN so > > error messages will be logged while I'm running a job in the background. In > > bash I could just add '2>&1' in the command line, but tcsh calls that > > 'ambiguous redirection' and refuses to run the command. I tried just '>&', > > but that didn't work, either. What's the proper command? > > tcsh (and csh, for that matter) is known for it's lack of > file-descriptor manipulation in the prompt. You can do limited stuff like: > > % ./program >& program.stderr.log & > > which will redirect only stderr of ./program in program.stderr.log, but > I don't know of a way to redirect file descriptor 2 to where 1 points at > that point. > > I tend to use too many times the following trick: > > % /bin/sh -c './program 2>&1 > error.log &' Try this: (myprog >& /dev/stdout) > outfile -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:47:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 7DD2137B4C5 for ; Wed, 18 Oct 2000 08:47:43 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9IFlYm11001; Wed, 18 Oct 2000 08:47:34 -0700 (PDT) Date: Wed, 18 Oct 2000 08:47:34 -0700 From: Alfred Perlstein To: Roger Merritt Cc: freebsd-questions@FreeBSD.ORG Subject: Re: path in single-user mode Message-ID: <20001018084734.K272@fw.wintelcom.net> References: <3.0.6.32.20001018164638.007c87e0@stjohn.stjohn.ac.th> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <3.0.6.32.20001018164638.007c87e0@stjohn.stjohn.ac.th>; from mcrogerm@stjohn.ac.th on Wed, Oct 18, 2000 at 04:46:38PM +0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Roger Merritt [001018 02:46] wrote: > I haven't had to boot up in single-user mode except for doing a 'make > installworld' for quite a while now, but I notice that when I do the path > doesn't include /sbin or /usr/sbin. I haven't been able to find how the > default is set. Changing login.conf doesn't seem to have any effect. > > What can I do so I don't have to enter 'PATH=$PATH:/sbin:/usr/sbin; export > PATH' whenever I go into single-user? (well, I guess now that I'm reverting > to tcsh I would have to use 'setenv', right?) Don't change root's shell. Use /etc/profile. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 8:58:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hip4.hip-web.com (hip4.hip-web.com [216.173.203.178]) by hub.freebsd.org (Postfix) with SMTP id CCE0237B4CF for ; Wed, 18 Oct 2000 08:58:30 -0700 (PDT) Received: (qmail 18534 invoked from network); 18 Oct 2000 15:58:17 -0000 Received: from tokyo224.yyy.or.jp (HELO oemcomputer) (210.174.136.114) by hip4.hip-web.com with SMTP; 18 Oct 2000 15:58:17 -0000 To: freebsd-questions@FreeBSD.ORG From: =?ISO-2022-JP?B?GyRCRnxLXCNQI1IlYSE8JWs+cEpzGyhC?= Date: Thu, 19 Oct 2000 00:46:53 +0900 Subject: =?ISO-2022-JP?B?GyRCRmI/JiQrJGlCPzxvJE4lUyU4JU0lOT5SMnAkSCEiTHIkS04pJEQ+cEpzJCxLfjpcISobKEI=?= X-Mailer: IM2000 Version 1.01 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=iso-2022-jp Message-Id: <1019100004653.4831@oemcomputer> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ************************************************************** $BFb?&!&I{6H!&%5%$%I%S%8%M%9!&4uK>R2p$H!"Lr$KN)$D(B $B>pJs$,K~:\!*(B ************************************************************** $B#2#0#0#0(B 10$B7n9f!!#A(B $B!!!!!!!!!!!!!!!!!!(B $B!!(B $BF|K\#P#R%a!<%k>pJs(B $B!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!(B http://www.pr-mail.net ************************************************************** $B!!!!!!!!!!!!!!!!!!!!!!!!!!FMA3$N%a!<%k$K$F<:NiCW$7$^$9!)!#(B $B!!$3$NEY!";d$I$b$G$O!V%a!<%k@lMQ$N#P#R!J@kEA!KIt!*!W$r3+@_CW$7$^$7$?!#(B $B$3$l$O!"F|>o@83h$N>e$G$N?7J9$N@^9~9-9p$NMM$J$b$N$H8fM}2r$rD:$1$l$P9,$$(B $B$G$9!#3F0L!"3'MM$N!V%[!<%`%Z!<%8!W$N>R2p$rCf?4$K3hF0$r$7$F9T$-$^$9!#H/Aw$O(B $B=5#22s$rM=Dj$7$F$*$j$^$9!##12s$N%[!<%`%Z!<%8>R2p$O#2#0%?%$%H%k0JFb$H$7!"#5#0K|(B $BIt$+$i#1#0#0K|It$NH/Aw$G$9!#:#2s!"$"$J$?MM$K=i$a$F!"$3$N!VF|K\#P#R%a!<%k>pJs!W(B $B$r@'Hs0lEY!"$4MwD:$-$?$/H/Aw$5$;$FD:$-$^$7$?!#$,!":#8e!"$3$NMM$J!VF|K\#P#R%a(B $B!<%k>pJs!W$rI,MW$H$7$FD:$1L5$$>l9g$K$O!"2<5-$NEv$A$KH/Aw$rDd;_$5$;$FD:$-$^$9$N$G!":#2s$N(B $B!"$3$NH/Aw$O8f5v$7$FD:$-$?$/59$7$/8f4j$$CW$7$^$9!#(B $B!!!!!!!!!!Eve(B $BI{6H!&%5%$%I%S%8%M%9$K8B$k!*(B $BCK=w!"G/Na!"3XNr!";q3J!"Ey!"ITLd!&9qFb#4#7ETF;I\8)$G3hF0=PMh$^$9(B $B!!!!!!!!!!!!!!!!!!!v!&;q6b!"EEOC1D6H!"Ey!"0l@ZL5MQ!&!v(B $B$3$N&IJ$r!"$"$J$?$N?H6a$JJ}!P8f2HB2!&7;Do!&M'?M!&CN?M!&(B $B8=:_$N8f5RMM!&Ey!Q$,I,MW$H$5$l$?;~!"8f>R2p!P7@Ls$N@.N)$r!Q$7$FD:(B $B$-$?$$$N$G$9!#!!!!(B $B!&=;=j!&G/Na!&O"Mm@hEEOCHV9f!&8=:_$N?&6H!&4{:'&IJ>R2p!"5Z$S!"HNGd$rL\E*(B $B$H$5$l$k!"@=B$85!"HNGd85$N8f;22C$b>5$j$^$9!#(B *************************************************************** $B!TBhFsJg=8!U(B $B8f<+Bp$G=PMh$kFb?&!!!!!!!!!!!!!!!!!!!!!!:GDc7n<}!o#5#0!$#0#0#0!]J]>Z(B $BMN:[$,=PMh$k=w@-!P7?;f$,$*$3$;$kJ}!Q!P#1E@J*$N:n@=!Q%N%k%^L5$7$G(B $B%^%$%Z!<%9$G;E;v$,=PMh$^$9!#(B $B!!!!!!!!!!!!;E;v$,L5$$;~$O!">e5-$N6b3[$rJ]>ZCW$7$^$9!*!#(B $B9)DB!E@$KIU$-!o#3!$#0#0#0!]0J>e(B $BEl5~#2#36hFb!&L>8E20;TFb!&Bg:e;TFb!&:_=;$NJ}$K8B$j$^$9!#(B $BLd9g$o$;$O!&!&!&!&!&!&!&!&(Binfo@project-agent.ne.jp *************************************************************** $B!TBh;0Jg=8!U(B $B:_Bp;vL3!&%Q%=%3%s$,=PMh$k=w@-!!!!!!:GDc7n<}!&!o#1#0#0!$#0#0#0!]J]>Z(B $BEl5~#2#36hFb$K:_=;$N=w@-$G!"#1F|!"e2DG=$JJ}(B $B86B'$H$7$F!"EZMK(B $B!&F|MK(B $B!&:WF|!&Dj5Y$G$9$,!"G=N(Jb9g$,$"$j$^$9$N$G(B $BK\?MZ(B $BEl5~#2#36h!!!&(B $BEl5~4s$j@iMU8)!"!!:_=;$N>/$7!"!!$/$@$1$?#4#0:P$N=w@-(B $BK?$KIU$-Jb9g5k$,!"%W%i%9(B $B$5$l$^$9!#(B $B!!!!!!!!(B $B%F%l%/%i!&%G!<%H%/%i%V!"$G$O$"$j$^$;$s!#(B $B!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!EEOC$G$N6HL3;~4V$O(B $B!!#1#0;~$+$i#1#2;~!&!#4;~$+$i#1#6;~!&!F|#4;~4V$G$9!#(B $B!!!!!!!!!!!!!!!!!!!!!!EZMK!&F|MK!&:WF|!&Dj5Y(B $BLd9g$o$;$O!&!&!&!&!&!&!&!&(Binfo@project-agent.ne.jp *************************************************************** $B!TBh8^Jg=8!U(B $B%9%]%s%5!.;qK\$N%S%8%M%9$KBP$9$k%9%]%s%5!@\!"7P1DpJs!W$O!"3'MM$N%[!<%`%Z!<%8$NFbMF$r!"=PMh$k8B$j$NB?$/$N(B $BJ}!9$K>R2p$9$k;v$rL\E*$H$7$FH/B-$5$;$FD:$-$^$7$?!#$D$-$^$7$F$O!"$3$N!VF|K\#P(B $B#R%a!<%k>pJs!W$K8fM}2r$rD:$1$k3'MM$KBP$7$^$7$F8f6(NO$N8f4j$$$r$7$?$$;v$,$"(B $B$j$^$9!#$=$l$O!"3'MM$N8fCN$j9g$$$NJ}$d!"8fM'?M!"8f?HFb$NJ}$N%"%I%l%9HV9f$r!"(B $BEv/$7$G$bB?$/$NJ}$K!"$3(B $B$N(B $B!VF|K\#P#R%a!<%k>pJs!W(B $B$rDL$8$F!"?'!9$J%[!<%`%Z!<%8$N>R2p$,2DG=$K$J$k;v$H(B $B9M$($F$*$j$^$9!#EvpJs!*(B $B!W$NAw?.$r5qH]$5$l$kJ}$b!"$*$_$($K$J$k;v$+$i!">o;~!"?7$7$$!)%a!<%k%"%I%l%9HV(B $B9f$rI,MW$H$7$F$*$j$^$9!#2?B4!"8f6(NO$NDx!"8fM}2r!"8f4j$$CW$7$^$9!#(B $BKt!"$3$N!VF|K\#P#R%a!<%k>pJs!W$G$O!"7G:\$5$l$F$$$k3F0L%[!<%`%Z!<%8$N&IJ$K$D$-$^$7$F$O!"EvR2p$rCW$7$^$9!#(B*************************************************************** $B!Z%S%8%M%9Be9T![(B $B>&IJ@bL@!&8f8+@Q$j!&0z$-!"Fq$J$j$H!)(B $B!!(B $B5.6H0w$K!JI,MW$J;~$@$1!KL\E*$NCO0h=;L1$,Be9T!JJQ?H!*!K$7$^$9!#(B $B!!!!8=:_$G$O!"4XElCO6h!&6a5&CO6h!"$rCf?4$K3hF0$7$F$*$j$^$9!#CO0h3HBgCf!*(B $B!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!T7Z%S%8%M%9Be9T%7%9%F%`$B$r8!F$$7$F$_$F2<$5$$!##3%v7n0JFb$K!"2q0wMM$N="?&(B $B!!@h$r8f@$OC$5$;$FD:$/$h$&$K!"EXNO$7$F$$$k(B<$B2q(B>$B$G$9!#(B $B!!!!!!!!!!!!!!!!!!!!;d@_%5!<%/%k!!!T="?&$7$g$&2q!U!!$H8@$$$^$9!#(B $B!!!!%[!<%`%Z!<%8$K%j%s%/$9$k!#!&!&!&!&!&!&!&!&(Bhttp://www.work-mutual-search.ne.jp *************************************************************** $B!ZCK=w4V$G$N:$$j;v![A49q5,LO(B $BN%:'LdBj$rCf?4$K!"Fb1o4X78$b4^$a$F!"CK=w4V$G$N%H%i%V%k$r@lLg$K!"BP=h=hM}(B $B!!$r>5$C$F$*$j$^$9!#!VJL$l$?$$!*!W!!!&!!!VJL$l$?$/$J$$!)!W!!!&!!!VJL$l$F$[$7$$!WEy(B $B!!$=$l$K$^$D$o$k6bIJDB49(B $B!&Ey!"$3$l$+$i2?$+;O$a$h$&!*!#$H(B $B8f9M$($NJ}!#!!0lEY!"EvJ}$r;n$7$F$_$F2<$5$$!#!!C&%5%i!"FHN)!"5/6H$H8@$&KA81(B $B!!$O!"BeM}E9$d%U%i%s%A%c%$%:$K;22C$9$k;v$P$+$j$G$O$"$j$^$;$s!#!!5.J}<+?H$,(B $B!!;YIt$dBeM}E9$NJg=8$r$9$k$h$&$J;v6H$r;O$a$F$_$^$;$s$+!)!#;qK\$N3[$G$O$"(B $B!!$j$^$;$s!#B?$1$l$PI,$:LY$+$k!)!#$=$s$J%S%8%M%9$O!"$"$j$($^$;$s!*!#(B $B!!>/$J$$;qK\$K$O>/$J$$;qK\$N%S%8%M%9$,$"$k$N$G$9!#(B $B$=$s$J;v6H7W2h(B $B!J4k2h!&(B $B!!AO0F=q!K$N:n@.$rC4Ev$7$F$*$j$^$9!#(B $B!!!!!!!!!!!!!!!!!!!!!!!!!!!!%Y%s%A%c!R2p=j!)![(B $B!!!!=i:'!&:F:'$rLd$o$:!"C/$+NI$$?M$$$J$$$+$J!A!#$=$s$JJ}$O5o$^$;$s$+!)!#(B $B8f2HB2$dM'?M$NJ}$G!"7k:'$K1o$NL5$$J}$,5o$k>l9g!"Kt!"8=:_!V7k:'AjCL=j!W$K(B $B9b3[$JHqMQ$rG<$a!"EPO?$r$7$F$$$kJ}$G!":#%@!"AjpIT0B!!!}!&ITL@?M!"2H=P?M!"F1Ak@8!"Ey$ND4::!!!}!&EpD04o$NH/8+(B $B!!!}!&:[H=!"$=$NB>$N0Y$NZ5r<}=8!"FbDe(B $B!!!}!&8D?M!"K!?M!"CDBN$N?.MQ!"8[MQ!"?M;vD4::!!!}!&;T>lD4::!">pJs%j%5!<%A(B $B!!!}!&%j%9%/2sHr$N0Y$N$"$i$f$kD4::!!!}!&%9%H!<%+!e#57o$N%[!<%`%Z!<%8$H#17o$ND4::2qR2p$r$5$;$FD:$-$^$7$?!#(B *************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9: 7:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lsmls01.we.mediaone.net (lsmls01.we.mediaone.net [24.130.1.20]) by hub.freebsd.org (Postfix) with ESMTP id 7957D37B4C5 for ; Wed, 18 Oct 2000 09:07:55 -0700 (PDT) Received: from mattspc.mediaone.net (we-24-24-130-34.we.mediaone.net [24.24.130.34]) by lsmls01.we.mediaone.net (8.8.7/8.8.7) with ESMTP id JAA11802 for ; Wed, 18 Oct 2000 09:07:49 -0700 (PDT) Message-Id: <4.3.2.7.2.20001018090345.018cf0d0@pop3.norton.antivirus> X-Sender: rochlin/pop.we.mediaone.net@pop3.norton.antivirus X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Wed, 18 Oct 2000 09:07:52 -0700 To: questions@FreeBSD.ORG From: Matthew Rochlin Subject: mailing list vs. newsgroup? In-Reply-To: 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 Just curious (and forgive me if this is one of those holy war kind of questions - I don't mean to be flame-bait). Is there a reason this is a mailing list instead of a newsgroup? (Getting 3+ digests per day (unthreaded) is kind of cumbersome and doesn't seem like the most efficient system....) I just joined the digest list a week or so ago, and it's been very useful, but a bit awkward to read through. Many BSD releated newsgroups get significantly less message volume than this list. Thanks ============= Matthew Rochlin 708 Nowita Place Venice, CA 90291 v. (310) 821-1819 f. (240) 220-5634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9: 9:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cindrpmx1.corp.harris.com (cindrpmx1.corp.harris.com [137.237.241.23]) by hub.freebsd.org (Postfix) with ESMTP id E1FBF37B4D7 for ; Wed, 18 Oct 2000 09:09:26 -0700 (PDT) Received: by cindrpmx1.corp.harris.com with Internet Mail Service (5.5.2650.21) id <4S4YNT9G>; Wed, 18 Oct 2000 12:09:24 -0400 Message-ID: <95B669A7D872D41182A600508BDFFB8C12D5BC@mlbmx7.ess.harris.com> From: "Potts, Ross" To: 'Colin Jack' , Gus Mueller , freebsd-questions@freebsd.org Subject: RE: Mailing Users Date: Wed, 18 Oct 2000 12:09:21 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Or for that matter you could awk the first field in /etc/passwd > -----Original Message----- > From: Colin Jack [SMTP:colin@mainline.co.uk] > Sent: Wednesday, October 18, 2000 9:33 AM > To: Gus Mueller; freebsd-questions@freebsd.org > Subject: RE: Mailing Users > > That's quite a cool idea - except that my perl skills are VERY limited :-) > ... > > You aren't aware of anything like this any of the online script libraries > are you? > > Colin > > -----Original Message----- > From: gus@elvis.mu.org [mailto:gus@elvis.mu.org]On Behalf Of Gus Mueller > Sent: 18 October 2000 14:23 > To: Colin Jack > Subject: Re: Mailing Users > > > You could write a little perl script that looks at /etc/passwd and sends an > emamil for each entry in there. > > -gus > > > Colin Jack (colin@mainline.co.uk) wrote: > > I am a relative newbie to freebsd, so please bear with me. > > > > Is there a way that I can send an email to all users on a server? The idea > > is to warn everyone of downtime for maintenance, but with a couple of > > hundred users .... there HAS to be an easy way :-) > > > > Thanks > > > > Colin > > > > Colin Jack > > Webmaster - Mainline Internet > > colin@mainline.co.uk > > http://www.mainline.co.uk > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:12:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corpmx3.CORP.HARRIS.COM (corpmx3.corp.harris.com [137.237.103.9]) by hub.freebsd.org (Postfix) with ESMTP id C48DC37B479 for ; Wed, 18 Oct 2000 09:12:53 -0700 (PDT) Received: by corpmx3 with Internet Mail Service (5.5.2650.21) id <4S8ZZB7B>; Wed, 18 Oct 2000 12:12:54 -0400 Message-ID: <95B669A7D872D41182A600508BDFFB8C12D5BE@mlbmx7.ess.harris.com> From: "Potts, Ross" To: questions@freebsd.org Subject: RE: mailing list vs. newsgroup? Date: Wed, 18 Oct 2000 12:12:51 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm kinda glad it's a mailing list. My net admins have clamped down on news -----Original Message----- From: Matthew Rochlin [SMTP:rochlin@mediaone.net] Sent: Wednesday, October 18, 2000 12:08 PM To: questions@freebsd.org Subject: mailing list vs. newsgroup? Just curious (and forgive me if this is one of those holy war kind of questions - I don't mean to be flame-bait). Is there a reason this is a mailing list instead of a newsgroup? (Getting 3+ digests per day (unthreaded) is kind of cumbersome and doesn't seem like the most efficient system....) I just joined the digest list a week or so ago, and it's been very useful, but a bit awkward to read through. Many BSD releated newsgroups get significantly less message volume than this list. Thanks ============= Matthew Rochlin 708 Nowita Place Venice, CA 90291 v. (310) 821-1819 f. (240) 220-5634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:20:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from MailAndNews.com (MailAndNews.com [199.29.68.161]) by hub.freebsd.org (Postfix) with ESMTP id 457BE37B4C5; Wed, 18 Oct 2000 09:20:39 -0700 (PDT) Received: from kch-173-143.tm.net.my [203.106.173.143] (alvn@mailandnews.com) by MailAndNews.com; Wed, 18 Oct 2000 12:20:20 -0400 X-WM-Posted-At: MailAndNews.com; Wed, 18 Oct 00 12:20:20 -0400 Date: Wed, 18 Oct 2000 23:17:31 +0800 From: Alvn X-Mailer: The Bat! (v1.47 Beta/7) Reply-To: Alvn Organization: . X-Priority: 3 (Normal) Message-ID: <1488105234.20001018231731@mailandnews.com> To: freebsd-newbies@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: d-link 220 nic problem 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 [cross-posted to newbies + questions] Hello freebsd'ers, i'm trying to install fbsd 4.0 in my office and am having problems with my d-link 220 (isa) nic. i have configured it to io=0x300 and irq=10 but each time i booted after the installation, it says (or something similar): fd0> irq=6 dma=2 ---forgot the rest--- which i realize is the floppy config. really strange (to me). -- Best regards, Alvn mailto:alvn@mailandnews.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:34: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by hub.freebsd.org (Postfix) with ESMTP id DBE7237B4C5 for ; Wed, 18 Oct 2000 09:33:58 -0700 (PDT) Received: from [209.150.34.250] (helo=[209.150.35.196]) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13lwA9-0005P6-00 ; Wed, 18 Oct 2000 12:33:58 -0400 Message-Id: In-Reply-To: <412000942821012700@earthlink.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: marsico78@earthlink.net From: media@ct1.nai.net Subject: Re: Help Cc: FreeBSD-questions@FreeBSD.ORG Date: Wed, 18 Oct 2000 12:33:58 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 5:00 PM +0002 09/28/00, Ron Marsico wrote: > >Hi, I am trying to install freeBSD and it doesn't seem to be working. I >have an atapi 48x internal cd rom drive and in the book it says that that >could be one of the problems. Please help. Please be more specific. What hardware are you using?? Which cd are you using?? How are you booting up?? What problem are you having?? Btw, I have an atapi cd-rom and it works fine. Also, "help" is a bad choice for the subject field. Almost all the the threads on this list begin by someone asking for help. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:34: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by hub.freebsd.org (Postfix) with ESMTP id 20A2B37B4E5 for ; Wed, 18 Oct 2000 09:34:02 -0700 (PDT) Received: from [209.150.34.250] (helo=[209.150.35.196]) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13lwAC-0005P6-00 for freebsd-questions@FreeBSD.ORG; Wed, 18 Oct 2000 12:34:01 -0400 Message-Id: In-Reply-To: <20001017101227.A87458@freebsd.mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: FreeBSD questions From: media@ct1.nai.net Subject: doing my part to destroy the rainforest Date: Wed, 18 Oct 2000 12:34:01 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am running 3.4R on a 133/586. My printer is an HP OfficeJet (a DeskJet 500 as far as printing is concerned). I am using apsfilter. The test pages come out fine, however I seem to be wasting quite a bit of paper while printing man pages. For example: # man -t ppp | lpr Produces a number of pages with only one line. This doesn't happen on every other page. # man -t bash | lpr produced a pile of pages with only one or two lines. I've read man troff (but I didn't print it :), yet I can't seem to figure out a way to prevent these one-line and two-line pages. Any ideas?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:34: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by hub.freebsd.org (Postfix) with ESMTP id 6FA1B37B479 for ; Wed, 18 Oct 2000 09:34:04 -0700 (PDT) Received: from [209.150.34.250] (helo=[209.150.35.196]) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.15 #2) id 13lwAF-0005P6-00 for freebsd-questions@FreeBSD.ORG; Wed, 18 Oct 2000 12:34:03 -0400 Message-Id: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: FreeBSD questions From: media@ct1.nai.net Subject: fortune stopped working on login Date: Wed, 18 Oct 2000 12:34:03 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am running 3.4R on a 133/586. Neither root nor user runs fortune at login, but they did until now. I know this isn't a major problem, but I am trying to learn as much as I can about my system. I haven't edited my .login files. This is what it says in my .login for root: [-x /usr/games/fortune ] && /usr/games/fortune It says in my login as user: [-x /usr/games/fortune ] && /usr/games/fortune -s From the root prompt: # fortune fortune: not found From the user prompt, the command fortune works (ie. it generates a quote). This seems true for all games, eg. hangman will run as user, but won't run as root. I've looked at dm.conf and read the man page for dm. However, I cannot figure out _how_ root would have less permissions (although I can see _why_). Any ideas?? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:43: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id BADB937B4E5 for ; Wed, 18 Oct 2000 09:43:04 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.37]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3167200; Wed, 18 Oct 2000 11:43:01 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 91BBBAC; Wed, 18 Oct 2000 11:50:21 -0500 (CDT) Date: Wed, 18 Oct 2000 11:50:21 -0500 From: Michael Urban To: jeremy.vandenhouten@marquette.edu Cc: freebsd-questions@freebsd.org Subject: Re: Kernel Rebuild w/ Sound Message-ID: <20001018115021.A324@tznet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Date: Wed, 18 Oct 2000 10:59:43 -0500 From: Michael Urban To: Jeremy Vandenhouten Cc: freebsd-questions@freebsd.org Subject: Re: Kernel Rebuild w/ Sound User-Agent: Mutt/1.2.5i In-Reply-To: <355574352b8a.352b8a355574@marquette.edu>; from jeremy.vandenhouten@marquette.edu on Wed, Oct 18, 2000 at 10:31:48AM -0500 Actually, the new method is only used after upgrading your source, or doing a make world to ensure that the new utilites are used. If you haven't done a make world, or upgraded your source, you should continue to use the old method. On Wed, Oct 18, 2000 at 10:31:48AM -0500, Jeremy Vandenhouten wrote: > Not really a question, but just a comment. I was unaware that the > method to building a kernel had changed as of 4.0 and greater. I > previously ran 3.5 and reloaded 4.0 Release a while later, however when > I went to recompile my kernel under the proscribed method in "The > Complete FreeBSD 3rd Edition (no errata)" and everything worked fine. > Or is this just something for versions after 4.0. In any case I would > like more info as to what exactly has been changed. ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 9:51: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dynamictrade.com (node-d8e93fd2.powerinter.net [216.233.63.210]) by hub.freebsd.org (Postfix) with SMTP id 5B26337B4C5 for ; Wed, 18 Oct 2000 09:51:01 -0700 (PDT) Received: (qmail 15490 invoked from network); 18 Oct 2000 16:44:16 -0000 Received: from tyr.internal.3.168.192.in-addr.arpa (HELO dynamictrade.com) (192.168.3.213) by mailhost.internal with SMTP; 18 Oct 2000 16:44:16 -0000 Message-ID: <39EDD3F1.87C50BB@dynamictrade.com> Date: Wed, 18 Oct 2000 11:46:41 -0500 From: john b p melesky X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: media@ct1.nai.net Cc: FreeBSD questions Subject: Re: fortune stopped working on login References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > From the user prompt, the command fortune works (ie. it generates a quote). > This seems true for all games, eg. hangman will run as user, but won't run > as root. This is probably due to a difference in the $PATH environment variable (should be set in your .login, or .profile, or whatever appropriate file for your shell). From a user account, type 'whereis fortune' -- that will return the absolute path of your fortune executable. Then you can either move it (as root, not as a user), or extend root's path to include that directory. > However, I > cannot figure out _how_ root would have less permissions (although I can > see _why_). It is not uncommon for root to have a more restricted PATH, to keep people from accidentally running something potentially compromising as root. It is not a hard restriction, though, and everyone has a different opinion on the matter. -johnnnnnnn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10: 5: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id AA6E137B4C5 for ; Wed, 18 Oct 2000 10:04:55 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lwcs-000Kvh-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 20:03:38 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lwfS-00006u-00 for freebsd-questions@FreeBSD.ORG; Wed, 18 Oct 2000 20:06:18 +0300 Date: Wed, 18 Oct 2000 20:06:18 +0300 From: Odhiambo Washington To: FreeBSD questions Subject: Re: fortune stopped working on login Message-ID: <20001018200618.A391@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , FreeBSD questions References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "media@ct1.nai.net" on Wed, Oct 18, 2000 at 12:34:03PM -0400 X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-Location: Mombasa, KE, East Africa Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * media@ct1.nai.net [20001018 19:36]: =>I am running 3.4R on a 133/586. Neither root nor user runs fortune at =>login, but they did until now. I know this isn't a major problem, but I am =>trying to learn as much as I can about my system. I haven't edited my =>.login files. This is what it says in my .login for root: => =>[-x /usr/games/fortune ] && /usr/games/fortune => =>It says in my login as user: => =>[-x /usr/games/fortune ] && /usr/games/fortune -s => =>>From the root prompt: => =># fortune =>fortune: not found => =>>From the user prompt, the command fortune works (ie. it generates a quote). =>This seems true for all games, eg. hangman will run as user, but won't run =>as root. I've looked at dm.conf and read the man page for dm. However, I =>cannot figure out _how_ root would have less permissions (although I can =>see _why_). => =>Any ideas?? I would take a guess that you changed the shell initialization file that you were having before, and gave yourself another ;-) thus changing the set PATH = " " Try, from root prompt /usr/games/fortune -o If it works then add /usr/games to your $PATH variable, i.e where it says set path = ( /x/y /usr/games) That should be in the .login or .cshrc or whatever ... => => => => => => => =>To Unsubscribe: send mail to majordomo@FreeBSD.org =>with "unsubscribe freebsd-questions" in the body of the message -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Press any key to continue or any other key to quit... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10: 5:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 4B10D37B688 for ; Wed, 18 Oct 2000 10:05:32 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id NAA18822 for ; Wed, 18 Oct 2000 13:05:30 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id NAA18435 for ; Wed, 18 Oct 2000 13:05:02 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2MY5400.L54; Wed, 18 Oct 2000 13:05:28 -0400 Message-ID: <39EDD868.B5E24B6A@mitre.org> Date: Wed, 18 Oct 2000 13:05:44 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: =?iso-8859-1?Q?P=E4r?= Thoren Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Supported Hardware (SCSI) References: Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG P=E4r Thoren wrote: > = > Hi! > = > Is there support for Adaptec SCSI Card 19160 > in the latest stable release? > = > Couldn=B4t find in the Handbook. Anyone got it working? I've got one, it works like a champ with -STABLE, however I don't = use it in the LVD/160 mode (older HD). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:18:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.lig.bellsouth.net (mail2.lig.bellsouth.net [205.152.0.56]) by hub.freebsd.org (Postfix) with ESMTP id 4830D37B4F9 for ; Wed, 18 Oct 2000 10:18:29 -0700 (PDT) Received: from prokyon.com (adsl-61-148-46.int.bellsouth.net [208.61.148.46]) by mail2.lig.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id NAA17187; Wed, 18 Oct 2000 13:18:20 -0400 (EDT) Message-ID: <39EDDB0D.C76C33BB@prokyon.com> Date: Wed, 18 Oct 2000 13:17:01 -0400 From: Chris Browning X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Giorgos Keramidas Cc: freebsd-questions@FreeBSD.ORG Subject: Re: keyboard mapping problem w/ m4 sendmail config? References: <39ECE2A3.E138EF70@prokyon.com> <20001018044214.A985@hades.hell.gr> <39ED096C.ED0B9122@prokyon.com> <20001018114140.B9003@gray.westgate.gr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Giorgos Keramidas wrote: > > Check out the page > http://students.ceid.upatras.gr/~keramida/sendmail/ to see how I use a > simple Makefile to make my own .cf files :-) > > You can always copy the .mc file in /usr/src/etc/sendmail/local.mc and > use the standard way of making your .cf file, too: > > # cp custom.mc /usr/src/etc/sendmail/local.mc > # cd /usr/src/etc/sendmail > # make local.cf > > and then you will have a valid local.cf which you can copy over your > existing /etc/mail/sendmail.cf before you restart sendmail. > > -- > Giorgos Keramidas, > For my public pgp2 key: finger -l keramida@diogenis.ceid.upatras.gr Cogent and simple. Lots of things became clear. Many thanks. Now I can start playing and poking. -- ------------------------ Chris Browning brownicm@prokyon.com ------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:19:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id A29B137B4F9 for ; Wed, 18 Oct 2000 10:19:37 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2MYSH00.435; Wed, 18 Oct 2000 12:19:29 -0500 From: Jeremy Vandenhouten To: Alvn , freebsd-questions@freebsd.org Message-ID: <372a8437120d.37120d372a84@marquette.edu> Date: Wed, 18 Oct 2000 12:19:29 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: d-link 220 nic problem X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG When you are in the device configuration window... The one with the expandable menus for devices to be probed, did you make sure to change FreeBSD's auto settings to 10/300? Sorry if this is so obvious that you've done it... ----- Original Message ----- From: Alvn Date: Wednesday, October 18, 2000 10:17 am Subject: d-link 220 nic problem > [cross-posted to newbies + questions] > > Hello freebsd'ers, > > i'm trying to install fbsd 4.0 in my office and am having > problems with my d-link 220 (isa) nic. i have configured it > to io=0x300 and > irq=10 but each time i booted after the installation, it > says (or > something similar): > > fd0> irq=6 dma=2 ---forgot the rest--- > > which i realize is the floppy config. really strange (to me). > > > > -- > Best regards, > Alvn mailto:alvn@mailandnews.com > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:21: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id BA0AD37B4D7 for ; Wed, 18 Oct 2000 10:20:57 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2MYUT00.I1F for ; Wed, 18 Oct 2000 12:20:53 -0500 From: Jeremy Vandenhouten To: freebsd-questions@freebsd.org Message-ID: <3777e9375635.3756353777e9@marquette.edu> Date: Wed, 18 Oct 2000 12:20:53 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: RE: mailing list vs. newsgroup? X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My companies firewall/proxies (considering that I end up going through 2) do not allow me to read external newsgroups. ----- Original Message ----- From: "Potts, Ross" Date: Wednesday, October 18, 2000 11:12 am Subject: RE: mailing list vs. newsgroup? > I'm kinda glad it's a mailing list. My net admins have clamped > down on news > > -----Original Message----- > From: Matthew Rochlin [SMTP:rochlin@mediaone.net] > Sent: Wednesday, October 18, 2000 12:08 PM > To: questions@freebsd.org > Subject: mailing list vs. newsgroup? > > Just curious (and forgive me if this is one of those holy war > kind of > questions - I don't mean to be flame-bait). > Is there a reason this is a mailing list instead of a newsgroup? > > (Getting 3+ digests per day (unthreaded) is kind of cumbersome and > doesn't > seem like the most efficient system....) > I just joined the digest list a week or so ago, and it's been very > useful, > but a bit awkward to read through. > Many BSD releated newsgroups get significantly less message > volume than > > this list. > Thanks > ============= > Matthew Rochlin > 708 Nowita Place > Venice, CA 90291 > v. (310) 821-1819 > f. (240) 220-5634 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:23:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dnvrpop2.dnvr.uswest.net (dnvrpop2.dnvr.uswest.net [206.196.128.4]) by hub.freebsd.org (Postfix) with SMTP id 4A88437B4E5 for ; Wed, 18 Oct 2000 10:23:10 -0700 (PDT) Received: (qmail 86334 invoked by alias); 18 Oct 2000 17:23:03 -0000 Delivered-To: fixup-freebsd-questions@freebsd.org@fixme Received: (qmail 85554 invoked by uid 0); 18 Oct 2000 17:22:55 -0000 Received: from hdialup214.dnvr.uswest.net (HELO miranda.dnvr.uswest.net) (207.225.106.214) by dnvrpop2.dnvr.uswest.net with SMTP; 18 Oct 2000 17:22:55 -0000 Received: (from loughry@localhost) by miranda.dnvr.uswest.net (8.9.3/8.9.3) id LAA02365 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 11:21:37 -0600 (MDT) (envelope-from loughry) Date: Wed, 18 Oct 2000 11:21:37 -0600 (MDT) From: Joe Loughry Message-Id: <200010181721.LAA02365@miranda.dnvr.uswest.net> To: freebsd-questions@freebsd.org Subject: Re: Unexpected PPP termination: Unacceptable Address !? What it might be? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I encountered the same problem last night, trying to install 4.1.1-RELEASE by FTP over a PPP dialup connection to my provider. The solution is to give the following command to PPP: After PPP displays "Phase: PPP Started (interactive mode)", at the prompt that says "ppp ON laptop> ", enter this: set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0 It's the "/0" at then end of the first two addresses that is the important part. The actual addresses you specify do not matter at all. The "/0" at the end of each says "I don't care about any of the bits of this address" -- so PPP is free to change it. I think you can do the same trick from the sysinstall screen where you enter your hostname, domain, nameserver address, etc., by specifying your IP address as 10.0.0.1/0 and your gateway address as 10.0.0.2/0 but I haven't tried this. I'll try it tonight, as I ran out of disk space on the laptop partway through the install and need to try it again anyway. -Joe "Baatar" wrote: Hello, I'm trying to install FreeBSD-3.4 (PAO distribution) on my 486 subnotebook through FTP using an PCMCIA modem. Everything goes OK until it comes to ppp. It starts, negotiates the IP address, and as soon as it recieves the IP address it dies. Following is the output of ppp session: Working in interactive mode Using interface: tun0 Warning: No default entry found in config file. Warning: ParseAddr: DHCP: Bad address Warning: set ifaddr: Failed 1 # ?! Maybe the problem lies here? Phase: PPP Started (interactive mode). ppp ON korvin> dial Phase: bundle; Establish Phase: deflink: closed -> opening Phase: deflink: Connected! Phase: deflink: opening -> dial Phase: Phone: 1234567 ppp ON korvin> Phase: deflink: dial -> carrier Phase: deflink: /dev/cuaa3: CD detected Phase: deflink: carrier -> login Phase: deflink: login -> lcp Phase: bundle: Authenticate Phase: deflink: his = PAP, mine = none Phase: Pap Output: my_auth_name ******** Ppp ON korvin> Phase: Pap Input: SUCCESS (Login Succeeded) Phase: deflink: lcp -> open Phase: bundle: Network PPp ON korvin> Phase: 216.102.143.194: Unacceptable address! Phase; bundle: terminate Phase: deflink: open -> lcp ppp ON korvin> Phase: deflink: Carrier lost Phase: deflink: Disconnected! Phase: deflink: lcp -> logout Phase: deflink: Disconnected! Phase: deflink: logout -> hangup Phase: deflink: Connect time: 27 secs: 345 octets in, 284 octets out Phase: total 23 bytes/sec, peak 123 bytes/sec on Tue Aug 22 08:11:20 2000 Phase: deflink: hangup -> closed Phase: bundle: Dead I suspect that it has to do with the routing table and writing to some configuration files. But on this early stage of installation how can I edit those files, if there is any? Or am I wrong? I tried both PAP/CHAP and Unix style logins but the result is same. Does anyone give me a clue? I just don't want to create a DOS partition for distribution files on such a small disk (320M). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:32: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from marcy.nas.nasa.gov (marcy.nas.nasa.gov [129.99.113.17]) by hub.freebsd.org (Postfix) with ESMTP id 5C5E937B4D7 for ; Wed, 18 Oct 2000 10:32:02 -0700 (PDT) Received: from localhost (lamaster@localhost) by marcy.nas.nasa.gov (8.9.3/NAS8.8.7n) with ESMTP id KAA16991 for ; Wed, 18 Oct 2000 10:31:57 -0700 (PDT) Date: Wed, 18 Oct 2000 10:31:56 -0700 (PDT) From: Hugh LaMaster Reply-To: lamaster@nas.nasa.gov To: freebsd-questions@freebsd.org Subject: build/run (4.1.1) -STABLE kernel: fatal trap 12: page fault while ... 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 booting a newly built kernel from freshly CV'supped -STABLE source tree, I get this: fatal trap 12: page fault while in kernel mode 0x24 supervisor read, page not present : panic: page fault I was following the procedure in /usr/src/UPDATING: make buildworld make buildkernel KERNEL=YOUR_KERNEL_HERE make installkernel KERNEL=YOUR_KERNEL_HERE reboot (in single user) [1] Breaks here ^ However, after booting old kernel, make installworld done anyway: make installworld mergemaster reboot The make installworld didn't change anything. Same result with my own custom kernel config file (includes ATM stuff) and the GENERIC kernel (note, system is still running 4.1-RELEASE kernel after the "make world"). So, I have built kernels directly with config/make depend/make/make install, and, via make buildkernel. After my own kernels broke, I tried GENERIC, with the same result every time. uname -a doesn't tell you much since this is still the 4.1-RELEASE kernel running: 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Fri Jul 28 14:30:31 GMT 2000 jkh@ref4.freebsd.org:/usr/src/sys/compile/GENERIC i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:47: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from flatt.cs.colostate.edu (flatt.cs.colostate.edu [129.82.45.245]) by hub.freebsd.org (Postfix) with ESMTP id 0A97937B4F9 for ; Wed, 18 Oct 2000 10:47:05 -0700 (PDT) Received: from localhost (denton@localhost) by flatt.cs.colostate.edu (8.9.3/8.9.3) with ESMTP id LAA23284 for ; Wed, 18 Oct 2000 11:47:02 -0600 (MDT) Date: Wed, 18 Oct 2000 11:47:02 -0600 (MDT) From: Jason Denton To: questions@freebsd.org Subject: UMASS storage device Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a compact flash reader attached to a usb port. The kernel locates and identifies this at boot time, it looks like its attached to ugen0. I know the windows drivers claim this is a straightforward usb mass storage device. I have device umass compilied into the kernel, along with the two appropriate scsi devices (the only scsi devices declared, since this is an IDE only system). MAKEDEV does not appear to have a umass entry. How can I get this device mounted? What do I need to do to create the appropriate block device, ect? Jason Denton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:48:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.psknet.com (orion.psknet.com [207.198.61.253]) by hub.freebsd.org (Postfix) with SMTP id 69C7937B4F9 for ; Wed, 18 Oct 2000 10:48:05 -0700 (PDT) Received: (qmail 96482 invoked from network); 18 Oct 2000 17:48:03 -0000 Received: from arcadia.psknet.com (HELO arcadia) (207.198.61.250) by orion.psknet.com with SMTP; 18 Oct 2000 17:48:03 -0000 From: "Troy Settle" To: "Matthew Rochlin" , Subject: RE: mailing list vs. newsgroup? Date: Wed, 18 Oct 2000 13:48:03 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <4.3.2.7.2.20001018090345.018cf0d0@pop3.norton.antivirus> X-AntiVirus: scanned for viruses by AMaViS 0.2.1-pre3 (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hmm... because usenet sucks? mailing list digests aren't very nice at all, at least I don't like them much. I just set up procmail to pre-sort my mail for me (>20 lists). I use Outlook 2k (no jokes please) for reading my mail through IMAP, and everything 'just works.' In the bad old days of pop3, I had numerous filtering/sorting rules in place to sort my messages as they came down. I hope I never have to do it that way again. -- Troy Settle Pulaski Networks 540.994.4254 It's always a long day, 86400 doesn't fit into a short > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Matthew Rochlin > Sent: Wednesday, October 18, 2000 12:08 PM > To: questions@FreeBSD.ORG > Subject: mailing list vs. newsgroup? > > > Just curious (and forgive me if this is one of those holy war kind of > questions - I don't mean to be flame-bait). > Is there a reason this is a mailing list instead of a newsgroup? > > (Getting 3+ digests per day (unthreaded) is kind of cumbersome > and doesn't > seem like the most efficient system....) > I just joined the digest list a week or so ago, and it's been > very useful, > but a bit awkward to read through. > Many BSD releated newsgroups get significantly less message volume than > this list. > Thanks > ============= > Matthew Rochlin > 708 Nowita Place > Venice, CA 90291 > v. (310) 821-1819 > f. (240) 220-5634 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 10:49:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 598B837B4F9 for ; Wed, 18 Oct 2000 10:49:25 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9IHnO315393; Wed, 18 Oct 2000 10:49:24 -0700 (PDT) Date: Wed, 18 Oct 2000 10:49:24 -0700 From: Alfred Perlstein To: Jason Denton Cc: questions@FreeBSD.ORG Subject: Re: UMASS storage device Message-ID: <20001018104923.L272@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from denton@CS.ColoState.EDU on Wed, Oct 18, 2000 at 11:47:02AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Jason Denton [001018 10:47] wrote: > I have a compact flash reader attached to a usb port. The kernel locates > and identifies this at boot time, it looks like its attached to ugen0. I > know the windows drivers claim this is a straightforward usb mass storage > device. I have device umass compilied into the kernel, along with the two > appropriate scsi devices (the only scsi devices declared, since this is an > IDE only system). MAKEDEV does not appear to have a umass entry. > > How can I get this device mounted? What do I need to do to create the > appropriate block device, ect? Try a 'camcontrol rescan' you need cam compiled into your kernel for this. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11: 2:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 0F10337B4F9 for ; Wed, 18 Oct 2000 11:02:14 -0700 (PDT) Received: (qmail 12497 invoked from network); 18 Oct 2000 20:02:10 +0200 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.mark.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 18 Oct 2000 20:02:10 +0200 From: Mark Rowlands To: "Tom Kocir" , Subject: Re: gnats Date: Wed, 18 Oct 2000 19:54:30 +0200 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <000801c038bf$0f364de0$0973b018@sttls1.wa.home.com> In-Reply-To: <000801c038bf$0f364de0$0973b018@sttls1.wa.home.com> MIME-Version: 1.0 Message-Id: <00101819582300.05916@marbsd.mark.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000, Tom Kocir wrote: (edited for readability) > trying to find out simple things about real gnats but you assholes get in > the way with your fucked up electronic web sites, this sucks a big dick. try entering gnats -gnu -bsd -linux -database as a search at www.google.com and we are all really sorry to have hindered your search for knowledge -- These are just my opinions you are free to disagree please do so quietly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11: 9: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from siafu.iconnect.co.ke (upagraha.iconnect.co.ke [209.198.248.2]) by hub.freebsd.org (Postfix) with ESMTP id D40A637B479 for ; Wed, 18 Oct 2000 11:08:59 -0700 (PDT) Received: from [212.22.163.2] (helo=poeza.iconnect.co.ke) by siafu.iconnect.co.ke with esmtp (Exim 2.12 #1) id 13lxd4-000MjT-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 21:07:54 +0300 Received: from wash by poeza.iconnect.co.ke with local (Exim 3.16 #1) id 13lxfe-0000Gl-00 for freebsd-questions@freebsd.org; Wed, 18 Oct 2000 21:10:34 +0300 Date: Wed, 18 Oct 2000 21:10:34 +0300 From: Odhiambo Washington To: FBSD-Q Subject: Napster Message-ID: <20001018211034.D391@poeza.iconnect.co.ke> Mail-Followup-To: Odhiambo Washington , FBSD-Q Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD poeza.iconnect.co.ke 3.5-STABLE FreeBSD 3.5-STABLE X-Mailer: Mutt http://www.mutt.org/ X-Location: Mombasa, KE, East Africa Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Anyone using Napster and able to connect out with it??? [wash@alouette:~]> cat nap.conf user=wash pass=? upload=/win/Wash/LINGALA/Derniee\ Avertissement/;/win/Wash/LINGALA/SololaBien/ download=ftpz/music/ dataport=6699 connection=9 email=wash@iconnect.co.ke [wash@alouette:~]> But [wash@alouette:~]> nap Reading config... Enter you password: nrl489s1 Getting best host... Then nothing happens. Thanks -Wash -- Odhiambo Washington Inter-Connect Ltd., wash@iconnect.co.ke 5th Flr Furaha Plaza Tel: 254 11 222604 Nkrumah Rd., Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. Your life would be very empty if you had nothing to regret. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:15: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 15C0E37B4C5 for ; Wed, 18 Oct 2000 11:14:58 -0700 (PDT) Received: (qmail 15017 invoked by uid 100); 18 Oct 2000 18:14:56 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14829.59552.930931.923116@guru.mired.org> Date: Wed, 18 Oct 2000 13:14:56 -0500 (CDT) To: "Doug Young" Cc: questions@freebsd.org Subject: Re: Videocard query In-Reply-To: <33218766@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug Young writes: > I'd appreciate comments from X users as to what videocards work well > with XF86Config. I run a > heap of CLI gateway / webserver / mailserver boxes, but occasionally > have a use for GUI stuff as well. Others have mentioned the ATI cards - but always the older ones. ATI likes to swap chips around, so that one "ATI WonderFoo" board may not have the same chipset as the "ATI WonderFoo" sitting next to it. On the other hand, ATI does tend to use the same chipset across a range of boards, so the that first "WonderFoo", a "RageFoo" and "FooPro" will all work equally well using the same drivers. My gut reaction is that any older brand name video card should work well without being overly expensive. The name means it should have been popular, so the bugs should have been ironed out by now. Older makes that more likely, as well as dropping the cost. ; Wed, 18 Oct 2000 11:20:02 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Wed, 18 Oct 2000 14:20:21 -0400 Message-ID: <39EDEA3A.F23D15E6@tellurian.com> Date: Wed, 18 Oct 2000 14:21:47 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: Odhiambo Washington Cc: FBSD-Q Subject: Re: Napster References: <20001018211034.D391@poeza.iconnect.co.ke> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use Gnapster with no problems whatsoever. (in the ports; requires gnome libs; don't need to run gnome panel though) Odhiambo Washington wrote: > Hi > Anyone using Napster and able to connect out with it??? > > [wash@alouette:~]> cat nap.conf > user=wash > pass=? > upload=/win/Wash/LINGALA/Derniee\ > Avertissement/;/win/Wash/LINGALA/SololaBien/ > download=ftpz/music/ > dataport=6699 > connection=9 > email=wash@iconnect.co.ke > [wash@alouette:~]> > > But > > [wash@alouette:~]> nap > Reading config... > Enter you password: > nrl489s1 > Getting best host... > > Then nothing happens. > > Thanks > > -Wash > > -- > Odhiambo Washington Inter-Connect Ltd., > wash@iconnect.co.ke 5th Flr Furaha Plaza > Tel: 254 11 222604 Nkrumah Rd., > Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. > > Your life would be very empty if you had nothing to regret. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:22:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id F22E337B479 for ; Wed, 18 Oct 2000 11:22:08 -0700 (PDT) Received: (qmail 15175 invoked by uid 100); 18 Oct 2000 18:22:08 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14829.59984.299814.581924@guru.mired.org> Date: Wed, 18 Oct 2000 13:22:08 -0500 (CDT) To: "Colin Jack" Cc: questions@freebsd.org Subject: Re: Mailing Users In-Reply-To: <45357125@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Colin Jack writes: > Is there a way that I can send an email to all users on a server? The idea > is to warn everyone of downtime for maintenance, but with a couple of > hundred users .... there HAS to be an easy way :-) Since nobody mentioned it, *my* favorite way to do this is: $ cd /home $ mail -s "Canned message subject" * < ~/canned-message Anyone who thinks that's an abuse of shell globbing is right, but it's the best you can do when "mail *@localhost" doesn't work properly. ; Wed, 18 Oct 2000 11:22:32 -0700 (PDT) Received: from bucket.cisco.com (bucket.cisco.com [161.44.131.26]) by sj-msg-core-1.cisco.com (8.9.3/8.9.1) with ESMTP id LAA29859 for ; Wed, 18 Oct 2000 11:22:32 -0700 (PDT) Received: from joblakent (ch-dhcp104-194.cisco.com [171.69.104.194]) by bucket.cisco.com (Mirapoint) with SMTP id AAR07373; Wed, 18 Oct 2000 14:22:30 -0400 (EDT) Message-ID: <00bf01c03930$bc877020$c26845ab@cisco.com> From: "John Blake" To: Subject: center "scroll" wheel on Logitech mouse Date: Wed, 18 Oct 2000 14:25:04 -0400 Organization: CISCO Systems MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00BC_01C0390F.3541C7D0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_00BC_01C0390F.3541C7D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, How do I get the center "scroll" wheel on my Logitech mouse to work? John ------=_NextPart_000_00BC_01C0390F.3541C7D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
How do I get the center = "scroll" wheel on my=20 Logitech mouse to work?
John
------=_NextPart_000_00BC_01C0390F.3541C7D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:24:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 62B3537B479 for ; Wed, 18 Oct 2000 11:24:44 -0700 (PDT) Received: (qmail 15247 invoked by uid 100); 18 Oct 2000 18:24:43 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14829.60139.860388.48885@guru.mired.org> Date: Wed, 18 Oct 2000 13:24:43 -0500 (CDT) To: Mike Doyle Cc: questions@freebsd.org Subject: Re: Location of OpenSSH/SSH ? In-Reply-To: <121494299@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mike Doyle writes: > I have just installed FreeBSD 4.1 from the installation CDs, and > I can't find where OpenSSH is? Is it installed as part of > one of the base distributions? Is it one of the packages? On 4.1, it's not in the base distribution. I doubt it's available as a package, either. > Or do I have to download the source from the OpenSSH website and > install the port? That's one choice. The other is to download the FreeBSD sources for 4.1.1 or later (see "Staying STABLE with FreeBSD" in the handbook), at which point OpenSSH is part of the bas distribution. ; Wed, 18 Oct 2000 11:25:18 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2N1U200.E4B; Wed, 18 Oct 2000 13:25:14 -0500 From: Jeremy Vandenhouten To: Odhiambo Washington , freebsd-questions@freebsd.org Message-ID: <38d0c838a452.38a45238d0c8@marquette.edu> Date: Wed, 18 Oct 2000 13:25:14 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Napster type thingies X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the October issue of Wired there was a HUGE article on all types of P2P type programs as well as utilities for mp3's and burning for all types of Unix-style OS's. Some were even specifically for FreeBSD. Check it out, you may still even be able to get a copy of it from Borders or Barnes and Noble (they're on November now). ----- Original Message ----- From: Odhiambo Washington Date: Wednesday, October 18, 2000 1:10 pm Subject: Napster > Hi > Anyone using Napster and able to connect out with it??? > > [wash@alouette:~]> cat nap.conf > user=wash > pass=? > upload=/win/Wash/LINGALA/Derniee\ > Avertissement/;/win/Wash/LINGALA/SololaBien/ > download=ftpz/music/ > dataport=6699 > connection=9 > email=wash@iconnect.co.ke > [wash@alouette:~]> > > But > > [wash@alouette:~]> nap > Reading config... > Enter you password: > nrl489s1 > Getting best host... > > Then nothing happens. > > Thanks > > -Wash > > -- > Odhiambo Washington Inter-Connect Ltd., > wash@iconnect.co.ke 5th Flr Furaha Plaza > Tel: 254 11 222604 Nkrumah Rd., > Fax: 254 11 222636 PO Box 83613 MOMBASA, KENYA. > > Your life would be very empty if you had nothing to regret. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:26: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id AFE0437B4D7 for ; Wed, 18 Oct 2000 11:26:01 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id LAA03318; Wed, 18 Oct 2000 11:25:55 -0700 Message-ID: <39EDEB33.C250F23B@urx.com> Date: Wed, 18 Oct 2000 11:25:55 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: lamaster@nas.nasa.gov Cc: freebsd-questions@FreeBSD.ORG Subject: Re: build/run (4.1.1) -STABLE kernel: fatal trap 12: page fault while... References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hugh LaMaster wrote: > > On booting a newly built kernel from freshly CV'supped -STABLE > source tree, I get this: > > fatal trap 12: page fault while in kernel mode > > 0x24 > supervisor read, page not present > > : > > panic: page fault > > I was following the procedure in /usr/src/UPDATING: > > make buildworld > make buildkernel KERNEL=YOUR_KERNEL_HERE > make installkernel KERNEL=YOUR_KERNEL_HERE > reboot (in single user) [1] > > Breaks here ^ > However, after booting old kernel, make installworld > done anyway: > > make installworld > mergemaster > reboot > > The make installworld didn't change anything. Same result with my > own custom kernel config file (includes ATM stuff) and the GENERIC > kernel (note, system is still running 4.1-RELEASE kernel after the > "make world"). > > So, I have built kernels directly with config/make depend/make/make > install, and, via make buildkernel. After my own kernels broke, > I tried GENERIC, with the same result every time. > > uname -a doesn't tell you much since this is still the 4.1-RELEASE > kernel running: > > 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Fri Jul 28 14:30:31 GMT 2000 > jkh@ref4.freebsd.org:/usr/src/sys/compile/GENERIC i386 It tells us that you didn't do what you think you did. If the installworld and the kernel config and install had worked, you wouldn't be seeing a release kernel. I just finished running a script that I call upworld. It is jade# m upworld #! /bin/sh cd /root/cvsup #cvsup -g -L 2 4.x-stable-supfile 2>&1 | tee cvsup.log # Now convert the log to html` #cvsuplog < cvsup.log > cvsup-`date "+%Y%m%d-%H%M"`.html cd /usr/src make buildworld 2>&1 | tee bworld-`date "+%Y%m%d-%H%M"`.log make buildkernel KERNEL=JADE 2>&1 | tee bkernel-`date "+%Y%m%d-%H%M"`.log make installkernel KERNEL=JADE 2>&1 | tee ikernel-`date "+%Y%m%d-%H%M"`.log make installworld 2>&1 | tee iworld-`date "+%Y%m%d-%H%M"`.log I ran mergemaster manually at this point and rebooted. A uname -a following the reboot shows jade# uname -a FreeBSD jade.kbs.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Wed Oct 18 10:58:34 PDT 2000 root@jade.kbs.com:/usr/obj/usr/src/sys/JADE i386 Kent -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:26:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 80D1E37B4CF for ; Wed, 18 Oct 2000 11:26:27 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id for ; Wed, 18 Oct 2000 14:26:46 -0400 Message-ID: <39EDEBB7.9B0199A@tellurian.com> Date: Wed, 18 Oct 2000 14:28:07 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: FreeBSD questions Subject: Re: gnats References: <000801c038bf$0f364de0$0973b018@sttls1.wa.home.com> <00101819582300.05916@marbsd.mark.tninet.se> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Wed, 18 Oct 2000, Tom Kocir wrote: > (edited for readability) > > > trying to find out simple things about real gnats but you assholes get in > > the way with your fucked up electronic web sites, this sucks a big dick. Just wondering what are the "real" gnats and what are "fake" ones ? I know neither :) BTW: Yahoo listed 16 sites *grin* > try entering gnats -gnu -bsd -linux -database as a search at www.google.com > and we are all really sorry to have hindered your search for knowledge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:32:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 1842937B479 for ; Wed, 18 Oct 2000 11:32:15 -0700 (PDT) Received: (qmail 15444 invoked by uid 100); 18 Oct 2000 18:32:14 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14829.60590.199024.911505@guru.mired.org> Date: Wed, 18 Oct 2000 13:32:14 -0500 (CDT) To: Matthew Rochlin Cc: questions@freebsd.org Subject: Re: mailing list vs. newsgroup? In-Reply-To: <73921434@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew Rochlin writes: > Just curious (and forgive me if this is one of those holy war kind of > questions - I don't mean to be flame-bait). > Is there a reason this is a mailing list instead of a newsgroup? Because some of us prefer mail lists to newsgroups? Actually, a better question might be - where is (or why isn't there) a newsgroup gateway for the list? > (Getting 3+ digests per day (unthreaded) is kind of cumbersome and doesn't > seem like the most efficient system....) > I just joined the digest list a week or so ago, and it's been very useful, > but a bit awkward to read through. About the only problem I have is the loss of headers in the digest version, and that's minor. Of course, my mail reader quite happily bursts and threads the digests for me with a couple of keystrokes. ; Wed, 18 Oct 2000 11:43:50 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.37]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3221800; Wed, 18 Oct 2000 13:43:46 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 7C02658; Wed, 18 Oct 2000 13:51:03 -0500 (CDT) Date: Wed, 18 Oct 2000 13:51:03 -0500 From: Michael Urban To: Marko Ruban Cc: freebsd-questions@freebsd.org Subject: Re: gnats Message-ID: <20001018135103.A2829@tznet.com> References: <000801c038bf$0f364de0$0973b018@sttls1.wa.home.com> <00101819582300.05916@marbsd.mark.tninet.se> <39EDEBB7.9B0199A@tellurian.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39EDEBB7.9B0199A@tellurian.com>; from marko@tellurian.com on Wed, Oct 18, 2000 at 02:28:07PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think this guy was looking for information on insects, and was upset that our "electronic website" gave him information on computers instead. I think the flying insect "gnat" is why he said "real gnats" :) I ran some searched on a few sites and most come up with the computer gnats sites before listing sites regarding insects. On Wed, Oct 18, 2000 at 02:28:07PM -0400, Marko Ruban wrote: > > On Wed, 18 Oct 2000, Tom Kocir wrote: > > (edited for readability) > > > > > trying to find out simple things about real gnats but you assholes get in > > > the way with your fucked up electronic web sites, this sucks a big dick. > > Just wondering what are the "real" gnats and what are "fake" ones ? > I know neither :) > > BTW: Yahoo listed 16 sites *grin* > > > try entering gnats -gnu -bsd -linux -database as a search at www.google.com > > and we are all really sorry to have hindered your search for knowledge > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:55:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.hcvlny.cv.net (mx1.hcvlny.cv.net [167.206.112.76]) by hub.freebsd.org (Postfix) with ESMTP id B212737B4CF for ; Wed, 18 Oct 2000 11:55:48 -0700 (PDT) Received: from s1.optonline.net (s1.optonline.net [167.206.112.6]) by mx1.hcvlny.cv.net (8.10.2/8.10.2) with ESMTP id e9IItg018935 for ; Wed, 18 Oct 2000 14:55:42 -0400 (EDT) Received: from downstairs (ool-18bd8597.dyn.optonline.net [24.189.133.151]) by s1.optonline.net (8.10.2/8.10.2) with ESMTP id e9IIten11502 for ; Wed, 18 Oct 2000 14:55:40 -0400 (EDT) Message-Id: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> X-Sender: mvanberk@mail-hub.optonline.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Oct 2000 14:55:41 -0400 To: freebsd-questions@freebsd.org From: Bigwillie Subject: QT2.2.0 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 I installed kde 1.94 via packages (which is way faster than through the ports) and supposedly qt 2.2.0 is installed on my system. I found out by invoking pkg_info -a | grep qt. Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot find it. Can anyone point me to where the headers and libraries are located for qt 2.2.0? I tried using /usr/X11R6/include/qt, but that didn't work. Thanks One side note, can anyone actually log out of KDE 1.94, I have to kill X to get out. _________________________________________ Steiny's Studio Pachyderm Productions http://steiny.hypermart.net mailto:info@steiny.hypermart.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 11:55:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from akira.lanfear.com (akira.lanfear.com [208.12.11.174]) by hub.freebsd.org (Postfix) with ESMTP id 731A237B479 for ; Wed, 18 Oct 2000 11:55:52 -0700 (PDT) Received: from jishin (dyn-dial3-37-sea.bazillion.com [64.92.50.37]) by akira.lanfear.com (8.9.3/8.9.3) with SMTP id LAA22684 for ; Wed, 18 Oct 2000 11:55:44 -0700 (PDT) (envelope-from marcw@lanfear.com) Message-ID: <003101c038e9$ea6b2640$0800000a@lanfear.com> From: "Marc Wandschneider" To: Subject: overriding db.h Date: Wed, 18 Oct 2000 11:58:04 +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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG blaugh! i hope this isn't so ridiculously simple i'm looking like a moron here, but i've run into something that i'm not sure of what the best solution is: i'm writing an application that uses the DB interfaces, and FreeBSD only seems to have the old 1.85 ones. So, I've downloaded the new 3.x ones, and have installed them in /usr/local/lib/db-3.1.17. So, the question is: how do i have #include and -ldb use the new ones in /usr/local/lib/etc ... and not the ones in /usr/include and /usr/lib without simply deleting the old ones .. ??? i've been looking at the -nostdinc flags and all that jazz, but am hoping there is a more 'common' way of doing this. any suggestions appreciated. thanks! marc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12: 2:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 8010437B4D7 for ; Wed, 18 Oct 2000 12:02:47 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id MAA03466; Wed, 18 Oct 2000 12:02:45 -0700 Message-ID: <39EDF3D5.EF200CFF@urx.com> Date: Wed, 18 Oct 2000 12:02:45 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Bigwillie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: QT2.2.0 References: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bigwillie wrote: > > I installed kde 1.94 via packages (which is way faster than through the > ports) and supposedly qt 2.2.0 is installed on my system. I found out by > invoking pkg_info -a | grep qt. > Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot find it. > Can anyone point me to where the headers and libraries are located for qt > 2.2.0? > I tried using /usr/X11R6/include/qt, but that didn't work. It wouldn't work since you haven't installed it. I tried ruby# locate qt22 /usr/ports/x11-toolkits/qt22 You need to cd there and make and make install Kent > Thanks > One side note, can anyone actually log out of KDE 1.94, I have to kill X to > get out. > > _________________________________________ > Steiny's Studio > Pachyderm Productions > http://steiny.hypermart.net > mailto:info@steiny.hypermart.net > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12: 4: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from uswgco35.uswest.com (uswgco35.uswest.com [199.168.32.124]) by hub.freebsd.org (Postfix) with ESMTP id 42C4337B4D7 for ; Wed, 18 Oct 2000 12:03:59 -0700 (PDT) Received: from egate-co4.uswc.uswest.com (egate-co4.uswc.uswest.com [151.116.25.51]) by uswgco35.uswest.com (8.10.0/8.10.0) with ESMTP id e9IJ3r703171; Wed, 18 Oct 2000 13:03:57 -0600 (MDT) Received: from duntx003.litel.com (localhost [127.0.0.1]) by egate-co4.uswc.uswest.com (8.10.0/8.10.0) with ESMTP id e9IJ3qa09055; Wed, 18 Oct 2000 13:03:53 -0600 (MDT) Received: by DUNTX003 with Internet Mail Service (5.5.2650.21) id <46Y6M6H7>; Wed, 18 Oct 2000 15:04:11 -0400 Message-ID: <9D35FA2F8EFCD111BA5A00805FA75E870846497B@fdntx001> From: "Cribbins, Jason" To: Troy Settle Cc: questions@FreeBSD.ORG Subject: RE: mailing list vs. newsgroup? Date: Wed, 18 Oct 2000 14:57:24 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >In the bad old days of pop3, I had numerous filtering/sorting rules in place >to sort my messages as they came down. I hope I never have to do it that >way again. > Bad old days? What ISP do you have that doesn't use POP3 email? I have yet to find an ISP for any home user that uses anything but POP3. I only see IMAP in large companies like the one I work for. It would seem to me that pop3 is still very much alive and the choice of all ISPs I know....although I am not sure why. >-- > Troy Settle > Pulaski Networks > 540.994.4254 > >It's always a long day, 86400 doesn't fit into a short > > > >> -----Original Message----- >> From: owner-freebsd-questions@FreeBSD.ORG >> [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Matthew Rochlin >> Sent: Wednesday, October 18, 2000 12:08 PM >> To: questions@FreeBSD.ORG >> Subject: mailing list vs. newsgroup? >> >> >> Just curious (and forgive me if this is one of those holy war kind of >> questions - I don't mean to be flame-bait). >> Is there a reason this is a mailing list instead of a newsgroup? >> >> (Getting 3+ digests per day (unthreaded) is kind of cumbersome >> and doesn't >> seem like the most efficient system....) >> I just joined the digest list a week or so ago, and it's been >> very useful, >> but a bit awkward to read through. >> Many BSD releated newsgroups get significantly less message volume than >> this list. >> Thanks >> ============= >> Matthew Rochlin >> 708 Nowita Place >> Venice, CA 90291 >> v. (310) 821-1819 >> f. (240) 220-5634 >> >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12: 4:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id CA7EE37B4CF for ; Wed, 18 Oct 2000 12:04:54 -0700 (PDT) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id e9IJ4kK10608; Wed, 18 Oct 2000 12:04:46 -0700 (PDT) Message-Id: <200010181904.e9IJ4kK10608@ptavv.es.net> To: Mike Meyer Cc: Mike Doyle , questions@FreeBSD.ORG Subject: Re: Location of OpenSSH/SSH ? In-reply-to: Your message of "Wed, 18 Oct 2000 13:24:43 CDT." <14829.60139.860388.48885@guru.mired.org> Date: Wed, 18 Oct 2000 12:04:46 -0700 From: "Kevin Oberman" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > From: Mike Meyer > Date: Wed, 18 Oct 2000 13:24:43 -0500 (CDT) > Sender: owner-freebsd-questions@FreeBSD.ORG > > Mike Doyle writes: > > I have just installed FreeBSD 4.1 from the installation CDs, and > > I can't find where OpenSSH is? Is it installed as part of > > one of the base distributions? Is it one of the packages? > > On 4.1, it's not in the base distribution. I doubt it's available as a > package, either. > > > Or do I have to download the source from the OpenSSH website and > > install the port? > > That's one choice. The other is to download the FreeBSD sources for > 4.1.1 or later (see "Staying STABLE with FreeBSD" in the handbook), at > which point OpenSSH is part of the bas distribution. OpenSSH is a part of all FreeBSD distributions from 4.0 on, albeit a version that uses RSAREF for USA residents. Just install the crypto stuff from sysinstall and OpenSSH will be there. sshd is in /usr/sbin and the rest is in /uer/bin. The config files, host keys, etc. are in /etc/ssh. If you lie about being a USA resident to aversion prior to 4.1.1, it will build the international RSA implementation just like 4.1.1 will. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12: 9:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bogon.kjsl.com (bogon.kjsl.com [206.55.236.195]) by hub.freebsd.org (Postfix) with ESMTP id 96A0837B4C5 for ; Wed, 18 Oct 2000 12:09:44 -0700 (PDT) Received: from karenium.kjsl.com ([206.55.236.202]) by bogon.kjsl.com (8.9.3/8.9.3) with ESMTP id KAA18223; Wed, 18 Oct 2000 10:23:07 -0700 (PDT) Received: (from javier@localhost) by karenium.kjsl.com (8.9.3/8.9.3) id KAA83477; Wed, 18 Oct 2000 10:23:07 -0700 (PDT) From: Javier Henderson MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14829.56443.707869.531484@karenium.kjsl.com> Date: Wed, 18 Oct 2000 10:23:07 -0700 (PDT) To: Jeremy Vandenhouten Cc: freebsd-questions@FreeBSD.ORG Subject: Re: RE: mailing list vs. newsgroup? In-Reply-To: <3777e9375635.3756353777e9@marquette.edu> References: <3777e9375635.3756353777e9@marquette.edu> X-Mailer: VM 6.75 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jeremy Vandenhouten writes: > My companies firewall/proxies (considering that I end up going through > 2) do not allow me to read external newsgroups. OK, but consider that gatewaying the mailing list into newsgroups would not imply that the mailing list would go away. -jav To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12:12:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bogon.kjsl.com (bogon.kjsl.com [206.55.236.195]) by hub.freebsd.org (Postfix) with ESMTP id 6A01837B4F9 for ; Wed, 18 Oct 2000 12:12:17 -0700 (PDT) Received: from karenium.kjsl.com ([206.55.236.202]) by bogon.kjsl.com (8.9.3/8.9.3) with ESMTP id JAA15971 for ; Wed, 18 Oct 2000 09:16:35 -0700 (PDT) Received: (from javier@localhost) by karenium.kjsl.com (8.9.3/8.9.3) id JAA81529; Wed, 18 Oct 2000 09:16:33 -0700 (PDT) From: Javier Henderson MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14829.52449.239643.635269@karenium.kjsl.com> Date: Wed, 18 Oct 2000 09:16:33 -0700 (PDT) To: freebsd-questions@FreeBSD.ORG Subject: mailing list vs. newsgroup? In-Reply-To: <4.3.2.7.2.20001018090345.018cf0d0@pop3.norton.antivirus> References: <4.3.2.7.2.20001018090345.018cf0d0@pop3.norton.antivirus> X-Mailer: VM 6.75 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew Rochlin writes: > Just curious (and forgive me if this is one of those holy war kind of > questions - I don't mean to be flame-bait). > Is there a reason this is a mailing list instead of a newsgroup? > > (Getting 3+ digests per day (unthreaded) is kind of cumbersome and doesn't > seem like the most efficient system....) > I just joined the digest list a week or so ago, and it's been very useful, > but a bit awkward to read through. > Many BSD releated newsgroups get significantly less message volume than > this list. I've been pondering about the benefits of having a freebsd hierarchy (ie, freebsd.questions, freebsd.isp, etc). Gatewaying the lists into the groups would be simple. But the technicalities of getting it done are probably not the issue. I expect some list members would be concerned about their addresses being easier to harvest by spammers, etc. But if there's enough interest, and consensus on this being a good thing, I'd be happy to set up the mail <-> news gateway here and feed the groups to whomever wants them via nntp or uucp/tcp. -jav To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12:18: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.psknet.com (orion.psknet.com [207.198.61.253]) by hub.freebsd.org (Postfix) with SMTP id 914ED37B4D7 for ; Wed, 18 Oct 2000 12:17:53 -0700 (PDT) Received: (qmail 21537 invoked from network); 18 Oct 2000 19:17:51 -0000 Received: from arcadia.psknet.com (HELO arcadia) (207.198.61.250) by orion.psknet.com with SMTP; 18 Oct 2000 19:17:51 -0000 From: "Troy Settle" To: "Cribbins, Jason" Cc: Subject: RE: mailing list vs. newsgroup? Date: Wed, 18 Oct 2000 15:17:51 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <9D35FA2F8EFCD111BA5A00805FA75E870846497B@fdntx001> X-AntiVirus: scanned for viruses by AMaViS 0.2.1-pre3 (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been in the ISP biz for about 5 years now. POP3 is the only service I promote to my users. If they want to use IMAP, they're able to do so, but I will not directly support it. That said, I myself, will only use IMAP for mail access. I need to be able to read and reference my mail from anywhere, be it from my office, home, hotel room, or a friend's house via the web. POP3 just doesn't offer that level of flexability. Now, back to the topic. IMO, email is *much* more efficient for the end user than usenet. I personally wish that those use run Usenet would realize that it's a dinosaur that should be left for dead. The only real advantage to usenet, is that it's /much/ easier to find forums of interest. It's also easier for spammers to harvest email addresses :) Anyhoo, this really isn't a point worth argument. If you want to read the FreeBSD lists via usenet, set up a gateway to your local news server. -- Troy Settle Pulaski Networks 540.994.4254 It's always a long day, 86400 doesn't fit into a short > -----Original Message----- > From: Cribbins, Jason [mailto:Jason.Cribbins@qwest.com] > Sent: Wednesday, October 18, 2000 2:57 PM > To: Troy Settle > Cc: questions@FreeBSD.ORG > Subject: RE: mailing list vs. newsgroup? > > > >In the bad old days of pop3, I had numerous filtering/sorting rules in > place > >to sort my messages as they came down. I hope I never have to do it that > >way again. > > > Bad old days? What ISP do you have that doesn't use POP3 email? > I have yet > to find an ISP for any home user that uses anything but POP3. I only see > IMAP in large companies like the one I work for. It would seem to me that > pop3 is still very much alive and the choice of all ISPs I > know....although > I am not sure why. > > >-- > > Troy Settle > > Pulaski Networks > > 540.994.4254 > > > >It's always a long day, 86400 doesn't fit into a short > > > > > > > >> -----Original Message----- > >> From: owner-freebsd-questions@FreeBSD.ORG > >> [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of > Matthew Rochlin > >> Sent: Wednesday, October 18, 2000 12:08 PM > >> To: questions@FreeBSD.ORG > >> Subject: mailing list vs. newsgroup? > >> > >> > >> Just curious (and forgive me if this is one of those holy war kind of > >> questions - I don't mean to be flame-bait). > >> Is there a reason this is a mailing list instead of a newsgroup? > >> > >> (Getting 3+ digests per day (unthreaded) is kind of cumbersome > >> and doesn't > >> seem like the most efficient system....) > >> I just joined the digest list a week or so ago, and it's been > >> very useful, > >> but a bit awkward to read through. > >> Many BSD releated newsgroups get significantly less message > volume than > >> this list. > >> Thanks > >> ============= > >> Matthew Rochlin > >> 708 Nowita Place > >> Venice, CA 90291 > >> v. (310) 821-1819 > >> f. (240) 220-5634 > >> > >> > >> > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > >> with "unsubscribe freebsd-questions" in the body of the message > >> > >> > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12:28:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tethys.ringofsaturn.com (tethys.ringofsaturn.com [206.50.17.51]) by hub.freebsd.org (Postfix) with ESMTP id 0ED1B37B479 for ; Wed, 18 Oct 2000 12:28:30 -0700 (PDT) Received: from ringofsaturn.com (phoebe.ringofsaturn.com [206.50.17.53]) by tethys.ringofsaturn.com (8.9.3/8.9.3) with ESMTP id OAA84759 for ; Wed, 18 Oct 2000 14:28:45 -0500 (CDT) (envelope-from rnejdl@ringofsaturn.com) Message-ID: <39EDF951.4C95C455@ringofsaturn.com> Date: Wed, 18 Oct 2000 14:26:09 -0500 From: Rusty Nejdl X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Where to post... Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Believe it or not, I just wanted to know where I should post a compliment on the new FreeBSD 4.1 OS that you guys have released. I have successfully gotten it working on my laptop with the NIC, graphics, and sound, so I wanted to say thanks for a few new features that made my life much easier. Rusty Nejdl CCNA Training Engineer Verio, INC. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 12:50:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortes.cibnor.mx (cortes.cibnor.mx [200.23.161.225]) by hub.freebsd.org (Postfix) with ESMTP id CA4D737B4CF for ; Wed, 18 Oct 2000 12:50:36 -0700 (PDT) Received: from localhost (cestrada@localhost) by cortes.cibnor.mx (8.9.3/8.9.3) with ESMTP id NAA11910 for ; Wed, 18 Oct 2000 13:50:30 -0600 (MDT) Date: Wed, 18 Oct 2000 13:50:29 -0600 (MDT) From: "Cesar Estrada [INF]" To: freebsd-questions@FreeBSD.ORG Subject: DHCP Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I want to configure my server with DHCP, Could you help me, please. Thanks .... Ing. Cesar Estrada Enriquez Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico Division de Diseno Tecnologico, Redes. Tel.(112) 5 36 33 Ext. 3177,3124 E-mail: cestrada@cibnor.mx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:19:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 9B44737B4F9 for ; Wed, 18 Oct 2000 13:19:44 -0700 (PDT) Received: from spamer_death (user-vcauhhj.dsl.mindspring.com [216.175.70.51]) by smtp6.mindspring.com (8.9.3/8.8.5) with SMTP id QAA28267; Wed, 18 Oct 2000 16:14:40 -0400 (EDT) Message-Id: <3.0.5.32.20001018161439.007ef8c0@mindsieve.com> X-Sender: allenc@mindsieve.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 18 Oct 2000 16:14:39 -0400 To: Matthew Rochlin , freebsd-questions@FreeBSD.ORG From: Allen Cleveland Subject: Re: mailing list vs. newsgroup? In-Reply-To: <4.3.2.7.2.20001018090345.018cf0d0@pop3.norton.antivirus> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 09:07 AM 10/18/00 -0700, Matthew Rochlin wrote: >Just curious (and forgive me if this is one of those holy war kind of >questions - I don't mean to be flame-bait). >Is there a reason this is a mailing list instead of a newsgroup? > >(Getting 3+ digests per day (unthreaded) is kind of cumbersome and doesn't >seem like the most efficient system....) >I just joined the digest list a week or so ago, and it's been very useful, >but a bit awkward to read through. >Many BSD releated newsgroups get significantly less message volume than >this list. Using a subscription based news server, I find the following: Path: newscene.com!newscene!newscene!novia!newsfeed.skycache.com!Cidera!news-hub.c ableinet.net!diablo.netcom.net.uk!netcom.net.uk!news.tele.dk!129.240.148.23! uio.no!nntp.uio.no!hrotti.ifi.uio.no!ifi.uio.no!internet-mailinglist Newsgroups: fa.freebsd.questions Original-Date: Wed, 18 Oct 2000 09:07:52 -0700 To: questions@freebsd.org From: Matthew Rochlin Subject: mailing list vs. newsgroup? Path: newscene.com!newscene!newscene!novia!newsfeed.direct.ca!look.ca!News.Math.NC TU.edu.tw!freebsd.ntu.edu.tw!FreeBSD.csie.NCTU.edu.tw!not-for-mail From: rochlin@mediaone.net (Matthew Rochlin) Newsgroups: mailing.freebsd.questions Subject: mailing list vs. newsgroup? Date: 19 Oct 2000 00:08:24 +0800 Path: newscene.com!newscene!newscene!novia!howland.erols.net!npeer.kpnqwest.net!nm aster.kpnqwest.net!blackbush.xlink.net!isar.de!news.muenchen.roses.de!news.c amelot.de!gateway From: rochlin@mediaone.net (Matthew Rochlin) Newsgroups: muc.lists.freebsd.questions,mpc.lists.freebsd.questions Subject: mailing list vs. newsgroup? Date: 18 Oct 2000 18:08:04 +0200 [Two for one there :) ] Path: newscene.com!newscene!newscene!novia!cyclone2.usenetserver.com!news-out.usen etserver.com!hermes.visi.com!news-out.visi.com!newspump.sol.net!news.execpc. com!newshub.sol.net!sol.net!newspeer.sol.net!ns.sol.net!lists.sol.net!not-fo r-mail Newsgroups: sol.lists.freebsd.questions Date: 18 Oct 2000 16:08:07 +0000 X-To: questions@FreeBSD.ORG From: rochlin@mediaone.net Subject: mailing list vs. newsgroup? -- Allen Cleveland allenc@mindsieve.com There is no try. Do, or do not do, but no try. -Yoda Hate spam? Try SpamCop: http://spamcop.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:20:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from akira.lanfear.com (akira.lanfear.com [208.12.11.174]) by hub.freebsd.org (Postfix) with ESMTP id 5514037B4CF for ; Wed, 18 Oct 2000 13:20:21 -0700 (PDT) Received: from jishin (dyn-dial3-181-sea.bazillion.com [64.92.50.181]) by akira.lanfear.com (8.9.3/8.9.3) with SMTP id NAA22774; Wed, 18 Oct 2000 13:20:19 -0700 (PDT) (envelope-from marcw@lanfear.com) Message-ID: <000b01c038f5$baa396c0$0800000a@lanfear.com> From: "Marc Wandschneider" To: "Marc Wandschneider" , Subject: Re: overriding db.h Date: Wed, 18 Oct 2000 13:20:20 +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.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yep, i'm a moron. looks like the first thing i tried had one thing wrong in it, and i never tried it again ... argh! sorry for the wasted bandwidth. marc. ----- Original Message ----- From: "Marc Wandschneider" To: Sent: Wednesday, October 18, 2000 11:58 AM Subject: overriding db.h > > blaugh! > > i hope this isn't so ridiculously simple i'm looking like a moron here, > but i've run into something that i'm not sure of what the best solution is: > > i'm writing an application that uses the DB interfaces, and FreeBSD only > seems to have the old 1.85 ones. So, I've downloaded the new 3.x ones, and > have installed them in /usr/local/lib/db-3.1.17. So, the question is: how > do i have > > #include > > and > > -ldb > > use the new ones in /usr/local/lib/etc ... and not the ones in > /usr/include and /usr/lib without simply deleting the old ones .. ??? > > i've been looking at the -nostdinc flags and all that jazz, but am > hoping there is a more 'common' way of doing this. > > any suggestions appreciated. > > thanks! > > marc. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:24: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id CD33837B4E5 for ; Wed, 18 Oct 2000 13:23:53 -0700 (PDT) Received: from cm-206-31-81-152.gulfbreeze.mediacom.ispchannel.com ([206.31.81.152]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001018202625.SHNI382.smtp2a@cm-206-31-81-152.gulfbreeze.mediacom.ispchannel.com>; Wed, 18 Oct 2000 13:26:25 -0700 Date: Wed, 18 Oct 2000 15:23:52 -0500 (CDT) From: Steve To: "Cesar Estrada [INF]" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DHCP 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 www.mostgraveconcern.com/freebsd On Wed, 18 Oct 2000, Cesar Estrada [INF] wrote: > > Hi, I want to configure my server with DHCP, Could you help me, please. > > Thanks .... > > Ing. Cesar Estrada Enriquez > Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico > Division de Diseno Tecnologico, Redes. > Tel.(112) 5 36 33 Ext. 3177,3124 > E-mail: cestrada@cibnor.mx > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:36:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 9176B37B4C5 for ; Wed, 18 Oct 2000 13:36:18 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 5C4CA3293; Tue, 17 Oct 2000 12:59:47 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 4950F3292 for ; Tue, 17 Oct 2000 12:59:47 +0000 (GMT) Date: Tue, 17 Oct 2000 12:59:47 +0000 (GMT) From: Rick Hamell To: freebsd-questions@freebsd.org Subject: CSH Shell 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 Taking my first steps into scripting, my first task is to figure out how to customize csh. Problem is, I can't seem to make something like set prompt="'hostname' %" work... The command hostname dosen't seem to work at all. I figure I've got the syntax wrong, but where... ? :) What I get is 'hostname' btw. Thanks much! Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:40:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from corpmx3.CORP.HARRIS.COM (corpmx3.corp.harris.com [137.237.103.9]) by hub.freebsd.org (Postfix) with ESMTP id 0D7DA37B4CF for ; Wed, 18 Oct 2000 13:40:19 -0700 (PDT) Received: by corpmx3 with Internet Mail Service (5.5.2650.21) id <4S8ZZFA5>; Wed, 18 Oct 2000 15:30:13 -0400 Message-ID: <95B669A7D872D41182A600508BDFFB8C12D5C0@mlbmx7.ess.harris.com> From: "Potts, Ross" To: FreeBSD questions Subject: RE: gnats Date: Wed, 18 Oct 2000 15:30:10 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maybe he's looking for a brain donor. Can't have generic quality in a situation like that ;-) -----Original Message----- From: Marko Ruban [SMTP:marko@tellurian.com] Sent: Wednesday, October 18, 2000 2:28 PM To: FreeBSD questions Subject: Re: gnats > On Wed, 18 Oct 2000, Tom Kocir wrote: > (edited for readability) > > > trying to find out simple things about real gnats but you assholes get in > > the way with your fucked up electronic web sites, this sucks a big dick. Just wondering what are the "real" gnats and what are "fake" ones ? I know neither :) BTW: Yahoo listed 16 sites *grin* > try entering gnats -gnu -bsd -linux -database as a search at www.google.com > and we are all really sorry to have hindered your search for knowledge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:49:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.221.73.131]) by hub.freebsd.org (Postfix) with ESMTP id 04E0337B4D7 for ; Wed, 18 Oct 2000 13:49:36 -0700 (PDT) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id QAA48289; Wed, 18 Oct 2000 16:39:49 -0400 (EDT) (envelope-from webmaster@wmptl.com) Message-ID: <39EE0C0E.8F93BAC0@wmptl.com> Date: Wed, 18 Oct 2000 16:46:06 -0400 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Fernando Gleiser Cc: questions@freebsd.org Subject: Re: Proxying intranet to the internet Was: (No Subject) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Fernando Gleiser wrote: > > At work I need to configure a reverse HTTP proxy to control access to > the internal web servers. > > Here's my setup > > Internet > | > +-----+ > DMZ --------| Fw | > +-----+ > | > | > > Internal LAN > > The idea is to install the reverse proxy in the DMZ. The web servers are on > the internal LAN. > Does anybody know a suitable solution for a reverse proxy? > Can apache or squid be configured to act as a reverse proxy. > > Any pointers/url/answers would be apreciated > > Sorry for my bad english > > Thanks in advance > > Fer > > "When I say "dogs", I'm talking about dogs, which are large, bounding, > salivating animals, usually with bad breath. I am not talking about those > little squeaky things you can hold on your lap and carry around. Zoologically > speaking, these are not dogs at all; they are members of the pillow family." > Dave Barry. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Squid will do proxy in basically any direction. The config should work almost out-of-the-box, but you may want to use some sort of authentication for security. PLEASE use a more suitable topic when asking questions to questions@freebsd.org, there are several hundred messages sent here daily, and if you're subject isn't very descriptive your message will most likely be overlooked. This may be a reason why you're not getting the response you thought you would from the list, so long as you don't put a subject on your emails, don't blame us for bad support allright ;) -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:51:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fremont.bolingbroke.com (adsl-216-102-90-210.dsl.snfc21.pacbell.net [216.102.90.210]) by hub.freebsd.org (Postfix) with ESMTP id 6A96937B4E5 for ; Wed, 18 Oct 2000 13:51:01 -0700 (PDT) Received: from fremont.bolingbroke.com (fremont.bolingbroke.com [216.102.90.210]) by fremont.bolingbroke.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id NAA74482; Wed, 18 Oct 2000 13:50:58 -0700 (PDT) Date: Wed, 18 Oct 2000 13:50:58 -0700 (PDT) From: Ken Bolingbroke To: Rick Hamell Cc: freebsd-questions@FreeBSD.ORG Subject: Re: CSH Shell In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You want to use backticks instead of single quotes, that is, where you currently have: set prompt="'hostname' %" Change the single quotes to backticks: set prompt="`hostname` %" The backticks tell the shell to execute the command inside them, and use the output instead. Single quotes in that context have no special meaning, which is why you see the literal 'hostname' as your prompt. Ken On Tue, 17 Oct 2000, Rick Hamell wrote: > Taking my first steps into scripting, my first task is to figure > out how to customize csh. Problem is, I can't seem to make something like > set prompt="'hostname' %" work... The command hostname dosen't seem to > work at all. I figure I've got the syntax wrong, but where... ? :) What I > get is 'hostname' btw. Thanks much! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:54:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gelemna.org (cc466188-a.pinev1.in.home.com [24.17.49.208]) by hub.freebsd.org (Postfix) with ESMTP id 44F5437B4C5 for ; Wed, 18 Oct 2000 13:54:25 -0700 (PDT) Received: (from croyle@localhost) by gelemna.org (8.11.0/8.9.3) id e9IKrne00756; Wed, 18 Oct 2000 15:53:49 -0500 (EST) (envelope-from croyle@gelemna.org) To: Matthew Rochlin Cc: questions@freebsd.org Subject: Re: mailing list vs. newsgroup? References: <4.3.2.7.2.20001018090345.018cf0d0@pop3.norton.antivirus> From: Don Croyle Date: 18 Oct 2000 15:53:49 -0500 Organization: Minimal at best In-Reply-To: Matthew Rochlin's message of "Wed, 18 Oct 2000 09:07:52 -0700" Message-ID: <86aec1na5e.fsf@emerson.gelemna.org> Lines: 19 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew Rochlin writes: > Just curious (and forgive me if this is one of those holy war kind of > questions - I don't mean to be flame-bait). > > Is there a reason this is a mailing list instead of a newsgroup? Worldwide newsgroups are harder to keep clean and are subject to propagation problems. I'm reading this in gelemna.list.freebsd.questions (a non-distributed newsgroup on a machine not reachable from outside my LAN). Gatewaying mailing lists to non-local newsgroups, especially bidirectionally, is generally considered a bad idea, but gatewaying to local groups is fairly easy. The news/p5-Gateway port comes with a sample listgate program that needs only a little editing to be usable. -- I've always wanted to be a dilettante, but I've never quite been ready to make the commitment. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:55:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wmptl.com (mail2.wmptl.com [216.221.73.131]) by hub.freebsd.org (Postfix) with ESMTP id 37FD937B4C5 for ; Wed, 18 Oct 2000 13:55:11 -0700 (PDT) Received: from wmptl.com ([10.0.0.168]) by mail2.wmptl.com (8.9.3/8.9.3) with ESMTP id QAA48367; Wed, 18 Oct 2000 16:45:35 -0400 (EDT) (envelope-from webmaster@wmptl.com) Message-ID: <39EE0D68.E0102B92@wmptl.com> Date: Wed, 18 Oct 2000 16:51:52 -0400 From: Nathan Vidican Reply-To: webmaster@wmptl.com X-Mailer: Mozilla 4.72 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: James A Wilde Cc: questions@freebsd.org, privat-mc@gmx.de Subject: Re: Windows takes up less memory than Unix Was: (no subject) References: <000201c036d9$35df6590$8208a8c0@iqunlimited.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG James A Wilde wrote: > > My limited experience indicates that Unix is much more damanding of the > hardware than, say, Windows. > > You may have 192 Mb ram, but if 64 Mb of it is shaky from the Unix point of > view you can get signal 11 and still be able to run Windows with just the > occasional GPF, which makes you curse and reboot. Try taking out your RAM > chips one at a time and see how you get on. If you find that install > continues when, say, chip 2 is removed, try and sell that one to a Windows > user and get yourself a new one. > > If I'm on the wrong track, hopefully someone will come in on this thread and > correct me. > > mvh/regards > > James > > > -----Original Message----- > > From: Mc Claude [mailto:privat-mc@gmx.de] > > Sent: Sunday, October 15, 2000 12:43 > > To: james.wilde@telia.com > > Subject: > > > > > > Hello! > > > > Yes it isn't Fault 11, it is Signal 11! But I think I can full fill all > > hardware requirements! > > 192 MB RAM, enough space on HD! I've downloaded the FreeBSD from server as > > ISO then I burned it on a CD but this CD can't be loaded after BIOS > > sequence! So I've made boot disks! And then I've did all which > > you have read > > in the last e-mail! So I hope you help me! > > > > CU! > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Your experience must be VERY limited then, because I've got 386/486 machines running with 4-8megs of ram just fine (usually at under 10% of capacity at that!), like to see that from any winblows box. -- Nathan Vidican webmaster@wmptl.com Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 13:56:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 878CE37B479 for ; Wed, 18 Oct 2000 13:56:37 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 32FD93293; Tue, 17 Oct 2000 13:20:03 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 17EB53292; Tue, 17 Oct 2000 13:20:03 +0000 (GMT) Date: Tue, 17 Oct 2000 13:20:03 +0000 (GMT) From: Rick Hamell To: Ken Bolingbroke Cc: freebsd-questions@FreeBSD.ORG Subject: Re: CSH Shell In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks... ! :) And the moral of todays story... Certain Windows 2000 fonts interpret ' and ` as ' :( Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org On Wed, 18 Oct 2000, Ken Bolingbroke wrote: > > You want to use backticks instead of single quotes, that is, where you > currently have: > > set prompt="'hostname' %" > > Change the single quotes to backticks: > > set prompt="`hostname` %" > > The backticks tell the shell to execute the command inside them, and > use the output instead. Single quotes in that context have no special > meaning, which is why you see the literal 'hostname' as your prompt. > > Ken > > On Tue, 17 Oct 2000, Rick Hamell wrote: > > > Taking my first steps into scripting, my first task is to figure > > out how to customize csh. Problem is, I can't seem to make something like > > set prompt="'hostname' %" work... The command hostname dosen't seem to > > work at all. I figure I've got the syntax wrong, but where... ? :) What I > > get is 'hostname' btw. Thanks much! > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14: 5:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zog.mainline.co.uk (zog.mainline.co.uk [212.158.6.50]) by hub.freebsd.org (Postfix) with ESMTP id F173837B4C5 for ; Wed, 18 Oct 2000 14:05:05 -0700 (PDT) Received: from intergraph ([212.158.6.226]) by zog.mainline.co.uk (8.9.2/8.9.3) with SMTP id WAA29535; Wed, 18 Oct 2000 22:05:01 +0100 (BST) From: "Colin Jack" To: Cc: Subject: RE: Mailing Users Date: Wed, 18 Oct 2000 22:02:13 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal In-Reply-To: <39EDC4D8.7C86AD20@urx.com> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We're talking POP clients here - that's why it needs to be an email message. I've had a couple of pretty cool suggestions which I'm running with Colin -----Original Message----- From: Kent Stewart [mailto:kstewart@urx.com] Sent: 18 October 2000 16:42 To: Colin Jack Cc: Gus Mueller; freebsd-questions@FreeBSD.ORG Subject: Re: Mailing Users Colin Jack wrote: > > That's quite a cool idea - except that my perl skills are VERY limited :-) > ... > > You aren't aware of anything like this any of the online script libraries > are you? I always thought that was one of the purposes of /etc/motd. You can add your scheduled maintenance in there and revert back it to your standard login message after the shutdown. Kent > > Colin > > -----Original Message----- > From: gus@elvis.mu.org [mailto:gus@elvis.mu.org]On Behalf Of Gus Mueller > Sent: 18 October 2000 14:23 > To: Colin Jack > Subject: Re: Mailing Users > > You could write a little perl script that looks at /etc/passwd and sends an > emamil for each entry in there. > > -gus > > Colin Jack (colin@mainline.co.uk) wrote: > > I am a relative newbie to freebsd, so please bear with me. > > > > Is there a way that I can send an email to all users on a server? The idea > > is to warn everyone of downtime for maintenance, but with a couple of > > hundred users .... there HAS to be an easy way :-) > > > > Thanks > > > > Colin > > > > Colin Jack > > Webmaster - Mainline Internet > > colin@mainline.co.uk > > http://www.mainline.co.uk > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14: 5:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zog.mainline.co.uk (zog.mainline.co.uk [212.158.6.50]) by hub.freebsd.org (Postfix) with ESMTP id 510BF37B4C5 for ; Wed, 18 Oct 2000 14:05:12 -0700 (PDT) Received: from intergraph ([212.158.6.226]) by zog.mainline.co.uk (8.9.2/8.9.3) with SMTP id WAA29526; Wed, 18 Oct 2000 22:04:59 +0100 (BST) From: "Colin Jack" To: "Paul Herman" Cc: Subject: RE: Mailing Users Date: Wed, 18 Oct 2000 22:02:11 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thats quite a cool idea ... will do some experimenting. Thanks Colin -----Original Message----- From: pherman@bagabeedaboo.security.at12.de [mailto:pherman@bagabeedaboo.security.at12.de]On Behalf Of Paul Herman Sent: 18 October 2000 16:15 To: Colin Jack Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mailing Users On Wed, 18 Oct 2000, Colin Jack wrote: > I am a relative newbie to freebsd, so please bear with me. > > Is there a way that I can send an email to all users on a server? > The idea is to warn everyone of downtime for maintenance, but with > a couple of hundred users .... there HAS to be an easy way :-) A lot of people told you how to write messages to those logged in, which might serve your needs, but if you definately would rather send a mail to all your users, you can make an alias in /etc/mail/aliases: all.users: :include:/var/log/user.list or whatever, and then just have a cronjob that updates this file every night or so which does something like: awk -F: '($3>999 && $3<65534) { print $1; }' /etc/passwd > /var/log/user.list -Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14: 8:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id 8B74237B4C5 for ; Wed, 18 Oct 2000 14:08:08 -0700 (PDT) Received: from dougy (dougy.apana.org.au [203.3.126.131]) by bryden.apana.org.au (8.9.3/8.9.3) with ESMTP id HAA21083; Thu, 19 Oct 2000 07:12:48 +1000 (EST) (envelope-from dougy@bryden.apana.org.au) Message-ID: <000b01c03948$7d25ed40$837e03cb@dougy> From: "Doug Young" To: "Rick Hamell" Cc: References: Subject: Re: Videocard query Date: Thu, 19 Oct 2000 07:14:45 +1000 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks Rick ..... I've had very good results with those in Solaris & Win2000 .... certainly good value things and nice to know they work in this situation. ----- Original Message ----- From: "Rick Hamell" To: "Doug Young" Cc: Sent: Tuesday, October 17, 2000 4:52 PM Subject: Re: Videocard query > > I use an ATI @ Play 98 with 8 megs for 16 bit > 1024x7whatever... works just fine... you can pick them up for about $50 or > so. > Rick > > > ******************************************************************* > Rick's FreeBSD Web page http://heorot.1nova.com/freebsd > Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware > ***FreeBSD - The Power to Serve! http://www.freebsd.org > > On Wed, 18 Oct 2000, Doug Young wrote: > > > I'd appreciate comments from X users as to what videocards work well with XF86Config. I run a > > heap of CLI gateway / webserver / mailserver boxes, but occasionally have a use for GUI stuff as well. > > > > What I'm looking for are reasonably priced (ie not those horribly overpriced Matrox things) PCI or > > AGP videocards that allow something like 16 bit 800x600 resolution or better & which are straightforward > > to configure. I know to avoid rubbish like SiS which rarely work well even in Windows but I have no idea > > exactly what fairly basic cards do give good results. > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14: 9:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortes.cibnor.mx (cortes.cibnor.mx [200.23.161.225]) by hub.freebsd.org (Postfix) with ESMTP id EFDD837B4C5 for ; Wed, 18 Oct 2000 14:09:29 -0700 (PDT) Received: from localhost (cestrada@localhost) by cortes.cibnor.mx (8.9.3/8.9.3) with ESMTP id PAA26301; Wed, 18 Oct 2000 15:09:23 -0600 (MDT) Date: Wed, 18 Oct 2000 15:09:23 -0600 (MDT) From: "Cesar Estrada [INF]" To: Steve Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DHCP In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG thanks for your fast answer.. On Wed, 18 Oct 2000, Steve wrote: > www.mostgraveconcern.com/freebsd > > On Wed, 18 Oct 2000, Cesar Estrada [INF] wrote: > > > > > Hi, I want to configure my server with DHCP, Could you help me, please. > > > > Thanks .... > > > > Ing. Cesar Estrada Enriquez > > Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico > > Division de Diseno Tecnologico, Redes. > > Tel.(112) 5 36 33 Ext. 3177,3124 > > E-mail: cestrada@cibnor.mx > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > Ing. Cesar Estrada Enriquez Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico Division de Diseno Tecnologico, Redes. Tel.(112) 5 36 33 Ext. 3177,3124 E-mail: cestrada@cibnor.mx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14: 9:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 05ADB37B4F9 for ; Wed, 18 Oct 2000 14:09:57 -0700 (PDT) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id e9IL9sK11631; Wed, 18 Oct 2000 14:09:54 -0700 (PDT) Message-Id: <200010182109.e9IL9sK11631@ptavv.es.net> To: Rick Hamell Cc: freebsd-questions@FreeBSD.ORG Subject: Re: CSH Shell In-reply-to: Your message of "Tue, 17 Oct 2000 12:59:47 -0000." Date: Wed, 18 Oct 2000 14:09:54 -0700 From: "Kevin Oberman" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Date: Tue, 17 Oct 2000 12:59:47 +0000 (GMT) > From: Rick Hamell > Sender: owner-freebsd-questions@FreeBSD.ORG > > > Taking my first steps into scripting, my first task is to figure > out how to customize csh. Problem is, I can't seem to make something like > set prompt="'hostname' %" work... The command hostname dosen't seem to > work at all. I figure I've got the syntax wrong, but where... ? :) What I > get is 'hostname' btw. Thanks much! Fist, change the single quotes around 'hostname' to back ticks. Second, if you are running FreeBSD-4.1 or newer you are actually running tcsh and you can do it better with: set prompt="%m%% " There are several prompt setting shortcuts. See man csh for all the details. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:18:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id 8C00D37B4D7 for ; Wed, 18 Oct 2000 14:18:49 -0700 (PDT) Received: from dougy (dougy.apana.org.au [203.3.126.131]) by bryden.apana.org.au (8.9.3/8.9.3) with ESMTP id HAA00182; Thu, 19 Oct 2000 07:23:59 +1000 (EST) (envelope-from dougy@bryden.apana.org.au) Message-ID: <001c01c03949$fbeb46b0$837e03cb@dougy> From: "Doug Young" To: "Mike Meyer" Cc: References: <14829.59552.930931.923116@guru.mired.org> Subject: Re: Videocard query Date: Thu, 19 Oct 2000 07:25:44 +1000 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks Mike ...... I've had very good results from ATI Rage Pro (AGP) cards in Solaris & Win2000 so its good to know they work in X as well. I've been trying to get some older Cirrus Logic (PCI) ones sorted out but finding them more trouble than they are worth .... looks like the chipsets aren't properly supported even though they are in the XFree list. ----- Original Message ----- From: "Mike Meyer" To: "Doug Young" Cc: Sent: Thursday, October 19, 2000 4:14 AM Subject: Re: Videocard query > Doug Young writes: > > I'd appreciate comments from X users as to what videocards work well > > with XF86Config. I run a > > heap of CLI gateway / webserver / mailserver boxes, but occasionally > > have a use for GUI stuff as well. > > Others have mentioned the ATI cards - but always the older ones. ATI > likes to swap chips around, so that one "ATI WonderFoo" board may not > have the same chipset as the "ATI WonderFoo" sitting next to it. On > the other hand, ATI does tend to use the same chipset across a range > of boards, so the that first "WonderFoo", a "RageFoo" and "FooPro" > will all work equally well using the same drivers. > > My gut reaction is that any older brand name video card should work > well without being overly expensive. The name means it should have > been popular, so the bugs should have been ironed out by now. Older > makes that more likely, as well as dropping the cost. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:20:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id B487437B4E5 for ; Wed, 18 Oct 2000 14:20:12 -0700 (PDT) Received: from magpage.com (poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id e9ILK3L14950; Wed, 18 Oct 2000 17:20:03 -0400 Message-ID: <39EE1403.3D84D4BE@magpage.com> Date: Wed, 18 Oct 2000 17:20:03 -0400 From: Daniel Frazier Organization: Magpage Internet Services X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: John Blake Cc: FreeBSD-Questions@FreeBSD.ORG Subject: Re: center "scroll" wheel on Logitech mouse References: <00bf01c03930$bc877020$c26845ab@cisco.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 Blake wrote: > > Hi, > How do I get the center "scroll" wheel on my Logitech mouse to work? > John check this page out... it has some good info on getting wheeled mice to work and a note regarding some logitech mice that will not work. http://www-sop.inria.fr/koala/colas/mouse-wheel-scroll/ -- ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:22:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id A8B6C37B4E5 for ; Wed, 18 Oct 2000 14:22:53 -0700 (PDT) Received: from dougy (dougy.apana.org.au [203.3.126.131]) by bryden.apana.org.au (8.9.3/8.9.3) with SMTP id HAA00200; Thu, 19 Oct 2000 07:28:06 +1000 (EST) (envelope-from oracle@bryden.apana.org.au) Message-ID: <00ac01c0394a$8e4dcb40$837e03cb@dougy> From: "Doug Young" To: "Jeremy Vandenhouten" Cc: References: <33970833a8fe.33a8fe339708@marquette.edu> Subject: Re: Videocard query Date: Thu, 19 Oct 2000 07:29:52 +1000 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks Jeremy ..... I've had a few responses from my posting & every one recommends ATI cards, so that must mean they are a good thing :) I have had very good results with them in Solaris & Win2000, so its nice to know they work well in X as well. ----- Original Message ----- From: "Jeremy Vandenhouten" To: "Doug Young" ; Sent: Thursday, October 19, 2000 12:01 AM Subject: Re: Videocard query > I've been able to pick up slightly older model ATI cards which when > used in conjunction with newer versions of XFree86 provide > acceleration. I recently picked up a Xpert98 8mb PCI card online for 20 > bucks + it had a 25 dollar rebate. (getting paid to buy something, good > concept) I've had good experiences with ATI cards and FreeBSD in > general. > > Good Hunting. > > ----- Original Message ----- > From: "Doug Young" > Date: Wednesday, October 18, 2000 7:23 am > Subject: Videocard query > > > I'd appreciate comments from X users as to what videocards work > > well with XF86Config. I run a > > heap of CLI gateway / webserver / mailserver boxes, but > > occasionally have a use for GUI stuff as well. > > > > What I'm looking for are reasonably priced (ie not those horribly > > overpriced Matrox things) PCI or > > AGP videocards that allow something like 16 bit 800x600 resolution > > or better & which are straightforward > > to configure. I know to avoid rubbish like SiS which rarely work > > well even in Windows but I have no idea > > exactly what fairly basic cards do give good results. > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:24:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bryden.apana.org.au (bryden.apana.org.au [203.3.126.129]) by hub.freebsd.org (Postfix) with ESMTP id B3D0B37B4D7 for ; Wed, 18 Oct 2000 14:24:15 -0700 (PDT) Received: from dougy (dougy.apana.org.au [203.3.126.131]) by bryden.apana.org.au (8.9.3/8.9.3) with SMTP id HAA00213; Thu, 19 Oct 2000 07:29:25 +1000 (EST) (envelope-from oracle@bryden.apana.org.au) Message-ID: <00b801c0394a$bdf2e830$837e03cb@dougy> From: "Doug Young" To: "Daniel Bye" Cc: References: Subject: Re: Videocard query Date: Thu, 19 Oct 2000 07:31:10 +1000 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks Dan ... judging from the response it appears that everyone on the list has had good experiences with ATI stuff :) ----- Original Message ----- From: "Daniel Bye" To: "Doug Young" ; Sent: Thursday, October 19, 2000 12:02 AM Subject: RE: Videocard query > I'd agree with this. (not that I got paid to buy an ATI card, mind you). > > ATI cards are available for quite cheap to quite expensive, but they WORK > with minimal fuss. I also use a Xpert98-based card, and it is excellent. > Possibly overkill for what you want, but you could probably get a lower-spec > one, for even cheaper (i.e., get even more money back for buying one!) > > Dan > > > -----Original Message----- > > From: Jeremy Vandenhouten [mailto:jeremy.vandenhouten@marquette.edu] > > Sent: Wednesday, October 18, 2000 3:02 PM > > To: Doug Young; freebsd-questions@freebsd.org > > Subject: Re: Videocard query > > > > > > I've been able to pick up slightly older model ATI cards which when > > used in conjunction with newer versions of XFree86 provide > > acceleration. I recently picked up a Xpert98 8mb PCI card > > online for 20 > > bucks + it had a 25 dollar rebate. (getting paid to buy > > something, good > > concept) I've had good experiences with ATI cards and FreeBSD in > > general. > > > > Good Hunting. > > > > ----- Original Message ----- > > From: "Doug Young" > > Date: Wednesday, October 18, 2000 7:23 am > > Subject: Videocard query > > > > > I'd appreciate comments from X users as to what videocards work > > > well with XF86Config. I run a > > > heap of CLI gateway / webserver / mailserver boxes, but > > > occasionally have a use for GUI stuff as well. > > > > > > What I'm looking for are reasonably priced (ie not those horribly > > > overpriced Matrox things) PCI or > > > AGP videocards that allow something like 16 bit 800x600 resolution > > > or better & which are straightforward > > > to configure. I know to avoid rubbish like SiS which rarely work > > > well even in Windows but I have no idea > > > exactly what fairly basic cards do give good results. > > > > > > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:25:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zog.mainline.co.uk (zog.mainline.co.uk [212.158.6.50]) by hub.freebsd.org (Postfix) with ESMTP id 7E51F37B4CF for ; Wed, 18 Oct 2000 14:25:51 -0700 (PDT) Received: from intergraph ([212.158.6.226]) by zog.mainline.co.uk (8.9.2/8.9.3) with SMTP id WAA29681; Wed, 18 Oct 2000 22:25:41 +0100 (BST) From: "Colin Jack" To: "Mike Meyer" Cc: Subject: RE: Mailing Users Date: Wed, 18 Oct 2000 22:22:53 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal In-Reply-To: <14829.59984.299814.581924@guru.mired.org> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey that's pretty cool! Thanks Colin -----Original Message----- From: Mike Meyer [mailto:mwm@mired.org] Sent: 18 October 2000 19:22 To: Colin Jack Cc: questions@freebsd.org Subject: Re: Mailing Users Colin Jack writes: > Is there a way that I can send an email to all users on a server? The idea > is to warn everyone of downtime for maintenance, but with a couple of > hundred users .... there HAS to be an easy way :-) Since nobody mentioned it, *my* favorite way to do this is: $ cd /home $ mail -s "Canned message subject" * < ~/canned-message Anyone who thinks that's an abuse of shell globbing is right, but it's the best you can do when "mail *@localhost" doesn't work properly. ; Wed, 18 Oct 2000 14:29:33 -0700 (PDT) Received: from s1.optonline.net (s1.optonline.net [167.206.112.6]) by mx1.hcvlny.cv.net (8.10.2/8.10.2) with ESMTP id e9ILTW005143; Wed, 18 Oct 2000 17:29:32 -0400 (EDT) Received: from downstairs (ool-18bd8597.dyn.optonline.net [24.189.133.151]) by s1.optonline.net (8.10.2/8.10.2) with ESMTP id e9ILTVn05397; Wed, 18 Oct 2000 17:29:31 -0400 (EDT) Message-Id: <4.2.0.58.20001018172720.009daa60@mail-hub.optonline.net> X-Sender: mvanberk@mail-hub.optonline.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Oct 2000 17:29:31 -0400 To: kstewart@urx.com From: Bigwillie Subject: Re: QT2.2.0 Cc: freebsd-questions@freebsd.org In-Reply-To: <39EDF3D5.EF200CFF@urx.com> References: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> 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 You didn't read the ?. Im looking for the headers and libraries that the qt installed created......:) At 03:02 PM 10/18/00 , you wrote: >Bigwillie wrote: > > > > I installed kde 1.94 via packages (which is way faster than through the > > ports) and supposedly qt 2.2.0 is installed on my system. I found out by > > invoking pkg_info -a | grep qt. > > Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot > find it. > > Can anyone point me to where the headers and libraries are located for qt > > 2.2.0? > > I tried using /usr/X11R6/include/qt, but that didn't work. > >It wouldn't work since you haven't installed it. I tried > >ruby# locate qt22 >/usr/ports/x11-toolkits/qt22 > >You need to cd there and make and make install > >Kent > > > Thanks > > One side note, can anyone actually log out of KDE 1.94, I have to kill X to > > get out. > > > > _________________________________________ > > Steiny's Studio > > Pachyderm Productions > > http://steiny.hypermart.net > > mailto:info@steiny.hypermart.net > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > >-- >Kent Stewart >Richland, WA > >mailto:kbstew99@hotmail.com >http://kstewart.urx.com/kstewart/index.html >FreeBSD News http://daily.daemonnews.org/ _________________________________________ Steiny's Studio Pachyderm Productions http://steiny.hypermart.net mailto:info@steiny.hypermart.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:39: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailout00.sul.t-online.com (mailout00.sul.t-online.com [194.25.134.16]) by hub.freebsd.org (Postfix) with ESMTP id 4759837B4D7 for ; Wed, 18 Oct 2000 14:38:41 -0700 (PDT) Received: from fmrl02.sul.t-online.de by mailout00.sul.t-online.com with smtp id 13m0v2-0004Mf-00; Wed, 18 Oct 2000 23:38:40 +0200 Received: from icg-pc202.hofheim.icg-online.de (06192901197-0001@[217.1.128.93]) by fmrl02.sul.t-online.com with esmtp id 13m0un-1L3rw8C; Wed, 18 Oct 2000 23:38:25 +0200 Received: from icg-pc204.hofheim.icg-online.de (icg-pc204.hofheim.icg-online.de [10.1.2.204]) by icg-pc202.hofheim.icg-online.de (8.9.3/8.9.3) with SMTP id XAA24345; Wed, 18 Oct 2000 23:42:26 +0200 (CEST) (envelope-from Usselmann.M@icg-online.de) Message-Id: <200010182142.XAA24345@icg-pc202.hofheim.icg-online.de> From: "Manfred Usselmann" To: "questions@freebsd.org" Cc: "webmaster@wmptl.com" , "James A Wilde" , "privat-mc@gmx.de" Date: Wed, 18 Oct 2000 23:41:24 +0100 (MEZ) Reply-To: "Manfred Usselmann" X-Mailer: PMMail 2.10.2010 for OS/2 Warp 4.05 In-Reply-To: <39EE0D68.E0102B92@wmptl.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Re: Windows takes up less memory than Unix Was: (no subject) X-Sender: 06192901197-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000 16:51:52 -0400, Nathan Vidican wrote: >James A Wilde wrote: >> >> My limited experience indicates that Unix is much more damanding of the >> hardware than, say, Windows. >> >> You may have 192 Mb ram, but if 64 Mb of it is shaky from the Unix point of >> view you can get signal 11 and still be able to run Windows with just the >> occasional GPF, which makes you curse and reboot. Try taking out your RAM >> chips one at a time and see how you get on. If you find that install >> continues when, say, chip 2 is removed, try and sell that one to a Windows >> user and get yourself a new one. >> >> If I'm on the wrong track, hopefully someone will come in on this thread and >> correct me. >> >> mvh/regards >> >> James >> >> > -----Original Message----- >> > From: Mc Claude [mailto:privat-mc@gmx.de] >> > Sent: Sunday, October 15, 2000 12:43 >> > To: james.wilde@telia.com >> > Subject: >> > >> > >> > Hello! >> > >> > Yes it isn't Fault 11, it is Signal 11! But I think I can full fill all >> > hardware requirements! >> > 192 MB RAM, enough space on HD! I've downloaded the FreeBSD from server as >> > ISO then I burned it on a CD but this CD can't be loaded after BIOS >> > sequence! So I've made boot disks! And then I've did all which >> > you have read >> > in the last e-mail! So I hope you help me! >> > >> > CU! >> > >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message > > >Your experience must be VERY limited then, because I've got 386/486 >machines running with 4-8megs of ram just fine (usually at under 10% of >capacity at that!), like to see that from any winblows box. I think you misunderstood James. I believe he wanted to say that Windows is more likely to accept / tolerate bad RAM chips. Manfred -- Manfred Usselmann usselmann.m@icg-online.de -------------------------------------------------- I C G Informationstechnologie Consulting GmbH Bahnstr. 7, D-65835 Liederbach / Ts. Tel. +49 69 333 623, Fax +49 69 306 845 -------------------------------------------------- http://www.icg-online.de -------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:39: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from colemantx.com (mail.colemantx.com [63.64.122.62]) by hub.freebsd.org (Postfix) with ESMTP id AEFF537B663 for ; Wed, 18 Oct 2000 14:39:00 -0700 (PDT) Received: from rarnold [63.64.123.147] by colemantx.com (SMTPD32-6.03) id A713912F01E4; Wed, 18 Oct 2000 16:33:07 -0500 Message-ID: <000701c0394b$a9ab9a60$937b403f@rarnold> From: "Ronald G. Arnold Jr." To: Subject: Broken Gnome Date: Wed, 18 Oct 2000 16:37:42 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I downloaded and burned FreeBSD411 and installed it with the Gnome/Enlightenment Xwindows. I use medium security and when I boot FreeBSD it pauses at as it loads sshd, but once I log in (as root, or myself) and startx, I get the start screen with Gnome The Desktop. Then nothing for 10 minutes, followed by Enlightenment starting, 10 minutes later Gnome will load, but nothing works and if I start anything from the menu, Gnome exits, leaving Enlightenment. I've used FreeBSD 3.4 and never had any trouble. Anyone else have the same trouble with Gnome? Ronald To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:41:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thelab.hub.org (CDR8-44.accesscable.net [24.138.8.44]) by hub.freebsd.org (Postfix) with ESMTP id D640D37B4D7 for ; Wed, 18 Oct 2000 14:41:34 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id e9ILdkg04905; Wed, 18 Oct 2000 18:39:46 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Wed, 18 Oct 2000 18:39:46 -0300 (ADT) From: The Hermit Hacker To: Nathan Vidican Cc: James A Wilde , questions@FreeBSD.ORG, privat-mc@gmx.de Subject: Re: Windows takes up less memory than Unix Was: (no subject) In-Reply-To: <39EE0D68.E0102B92@wmptl.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000, Nathan Vidican wrote: > James A Wilde wrote: > > > > My limited experience indicates that Unix is much more damanding of the > > hardware than, say, Windows. > > > > You may have 192 Mb ram, but if 64 Mb of it is shaky from the Unix point of > > view you can get signal 11 and still be able to run Windows with just the > > occasional GPF, which makes you curse and reboot. Try taking out your RAM > > chips one at a time and see how you get on. If you find that install > > continues when, say, chip 2 is removed, try and sell that one to a Windows > > user and get yourself a new one. > > > > If I'm on the wrong track, hopefully someone will come in on this thread and > > correct me. > > > > mvh/regards > > > > James > > > > > -----Original Message----- > > > From: Mc Claude [mailto:privat-mc@gmx.de] > > > Sent: Sunday, October 15, 2000 12:43 > > > To: james.wilde@telia.com > > > Subject: > > > > > > > > > Hello! > > > > > > Yes it isn't Fault 11, it is Signal 11! But I think I can full fill all > > > hardware requirements! > > > 192 MB RAM, enough space on HD! I've downloaded the FreeBSD from server as > > > ISO then I burned it on a CD but this CD can't be loaded after BIOS > > > sequence! So I've made boot disks! And then I've did all which > > > you have read > > > in the last e-mail! So I hope you help me! > > > > > > CU! > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > Your experience must be VERY limited then, because I've got 386/486 > machines running with 4-8megs of ram just fine (usually at under 10% of > capacity at that!), like to see that from any winblows box. Read what he posted ... Unix *is* more demanding of its resources then Windows ... he didn't say its a resource hog. Unix, if there is a problem with RAM, will let you know it in not-so-subtle ways, like SegFaults ... Windows, on the same hardware, seems to be more robust, with the occasional GPFs ... Personally, I'd rather an OS that tells me I have a problem and forces me to fix it, but Unix is still more demanding ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:43:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.telecom.ksu.edu (gateway-1.telecom.ksu.edu [129.130.63.239]) by hub.freebsd.org (Postfix) with ESMTP id 6261F37B4C5 for ; Wed, 18 Oct 2000 14:43:18 -0700 (PDT) Received: from sioux.telecom.ksu.edu(129.130.60.32) by pawnee.telecom.ksu.edu via smap (V2.0) id xma024701; Wed, 18 Oct 00 16:42:46 -0500 Message-ID: <39EE1937.9313F71B@telecom.ksu.edu> Date: Wed, 18 Oct 2000 16:42:16 -0500 From: nathan X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Bigwillie Cc: freebsd-questions@freebsd.org Subject: Re: QT2.2.0 References: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> <4.2.0.58.20001018172720.009daa60@mail-hub.optonline.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i sent a quick solution to you earlier that _will_ work, assuming qt did install from ports here 'tis again --snip-- if you can't find where they are installed.. you can just do this (in bash) export set QTDIR=/usr/ports/x11-toolkits/qt21/work/qt-2.1.1/ as a temp hack to get your other progs installed... you can always either link, or move that dir somewhere permanent like /usr/local/qt or whatever over time, your ports.../work will surely get smoked, and you'll be pooched also.. ldconfig -r | grep qt will show where your linker thinks they are make sure whats listed exists.. good luck --snip-- Bigwillie wrote: > You didn't read the ?. Im looking for the headers and libraries that the > qt installed created......:) > > At 03:02 PM 10/18/00 , you wrote: > > >Bigwillie wrote: > > > > > > I installed kde 1.94 via packages (which is way faster than through the > > > ports) and supposedly qt 2.2.0 is installed on my system. I found out by > > > invoking pkg_info -a | grep qt. > > > Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot > > find it. > > > Can anyone point me to where the headers and libraries are located for qt > > > 2.2.0? > > > I tried using /usr/X11R6/include/qt, but that didn't work. > > > >It wouldn't work since you haven't installed it. I tried > > > >ruby# locate qt22 > >/usr/ports/x11-toolkits/qt22 > > > >You need to cd there and make and make install > > > >Kent > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:44:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from earth.wnm.net (earth.wnm.net [208.246.240.243]) by hub.freebsd.org (Postfix) with ESMTP id 9E38F37B479 for ; Wed, 18 Oct 2000 14:44:23 -0700 (PDT) Received: from localhost (alex@localhost) by earth.wnm.net (8.11.0/8.11.0) with ESMTP id e9ILiXT66508; Wed, 18 Oct 2000 16:44:33 -0500 (CDT) Date: Wed, 18 Oct 2000 16:44:32 -0500 (CDT) From: Alex Charalabidis To: Marko Ruban Cc: FreeBSD questions , Tom Kocir Subject: Re: gnats In-Reply-To: <39EDEBB7.9B0199A@tellurian.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000, Marko Ruban wrote: > > On Wed, 18 Oct 2000, Tom Kocir wrote: > > (edited for readability) > > > > > trying to find out simple things about real gnats but you assholes get in > > > the way with your fucked up electronic web sites, this sucks a big dick. > > Just wondering what are the "real" gnats and what are "fake" ones ? > I know neither :) > Gnats are nasty little bloodsucking bugs of the order diptera. I believe the term is unknown in some parts of the US, probably where they have many bigger and meaner bugs to worry about. GNATS is the GNU Bug Tracking System, have a look at the FreeBSD web site under "bug reports" for a sample of GNATS in action. > BTW: Yahoo listed 16 sites *grin* > > > try entering gnats -gnu -bsd -linux -database as a search at www.google.com > > and we are all really sorry to have hindered your search for knowledge > There are many entomological sites dealing with hymenoptera and diptera (though probably not quite as many as deal with the topic of "sucking big dick"). I daresay using just +gnats +insects would work too. As for the original poster, you could try a hand-cranked web site since electronic ones annoy you and go to the library. The calm atmosphere would also work miracles for your bad temper. -ac -- ============================================================== Alex Charalabidis (AC8139) 5050 Poplar Ave, Ste 170 System Administrator Memphis, TN 38157 WebNet Memphis (901) 432 6000 Author, The Book of IRC http://www.bookofirc.com/ ============================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:46:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 1473037B4D7 for ; Wed, 18 Oct 2000 14:46:43 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id OAA04081; Wed, 18 Oct 2000 14:46:41 -0700 Message-ID: <39EE1A41.3E50B963@urx.com> Date: Wed, 18 Oct 2000 14:46:41 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Bigwillie Cc: freebsd-questions@freebsd.org Subject: Re: QT2.2.0 References: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> <4.2.0.58.20001018172720.009daa60@mail-hub.optonline.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bigwillie wrote: > > You didn't read the ?. Im looking for the headers and libraries that the > qt installed created......:) If you had installed them so they were available, you would have seen ruby# pkg_info -a | grep qt qt-2.2.0_1 qt-2.2.0_1 Information for qt-1.45: documentation is in /usr/local/share/doc/qt and is also available WWW: http://www.troll.no/qt/ Information for qt-2.2.0_1: documentation is in share/doc/qt2 and is also available on Information for qt-i18n-1.44b: documentation is in /usr/local/share/doc/qt and is also available on the web. (http://www.troll.no/qt/) Do *not* forget to prepare ~/.qti18nrc if you use multibyte language. http://www.asahi-net.or.jp/~hc3j-tkg/qt-i18n/index.html Then, you wouldn't be looking for where the headers are. Right now they are in a tarball called qt-x11-2.2.0.tar.gz. Kent > > At 03:02 PM 10/18/00 , you wrote: > > >Bigwillie wrote: > > > > > > I installed kde 1.94 via packages (which is way faster than through the > > > ports) and supposedly qt 2.2.0 is installed on my system. I found out by > > > invoking pkg_info -a | grep qt. > > > Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot > > find it. > > > Can anyone point me to where the headers and libraries are located for qt > > > 2.2.0? > > > I tried using /usr/X11R6/include/qt, but that didn't work. > > > >It wouldn't work since you haven't installed it. I tried > > > >ruby# locate qt22 > >/usr/ports/x11-toolkits/qt22 > > > >You need to cd there and make and make install > > > >Kent > > > > > Thanks > > > One side note, can anyone actually log out of KDE 1.94, I have to kill X to > > > get out. > > > > > > _________________________________________ > > > Steiny's Studio > > > Pachyderm Productions > > > http://steiny.hypermart.net > > > mailto:info@steiny.hypermart.net > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > >-- > >Kent Stewart > >Richland, WA > > > >mailto:kbstew99@hotmail.com > >http://kstewart.urx.com/kstewart/index.html > >FreeBSD News http://daily.daemonnews.org/ > > _________________________________________ > Steiny's Studio > Pachyderm Productions > http://steiny.hypermart.net > mailto:info@steiny.hypermart.net -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 14:55:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail3.new.rr.com (mail3.rdc-detw.rr.com [24.30.0.25]) by hub.freebsd.org (Postfix) with ESMTP id 526CC37B4D7 for ; Wed, 18 Oct 2000 14:55:17 -0700 (PDT) Received: from judah ([24.164.246.248]) by mail3.new.rr.com with Microsoft SMTPSVC(5.5.1877.197.19); Wed, 18 Oct 2000 17:55:41 -0400 From: "Doug Poland" To: "Rick Hamell" Cc: Subject: RE: CSH Shell Date: Wed, 18 Oct 2000 16:55:12 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Rick, try this... set prompt = "`hostname -s`% " I recommend "Using csh & tcsh", O'Reilly, ISBN 1-56592-132-1 Spend an evening with this book and you'll be a happy camper. Regards, Doug > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Rick Hamell > Sent: Tuesday, October 17, 2000 08:00 > To: freebsd-questions@freebsd.org > Subject: CSH Shell > > > > Taking my first steps into scripting, my first task is to figure > out how to customize csh. Problem is, I can't seem to make something like > set prompt="'hostname' %" work... The command hostname dosen't seem to > work at all. I figure I've got the syntax wrong, but where... ? :) What I > get is 'hostname' btw. Thanks much! > > > Rick > > ******************************************************************* > Rick's FreeBSD Web page http://heorot.1nova.com/freebsd > Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware > ***FreeBSD - The Power to Serve! http://www.freebsd.org > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15: 0:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.hcvlny.cv.net (mx1.hcvlny.cv.net [167.206.112.76]) by hub.freebsd.org (Postfix) with ESMTP id 39A3E37B4C5 for ; Wed, 18 Oct 2000 15:00:04 -0700 (PDT) Received: from s1.optonline.net (s1.optonline.net [167.206.112.6]) by mx1.hcvlny.cv.net (8.10.2/8.10.2) with ESMTP id e9IM03020494 for ; Wed, 18 Oct 2000 18:00:03 -0400 (EDT) Received: from downstairs (ool-18bd8597.dyn.optonline.net [24.189.133.151]) by s1.optonline.net (8.10.2/8.10.2) with ESMTP id e9IM02n18694 for ; Wed, 18 Oct 2000 18:00:02 -0400 (EDT) Message-Id: <4.2.0.58.20001018175459.009d94f0@mail-hub.optonline.net> X-Sender: mvanberk@mail-hub.optonline.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Oct 2000 18:00:02 -0400 To: freebsd-questions@freebsd.org From: Bigwillie Subject: Re: QT2.2.0 In-Reply-To: <39EE1A41.3E50B963@urx.com> References: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> <4.2.0.58.20001018172720.009daa60@mail-hub.optonline.net> 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 Nathan, Ill try your solution when I get back. Kent, your losing me. In my original email I stated that I found out that qt 2.2 was installed when I envoked "pkg_info -a | grep qt". Anyway, Im trying what you said and installing it again. Ill check up on it when I get back. Thanks guys for the info/strategy, Ill let you know what has happened. trini0 At 05:46 PM 10/18/00 , you wrote: >Bigwillie wrote: > > > > You didn't read the ?. Im looking for the headers and libraries that the > > qt installed created......:) > >If you had installed them so they were available, you would have seen > >ruby# pkg_info -a | grep qt >qt-2.2.0_1 >qt-2.2.0_1 >Information for qt-1.45: >documentation is in /usr/local/share/doc/qt and is also available >WWW: http://www.troll.no/qt/ >Information for qt-2.2.0_1: >documentation is in share/doc/qt2 and is also available on >Information for qt-i18n-1.44b: >documentation is in /usr/local/share/doc/qt and is also available on >the web. (http://www.troll.no/qt/) >Do *not* forget to prepare ~/.qti18nrc if you use multibyte language. > http://www.asahi-net.or.jp/~hc3j-tkg/qt-i18n/index.html > >Then, you wouldn't be looking for where the headers are. Right now >they are in a tarball called qt-x11-2.2.0.tar.gz. > >Kent > > > > > At 03:02 PM 10/18/00 , you wrote: > > > > >Bigwillie wrote: > > > > > > > > I installed kde 1.94 via packages (which is way faster than through the > > > > ports) and supposedly qt 2.2.0 is installed on my system. I found > out by > > > > invoking pkg_info -a | grep qt. > > > > Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot > > > find it. > > > > Can anyone point me to where the headers and libraries are located > for qt > > > > 2.2.0? > > > > I tried using /usr/X11R6/include/qt, but that didn't work. > > > > > >It wouldn't work since you haven't installed it. I tried > > > > > >ruby# locate qt22 > > >/usr/ports/x11-toolkits/qt22 > > > > > >You need to cd there and make and make install > > > > > >Kent > > > > > > > Thanks > > > > One side note, can anyone actually log out of KDE 1.94, I have to > kill X to > > > > get out. > > > > > > > > _________________________________________ > > > > Steiny's Studio > > > > Pachyderm Productions > > > > http://steiny.hypermart.net > > > > mailto:info@steiny.hypermart.net > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > >-- > > >Kent Stewart > > >Richland, WA > > > > > >mailto:kbstew99@hotmail.com > > >http://kstewart.urx.com/kstewart/index.html > > >FreeBSD News http://daily.daemonnews.org/ > > > > _________________________________________ > > Steiny's Studio > > Pachyderm Productions > > http://steiny.hypermart.net > > mailto:info@steiny.hypermart.net > >-- >Kent Stewart >Richland, WA > >mailto:kbstew99@hotmail.com >http://kstewart.urx.com/kstewart/index.html >FreeBSD News http://daily.daemonnews.org/ _________________________________________ Steiny's Studio Pachyderm Productions http://steiny.hypermart.net mailto:info@steiny.hypermart.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15: 2:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from kaunas.aiva.lt (kaunas.aiva.lt [212.59.19.177]) by hub.freebsd.org (Postfix) with ESMTP id 85F0337B4C5 for ; Wed, 18 Oct 2000 15:02:06 -0700 (PDT) Received: from briviba.lt (s25.kaunas.aiva.lt [212.59.19.155]) by kaunas.aiva.lt (8.9.3/8.9.3) with ESMTP id AAA18913 for ; Thu, 19 Oct 2000 00:02:03 +0200 Received: by briviba.lt (Postfix, from userid 1001) id 360CA14DD; Wed, 18 Oct 2000 23:01:29 +0200 (EET) Date: Wed, 18 Oct 2000 23:01:29 +0200 (EET) From: Tomas Furmonavicius To: freebsd-questions@freebsd.org Subject: PCI modems Message-ID: X-OS: FreeBSD 4.0-RELEASE X-Mailer: PINE 4.21 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, what is the status of support for PCI modems (real hardware ones, not winmodems) in FreeBSD ? AFAIK somebody was hacking sio driver to support UARTs on PCI bus (I've found about 1 year old message in mail archives)... Tomas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15:16:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 7091B37B4C5 for ; Wed, 18 Oct 2000 15:16:50 -0700 (PDT) Received: from opal (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with ESMTP id SAA21405 for ; Wed, 18 Oct 2000 18:16:45 -0400 (EDT) Date: Wed, 18 Oct 2000 18:16:07 -0400 (EDT) From: Zhiui Zhang X-Sender: zzhang@opal To: freebsd-questions@freebsd.org Subject: kick start installation 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 hope that FreeBSD has or will have the ability to do kick start installation - After you boot from CD-ROM, it will install everything automatically according to previously made selectiosn (saved in a configuration file). This will make maintenance of many machines easy. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15:27:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail2.sdc1.sfba.home.com (femail2.sdc1.sfba.home.com [24.0.95.82]) by hub.freebsd.org (Postfix) with ESMTP id BA7D037B4CF for ; Wed, 18 Oct 2000 15:27:13 -0700 (PDT) Received: from c559307a ([24.20.70.64]) by femail2.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001018222702.IWWM11792.femail2.sdc1.sfba.home.com@c559307a> for ; Wed, 18 Oct 2000 15:27:02 -0700 Message-ID: <001101c03952$94b909b0$40461418@24.20.70.64> From: "xavian anderson macpherson" To: Subject: installation woes Date: Wed, 18 Oct 2000 15:27:20 -0700 Organization: http://www.professional3d.com MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000E_01C03917.E80497A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000E_01C03917.E80497A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hey julian, (from the CNET help.com freebsd postings) i too had alot of difficulty installing freebsd. the reason i found to = be, was my soundblaster 16 scsi card. i need the driver for this card = if one exists (and one also for windows NT [the scsi works but not the = sound] as you'll read below). my cd is controlled by this card, as is = the 540MB quantum drive which i used exclusively for swap space in = linux. it seems (check the handbook if you have the power-pak) that = freebsd doesn't handle multifunction cards. something that i find very = ludicrous, considering it's claim to be the ultimate internet OS. = anyway, i finally got around this by accident. =20 initially i thought that i would install my apps from cd using the boot = disks, and then go back and resolve the conflicts with the irq's for my = ethernet card (there was a conflict between it and something that i = thought was the driver that would control the pci-bus. that driver = turns out to be the one for the pcmcia bus which i don't have. the only = thing that differentiates them is a single `c';pci0 vs. pcic0. so i = eliminated the pcic0.) it turns out that i had to install directly from = the web. the installation went smoothly once i got past all the other = trouble. so my answer is, if you have access to the internet, all you need to do = is make the kern.flp and mfsroot.flp (DONT USE THE 5.0-CURRENT FLOPPY = IMAGES. it seems that the sites don't support the installation of those = images.) go through the motions of setting up your slices and the = filesystems mounted to them. once that it done, select your ports = and/or sources and start the downloads. i have a 10Mbit/sec cable = modem. and i found that ftp2 for the us is the fastest. none of the = others would take advantage of my high download speed. although, i did = have repeated errors with that site when i tried to reinstall XFREE86. = that software may simply not have been available at the time i tried. =20 i have not run freebsd since i installed it (because of XFREE86 not = working after i installed version-4.0 after already having = version-3.3.36. that's why i tried to reinstall XFREE86) i went out = and brought Windows NT; because i realize that any operating system that = doesn't even come with it's own boot floppies in the packaging, thereby = requiring you to have another operating system to make copies of it's = boot floppies, doesn't have the right to be treated as anything other = than an application of the system you used to make the the floppies! i = am impressed with the fact that NT will allow me to run other OS's = concurrently. let freebsd do that, and then those folks can talk about = superiority. they can't even make their own floppies! if you know how = to boot freebsd inside of NT, i would appreciate hearing from you. also = i need to know how to read the data on my freebsd slice(s) from windows = NT. GOOD LUCK! tell me how it works. Julian King wrote: >=20 >=20 > I have done a trawl of Deja and of the FreeBSD website, and I cannot > see how it might be possible to do an automated install of FreeBSD, > well at least not without rewriting chunks of the install floppies. >=20 > Is this a reasonable assessment of the situation, or have I missed > something? If I've missed something then pointers would be = appreciated, > if I've not missed something and you happen to know, then pointers on > how to create a default boot floppy (I mean from basics, not from the > image) would be good - I've looked at the mfsroot filesystem and > it currently doesn't look too friendly :-( >=20 > I would be most dissappointed if FreeBSD doesn't have something even = as > good as Kickstart or Jumpstart... >=20 > Julian > --=20 > Julian King | There once was a limerick .sig | My = opinions, all > Computer Officer | that really was not very big | mine. You = can't > University of Cambridge | It was going quite fine | have them! > Unix Support | Till it reached the fourth line | P.S. It's = a joke ------=_NextPart_000_000E_01C03917.E80497A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hey julian,  (from the CNET = help.com freebsd=20 postings)
 
i too had alot of difficulty installing = freebsd.  the reason i found to be, was my soundblaster 16 scsi = card. =20 i need the driver for this card if one exists (and one also for windows = NT [the=20 scsi works but not the sound] as you'll read below).  my cd is = controlled=20 by this card, as is the 540MB quantum drive which i used exclusively for = swap=20 space in linux.  it seems (check the handbook if you have the = power-pak)=20 that freebsd doesn't handle multifunction cards.  something that i = find=20 very ludicrous, considering it's claim to be the ultimate internet = OS. =20 anyway, i finally got around this by accident. 
 
initially i thought that i would = install my apps=20 from cd using the boot disks, and then go back and resolve the conflicts = with=20 the irq's for my ethernet card (there was a conflict between it and = something=20 that i thought was the driver that would control the pci-bus.  that = driver=20 turns out to be the one for the pcmcia bus which i don't have.  the = only=20 thing that differentiates them is a single `c';pci0 vs. pcic0.  so = i=20 eliminated the pcic0.)  it turns out that i had to install directly = from=20 the web.  the installation went smoothly once i got past all the = other=20 trouble.
 
so my answer is, if you have access to = the=20 internet, all you need to do is make the kern.flp and mfsroot.flp (DONT = USE THE=20 5.0-CURRENT FLOPPY IMAGES.  it seems that the sites don't support = the=20 installation of those images.)  go through the motions of setting = up your=20 slices and the filesystems mounted to them.  once that it done, = select your=20 ports and/or sources and start the downloads.  i have a 10Mbit/sec = cable=20 modem.  and i found that ftp2 for the us is the fastest.  none = of the=20 others would take advantage of my high download speed.  although, i = did=20 have repeated errors with that site when i tried to reinstall = XFREE86. =20 that software may simply not have been available at the time i = tried.
 =20
i have not run freebsd since i installed it (because of XFREE86 not = working=20 after i installed version-4.0 after already having version-3.3.36.  = that's=20 why i tried to reinstall XFREE86)  i went out and brought Windows = NT;=20 because i realize that any operating system that doesn't even come with = it's own=20 boot floppies in the packaging, thereby requiring you to have another = operating=20 system to make copies of it's boot floppies, doesn't have the right to = be=20 treated as anything other than an application of the system you used to = make the=20 the floppies!  i am impressed with the fact that NT will allow me = to run=20 other OS's concurrently.  let freebsd do that, and then those folks = can=20 talk about superiority.  they can't even make their own = floppies!  if=20 you know how to boot freebsd inside of NT, i would appreciate hearing = from=20 you.  also i need to know how to read the data on my freebsd = slice(s) from=20 windows NT.
 
GOOD LUCK!  tell me how it = works.
 
Julian King wrote:
>
> =
> I have=20 done a trawl of Deja and of the FreeBSD website, and I cannot
> = see how it=20 might be possible to do an automated install of FreeBSD,
> well at = least=20 not without rewriting chunks of the install floppies.
>
> = Is this a=20 reasonable assessment of the situation, or have I missed
>=20 something?  If I've missed something then pointers would be=20 appreciated,
> if I've not missed something and you happen to = know, then=20 pointers on
> how to create a default boot floppy (I mean from = basics, not=20 from the
> image) would be good - I've looked at the mfsroot = filesystem=20 and
> it currently doesn't look too friendly  :-(
> =
> I=20 would be most dissappointed if FreeBSD doesn't have something even = as
>=20 good as Kickstart or Jumpstart...
>
> Julian
> -- =
>=20 Julian=20 King           &nb= sp; |=20 There once was a limerick .sig  | My opinions, all
> Computer = Officer        | that really was not = very=20 big    | mine.  You can't
> University of = Cambridge |=20 It was going quite fine         = | have=20 them!
> Unix=20 Support           = | Till=20 it reached the fourth line | P.S. It's a = joke
------=_NextPart_000_000E_01C03917.E80497A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15:37:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id C8BBB37B4E5 for ; Wed, 18 Oct 2000 15:37:56 -0700 (PDT) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id SAA207742; Wed, 18 Oct 2000 18:37:46 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: References: Date: Wed, 18 Oct 2000 18:37:45 -0400 To: "Antonio Yu" , From: Garance A Drosihn Subject: Re: Freebsd installation in IBM Thinkpad T20 Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 4:51 PM +0800 10/18/00, Antonio Yu wrote: >Dear Sir, > >I have tried installing FreeBSD 3.4 into my new IBM Thinkpad T20 >notebook but it seems that after the installation, I couldn't >even start my computer!! > >Is it the problem in FreeBSD?? If you check the mailing list archives for this list, you'll find that it's a problem with the T20. Not everyone runs into this problem, but it is a very common problem. If you move the disk to some other machine, and change the partition ID of your freebsd partition to match Linux, then the machine will boot up fine (unless, of course, you're trying to BOOT into freebsd...). In our case (here at RPI), we have dual-boot T20's with Win98 and FreeBSD, and (luckily for us) that seems to work out fine. We have not been successful with WinNT and FreeBSD dual-boot setups. Not yet, at least, though we haven't been trying recently due to other projects. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15:39: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ideal.net.au (ion.ideal.net.au [203.20.241.5]) by hub.freebsd.org (Postfix) with ESMTP id DC9E637B4F9 for ; Wed, 18 Oct 2000 15:38:58 -0700 (PDT) Received: from helium.ideal.net.au (helium.staff.ideal.net.au [202.3.35.2]) by mail.ideal.net.au (8.9.3/8.9.3) with ESMTP id JAA94458 for ; Thu, 19 Oct 2000 09:37:35 +1100 (EST) (envelope-from chris@ideal.net.au) Message-Id: <5.0.0.25.0.20001019093826.00a83588@mail.ideal.net.au> X-Sender: chris@mail.ideal.net.au X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Thu, 19 Oct 2000 09:38:50 +1000 To: From: Chris Aitken Subject: Commandline Access to a Serial Port 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 Does anyone have any suggestions as to a tool I can use on my FreeBSD 3.4 Stable box that can allow me to communicate with my Serial Port ? I have used Minicom perfectly to do what I need to do, but now I need to be able to do it via command line, and not sure what is best to use. Thanks Chris -- Chris Aitken - Webmaster/Database Designer - IDEAL Internet email: chris@ideal.net.au phone: +61 2 4628 8888 fax: +61 2 4628 8890 -------------------------------------------- Unix -- because a computer's a terrible thing to waste! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15:49:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id B71A937B479 for ; Wed, 18 Oct 2000 15:49:29 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id PAA00072; Wed, 18 Oct 2000 15:49:27 -0700 Message-ID: <39EE28F7.308BF4BA@urx.com> Date: Wed, 18 Oct 2000 15:49:27 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Bigwillie Cc: freebsd-questions@FreeBSD.ORG Subject: Re: QT2.2.0 References: <4.2.0.58.20001018145034.009e5630@mail-hub.optonline.net> <4.2.0.58.20001018172720.009daa60@mail-hub.optonline.net> <4.2.0.58.20001018175459.009d94f0@mail-hub.optonline.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bigwillie wrote: > > Nathan, Ill try your solution when I get back. > Kent, your losing me. In my original email I stated that I found out that > qt 2.2 was installed when I envoked "pkg_info -a | grep qt". Anyway, Im > trying what you said and installing it again. Ill check up on it when I > get back. You are right. I was expecting the information and I assumed it was blank. Two of these today. Not a good day :). FWIW, I find the new port structure lends itself to finding files. The pkg-plist lists all of the files and a locate will tell you where they are. The libraries are built and they aren't in the list but libqt2... stands out. Setting up the environmental variables so a make works properly requires reading better than I have done today :). I've stayed away from the seti_watch kind of utility because I lose a couple of positions every day or so. On my systems, the command line version of Setiathome runs about 10% slower on FreeBSD than it does on Windows 2000. I have accumulated several 100 wu's on each machine for both OSes, which evens out the variations. The systems are multi-boot. It seems like a few months ago, I was around 1950th place and now I'm up over 4200th place. I don't want it to run any slower :). I have read that with all of the new processing they are doing version 3 may run up to 40% slower than 2.4. Kent > Thanks guys for the info/strategy, Ill let you know what has happened. > trini0 > > At 05:46 PM 10/18/00 , you wrote: > > >Bigwillie wrote: > > > > > > You didn't read the ?. Im looking for the headers and libraries that the > > > qt installed created......:) > > > >If you had installed them so they were available, you would have seen > > > >ruby# pkg_info -a | grep qt > >qt-2.2.0_1 > >qt-2.2.0_1 > >Information for qt-1.45: > >documentation is in /usr/local/share/doc/qt and is also available > >WWW: http://www.troll.no/qt/ > >Information for qt-2.2.0_1: > >documentation is in share/doc/qt2 and is also available on > >Information for qt-i18n-1.44b: > >documentation is in /usr/local/share/doc/qt and is also available on > >the web. (http://www.troll.no/qt/) > >Do *not* forget to prepare ~/.qti18nrc if you use multibyte language. > > http://www.asahi-net.or.jp/~hc3j-tkg/qt-i18n/index.html > > > >Then, you wouldn't be looking for where the headers are. Right now > >they are in a tarball called qt-x11-2.2.0.tar.gz. > > > >Kent > > > > > > > > At 03:02 PM 10/18/00 , you wrote: > > > > > > >Bigwillie wrote: > > > > > > > > > > I installed kde 1.94 via packages (which is way faster than through the > > > > > ports) and supposedly qt 2.2.0 is installed on my system. I found > > out by > > > > > invoking pkg_info -a | grep qt. > > > > > Im trying to install ksetiwatch 2.0.1 which needs qt 2.2.0 and cannot > > > > find it. > > > > > Can anyone point me to where the headers and libraries are located > > for qt > > > > > 2.2.0? > > > > > I tried using /usr/X11R6/include/qt, but that didn't work. > > > > > > > >It wouldn't work since you haven't installed it. I tried > > > > > > > >ruby# locate qt22 > > > >/usr/ports/x11-toolkits/qt22 > > > > > > > >You need to cd there and make and make install > > > > > > > >Kent > > > > > > > > > Thanks > > > > > One side note, can anyone actually log out of KDE 1.94, I have to > > kill X to > > > > > get out. > > > > > > > > > > _________________________________________ > > > > > Steiny's Studio > > > > > Pachyderm Productions > > > > > http://steiny.hypermart.net > > > > > mailto:info@steiny.hypermart.net > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > >-- > > > >Kent Stewart > > > >Richland, WA > > > > > > > >mailto:kbstew99@hotmail.com > > > >http://kstewart.urx.com/kstewart/index.html > > > >FreeBSD News http://daily.daemonnews.org/ > > > > > > _________________________________________ > > > Steiny's Studio > > > Pachyderm Productions > > > http://steiny.hypermart.net > > > mailto:info@steiny.hypermart.net > > > >-- > >Kent Stewart > >Richland, WA > > > >mailto:kbstew99@hotmail.com > >http://kstewart.urx.com/kstewart/index.html > >FreeBSD News http://daily.daemonnews.org/ > > _________________________________________ > Steiny's Studio > Pachyderm Productions > http://steiny.hypermart.net > mailto:info@steiny.hypermart.net > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 15:55:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id B232037B479 for ; Wed, 18 Oct 2000 15:55:25 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id BCA183293; Tue, 17 Oct 2000 15:19:00 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id A6F0F3292; Tue, 17 Oct 2000 15:19:00 +0000 (GMT) Date: Tue, 17 Oct 2000 15:19:00 +0000 (GMT) From: Rick Hamell To: xavian anderson macpherson Cc: freebsd-questions@freebsd.org Subject: Re: installation woes In-Reply-To: <001101c03952$94b909b0$40461418@24.20.70.64> 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 > not the sound] as you'll read below). my cd is controlled by this > card, as is the 540MB quantum drive which i used exclusively for swap > space in linux. it seems (check the handbook if you have the > power-pak) that freebsd doesn't handle multifunction cards. > something that i find very ludicrous, considering it's claim to be the > ultimate internet OS. anyway, i finally got around this by accident. Um.. you do realize that you're not supposed to run hard drives on that card? Those cards were built back when it $100+ for the card, and SCSI cards cost $200+ It's a "all in one device,' much like the motherboards with built in video/sound/network. Also... Sound Cards are not meant for Internet back bone use. Why does a server need sound? > so my answer is, if you have access to the internet, all you need to > do is make the kern.flp and mfsroot.flp (DONT USE THE 5.0-CURRENT > FLOPPY IMAGES. it seems that the sites don't support the installation > of those images.) go through the motions of setting up your slices That is good advice.. 5.0 is meant for developers.. not the common user. > and the filesystems mounted to them. once that it done, select your > ports and/or sources and start the downloads. i have a 10Mbit/sec > cable modem. and i found that ftp2 for the us is the fastest. none Most likely this is because the links between you and FTP2 are the quickest. Remeber when getting on the Internet you have to deal with bandwidth issues on both sides! Just because you have a fast link dosen't mean much if the other end is serving 1000+ users trying to do the exact same thing as you! > of the others would take advantage of my high download speed. > although, i did have repeated errors with that site when i tried to > reinstall XFREE86. that software may simply not have been available > at the time i tried. Did you check www.xfree86.org for a list of compatible cards, and possible configuration files? > i have not run freebsd since i installed it (because of XFREE86 not > working after i installed version-4.0 after already having > version-3.3.36. that's why i tried to reinstall XFREE86) i went out > and brought Windows NT; because i realize that any operating system > that doesn't even come with it's own boot floppies in the packaging, > thereby requiring you to have another operating system to make copies > of it's boot floppies, doesn't have the right to be treated as > anything other than an application of the system you used to make the This is the 2nd most small minded thing I've ever read in my life. Floppies are not included with the FreeBSD cdrom, because that would cost you the consumer more money. Floppies also have a very high chance of going bad during shipping. I can't even begin to tell you how many copies of Windows that I've had to create new boot floppies for. > the floppies! i am impressed with the fact that NT will allow me to > run other OS's concurrently. let freebsd do that, and then those > folks can talk about superiority. they can't even make their own > floppies! if you know how to boot freebsd inside of NT, i would > appreciate hearing from you. also i need to know how to read the data > on my freebsd slice(s) from windows NT. You're looking for VMware... it runs anything on anything... In fact NT will run better on FreeBSD then NT by itself from what I've seen. It's obvious that you've a skewed outlook on how the computer industry is... especially the Unix part of it. If you're the kind of person who needs your hand held through day to day operations, then NT is a good system for you. But if you wish to increase your skills and become a more valuable employee, or wish more flexibility in what your Operating system can do.. then I suggest you start using FreeBSD more. BTW... I've been using FreeBSD for three years now...I am willing to admit that I am just now becoming comfortable enough with it that I'm looking for a job as a Unix admin.... The nice thing is that all my FreeBSD skills are transferable to any other Unix system in the world! While my Windows 3.11 skills... well... lets just say I've forgotten just about everything I knew about it.... :) Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16: 0:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id B393637B4C5 for ; Wed, 18 Oct 2000 16:00:31 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9IN0D927437; Wed, 18 Oct 2000 16:00:13 -0700 (PDT) Date: Wed, 18 Oct 2000 16:00:13 -0700 From: Alfred Perlstein To: Zhiui Zhang Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kick start installation Message-ID: <20001018160012.N272@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from zzhang@cs.binghamton.edu on Wed, Oct 18, 2000 at 06:16:07PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Zhiui Zhang [001018 15:17] wrote: > > I hope that FreeBSD has or will have the ability to do kick start > installation - After you boot from CD-ROM, it will install everything > automatically according to previously made selectiosn (saved in a > configuration file). This will make maintenance of many machines easy. This is available via the sysinstall.cfg file, have a look at http://people.freebsd.org/~alfred/pxe/ it has a sample sysinstall.cfg that you can use along with other suggestions on how to make a completely hands-off install process. best of luck, -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16: 6:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heinz.jollem.com (c187104187.telekabel.chello.nl [212.187.104.187]) by hub.freebsd.org (Postfix) with ESMTP id 210CE37B479 for ; Wed, 18 Oct 2000 16:06:15 -0700 (PDT) Received: (from ernst@localhost) by heinz.jollem.com (8.9.3/8.9.3) id BAA96623; Thu, 19 Oct 2000 01:05:08 +0200 (CEST) (envelope-from ernst) Date: Thu, 19 Oct 2000 01:05:08 +0200 From: Ernst de Haan To: Stephen Krauth Cc: Drew Sanford , freebsd-questions@FreeBSD.ORG Subject: Re: SB Live under 4.1 (I know I know...) Message-ID: <20001019010508.A96596@c187104187.telekabel.chello.nl> References: <39EAF02F.1F875DDE@bellsouth.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from stephenk@stephenk.com on Mon, Oct 16, 2000 at 10:05:14AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm having the same problems. I have a December '98 SB Live card with the daughter card, and I also experience distorted sound, and error messages on my console: "pcm0: pci error". The sound does work, but it was *much* better under one of the early 4.0-STABLEs. In the past I've sent a few emails to this list re this issue, and also to one of the pcm driver programmers, but no luck yet :-/ Ernst Stephen Krauth wrote: > On Mon, 16 Oct 2000, Drew Sanford wrote: > > > I'm using 4.1, and have a full SBLive (the one with the digital IO > > daughter card) that works like a champ. As advertised, I simply included > > the proper device driver in the kernel config, and when all was said and > > done, it was flawless. > > Hmm... I don't have the daughter card, though that really shouldn't make a > difference. I made sure 'device pci' and 'device pcm' are in the kernel > conf, and I've recompiled both with and without the sbc entry. I get the > correct response when I cat /dev/sndstat, though dmesg does NOT show the > entry that others claim should be there when it works (it > does show the Creative emu10ksomething entry though...) > > Is there anything else I can try? Thanks. > > > Stephen Krauth wrote: > > > > > > So I've scoured the mail archives and it seems there's no definitive > > > answer on getting the SoundBlaster Live! to work under 4.1. On my machine > > > it has many pops and blips when running wavplay or other programs and > > > eventually hangs the machine. > > > > > > So is there any new news? > > > > > > Or... is there another *PCI* sound card that definately works under > > > FreeBSD? (I just bought the SBLive and will take it back if I know > > > another card will work). Oh, and I'm not too jazzed about using a closed > > > source package just to get sound working (like OSS)... > > > > > > Steve K. U.F.O. - "For the feeler gauge in you." > > > > -- > > Drew Sanford > > lauasanf@bellsouth.net or drew@planetwe.com > > > > Steve K. U.F.O. - "For the feeler gauge in you." > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16: 8:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.lig.bellsouth.net (mail1.lig.bellsouth.net [205.152.0.55]) by hub.freebsd.org (Postfix) with ESMTP id 62F3E37B479 for ; Wed, 18 Oct 2000 16:08:32 -0700 (PDT) Received: from prokyon.com (adsl-61-148-46.int.bellsouth.net [208.61.148.46]) by mail1.lig.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id TAA07622 for ; Wed, 18 Oct 2000 19:12:25 -0400 (EDT) Message-ID: <39EE2D1D.F933C142@prokyon.com> Date: Wed, 18 Oct 2000 19:07:09 -0400 From: Chris Browning X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: fetchmail missing library Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Invoking fetchmail gives me this error: /usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not found I assume I'm missing something. Any ideas why and how I fix it or where can I get it? Thanks. -- ------------------------ Chris Browning brownicm@prokyon.com ------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:12: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from math.uic.edu (galois.math.uic.edu [131.193.178.114]) by hub.freebsd.org (Postfix) with SMTP id 9CA5837B4D7 for ; Wed, 18 Oct 2000 16:12:07 -0700 (PDT) Received: (qmail 6945 invoked by uid 31415); 18 Oct 2000 23:12:16 -0000 Date: 18 Oct 2000 23:12:16 -0000 Message-ID: <20001018231216.6944.qmail@math.uic.edu> From: vladimir@math.uic.edu To: freebsd-questions@freebsd.org Subject: pipsecd and PPPoE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear BSD users, I've been playing with pipsecd and ppp over ethernet trying to setup a secure connection between two machines on the ethernet. I've managed to connect these machines using ppp other ethernet, with one side having IP = 192.168.1.1 on tun0 and the other side having IP = 192.168.2.1 on tun0. I can ping the other side from each machine. How would I use pipsecd now to setup a secure tunnel from one machine to another (the tunnel should use established PPPoE connection)? After a couple of hours of frustrating attempts I would appreciate any help. If anyone has a similar setup working, that would be great. Thank you! Vladimir To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:12:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 411DA37B4CF for ; Wed, 18 Oct 2000 16:12:47 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9INCkk27890; Wed, 18 Oct 2000 16:12:46 -0700 (PDT) Date: Wed, 18 Oct 2000 16:12:46 -0700 From: Alfred Perlstein To: xavian anderson macpherson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: installation woes Message-ID: <20001018161246.O272@fw.wintelcom.net> References: <001101c03952$94b909b0$40461418@24.20.70.64> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <001101c03952$94b909b0$40461418@24.20.70.64>; from professional3d@home.com on Wed, Oct 18, 2000 at 03:27:20PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Julian, you want to see: http://people.freebsd.org/~alfred/pxe/ for jumpstart/kickstart tips/tricks. * xavian anderson macpherson [001018 15:27] wrote: > hey julian, (from the CNET help.com freebsd postings) > > i too had alot of difficulty installing freebsd. the reason i > found to be, was my soundblaster 16 scsi card. i need the driver > for this card if one exists (and one also for windows NT [the scsi > works but not the sound] as you'll read below). my cd is controlled > by this card, as is the 540MB quantum drive which i used exclusively > for swap space in linux. it seems (check the handbook if you have > the power-pak) that freebsd doesn't handle multifunction cards. > something that i find very ludicrous, considering it's claim to be > the ultimate internet OS. anyway, i finally got around this by > accident. You're incorrect, FreeBSD can handle these types of cards, you just need to know what IO port/irq they use. The SB16+scsi uses the 'aic' driver, if you were determined enough to get it working you would have went to the creative (makers of SB) website and got the card's jumper layout to figure it out. However, I just wanted to warn you that the scsi chipset on your card is hunk of junk and will kill performance if you use it. > > initially i thought that i would install my apps from cd using > the boot disks, and then go back and resolve the conflicts with > the irq's for my ethernet card (there was a conflict between it > and something that i thought was the driver that would control the > pci-bus. that driver turns out to be the one for the pcmcia bus > which i don't have. the only thing that differentiates them is a > single `c';pci0 vs. pcic0. so i eliminated the pcic0.) it turns > out that i had to install directly from the web. the installation > went smoothly once i got past all the other trouble. Good to hear > > so my answer is, if you have access to the internet, all you need > to do is make the kern.flp and mfsroot.flp (DONT USE THE 5.0-CURRENT > FLOPPY IMAGES. it seems that the sites don't support the installation > of those images.) go through the motions of setting up your slices > and the filesystems mounted to them. once that it done, select > your ports and/or sources and start the downloads. i have a > 10Mbit/sec cable modem. and i found that ftp2 for the us is the > fastest. none of the others would take advantage of my high download > speed. although, i did have repeated errors with that site when > i tried to reinstall XFREE86. that software may simply not have > been available at the time i tried. Yes, don't use 5.0 unless you know exactly what you're getting yourself into. > > i have not run freebsd since i installed it (because of XFREE86 > not working after i installed version-4.0 after already having > version-3.3.36. that's why i tried to reinstall XFREE86) i went > out and brought Windows NT; because i realize that any operating > system that doesn't even come with it's own boot floppies in the > packaging, thereby requiring you to have another operating system > to make copies of it's boot floppies, doesn't have the right to be > treated as anything other than an application of the system you > used to make the the floppies! i am impressed with the fact that > NT will allow me to run other OS's concurrently. let freebsd do > that, and then those folks can talk about superiority. they can't > even make their own floppies! if you know how to boot freebsd > inside of NT, i would appreciate hearing from you. also i need to > know how to read the data on my freebsd slice(s) from windows NT. > > GOOD LUCK! tell me how it works. I think you still have a lot left to learn, while I do agree that it would be nice to see the powerpack come with floppy disks, the truth is that: 1) most systems nowadays boot from cdrom 2) you can make FreeBSD boot floppies from BOTH FreeBSD and Windows/DOS, just because you don't have an existing FreeBSD machine doesn't mean everyone needs windows to make the disks. 3) FreeBSD has it's own bootloader and _two_ programs for booting from different disks, you just were unable to find them or figure out how to use them. :( With that said I think it's not very helpful for you to answer other's questions about FreeBSD until you have a greater grasp on the system yourself. Your negative answers because of lack of experiance don't help anyone. Best of luck, -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:13:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 2E3BF37B4D7 for ; Wed, 18 Oct 2000 16:13:26 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id KAA34917; Thu, 19 Oct 2000 10:13:14 +1100 (EST) Date: Thu, 19 Oct 2000 10:13:14 +1100 From: Nick Slager To: Kal Torak Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards Message-ID: <20001019101314.C25138@albury.net.au> References: <39EC4CC4.BB576E22@quake.com.au> <20001018095911.D91516@albury.net.au> <39ED04E5.A8F0DEE@quake.com.au> <20001018142717.A25002@albury.net.au> <39ED9701.6D3B244@quake.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39ED9701.6D3B244@quake.com.au>; from kaltorak@quake.com.au on Wed, Oct 18, 2000 at 10:26:41PM +1000 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Kal Torak (kaltorak@quake.com.au): > Nick Slager wrote: > > > > Thus spake Kal Torak (kaltorak@quake.com.au): > > > > > Ok, well I am using 4.0 on an IBM Thinkpad I series 2611, > > > the pc-card is a D-Link DFE-650... But thats not the prob, > > > I havent actually got to trying to use the pc-card... > > > > > > This is what I have tried, I installed from the cd, making > > > sure to put two pc-card slots in on the kernel config thing, > > > then from the console started pccardd, it said there was no > > > config file, so I copied pccard.conf.sample to the right > > > place so there was one... Then when starting pccardd is > > > said something like no pc-card slots found... > > > > The GENERIC kernel has the pc card devices. > > > > Are you sure your PC-Card controller is supported by FreeBSD? > > What's the brand/model of your controller? Is it able to function > > in non-cardbus mode? Do your BIOS settings match the software > > configuration? > > Well, I have no idea what the controller is... nothing in the > documentation says what its meant to be... > Looking at the windows driver, I think its called a: > 02Micro 026832/6833 Cardbuss I had a quick look through the IBM site, and I think the PCMCIA controller in your machine is cardbus only. Anyone else more familiar with this notebook care to comment? Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:13:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id A28FC37B4F9 for ; Wed, 18 Oct 2000 16:13:41 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9INDZE27925; Wed, 18 Oct 2000 16:13:35 -0700 (PDT) Date: Wed, 18 Oct 2000 16:13:35 -0700 From: Alfred Perlstein To: Chris Aitken Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Commandline Access to a Serial Port Message-ID: <20001018161334.P272@fw.wintelcom.net> References: <5.0.0.25.0.20001019093826.00a83588@mail.ideal.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <5.0.0.25.0.20001019093826.00a83588@mail.ideal.net.au>; from chris@ideal.net.au on Thu, Oct 19, 2000 at 09:38:50AM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Chris Aitken [001018 15:39] wrote: > Does anyone have any suggestions as to a tool I can use on my FreeBSD 3.4 > Stable box that can allow me to communicate with my Serial Port ? > > I have used Minicom perfectly to do what I need to do, but now I need to be > able to do it via command line, and not sure what is best to use. cu -l /dev/cuaa0 -s 9600 port ---^^^ speed -^^^ -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:15:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zeus.host4u.net (zeus.host4u.net [216.71.64.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C85537B4D7 for ; Wed, 18 Oct 2000 16:15:14 -0700 (PDT) Received: from mephistopheles.onlinecables.net (onlinecables.com [63.204.24.242]) by zeus.host4u.net (8.8.5/8.8.5) with SMTP id RAA29189 for ; Wed, 18 Oct 2000 17:51:43 -0500 From: Robert Shea Organization: Applied interconnect To: freebsd-questions@FreeBSD.ORG Subject: renice Date: Wed, 18 Oct 2000 16:11:04 -0700 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <00101316304203.17386@mephistopheles.onlinecables.net> In-Reply-To: <00101316304203.17386@mephistopheles.onlinecables.net> MIME-Version: 1.0 Message-Id: <00101816160900.00494@mephistopheles.onlinecables.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to renice common users on a 4x-STABLE machine yet i am having two problems: 1. for some reason this system lacks set/getpriority these were not removed from the install, and their respective man pages are present. Without these renice will not change the users' settings. 2. how would I go about making the reniced settings stick through reboots? Thank you, Robert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:15:59 2000 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 7B35D37B4D7 for ; Wed, 18 Oct 2000 16:15:55 -0700 (PDT) Received: from rac1.wam.umd.edu (IDENT:root@rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA14530; Wed, 18 Oct 2000 19:14:51 -0400 (EDT) Received: from rac1.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id TAA25207; Wed, 18 Oct 2000 19:14:51 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA25203; Wed, 18 Oct 2000 19:14:50 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Wed, 18 Oct 2000 19:14:50 -0400 (EDT) From: Kenneth Wayne Culver To: Chris Dempsey Cc: Ian Fricker , freebsd-questions@FreeBSD.ORG Subject: Re: Geforce 2 In-Reply-To: <20001018063743.6856.qmail@web122.yahoomail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm not sure what u all are talking about, I have a GeForce II MX, which I am using to type this messege in X right now. 3d accel doesn't work of course, but 2D works just fine with XFree86 4.0.1 CVS. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Tue, 17 Oct 2000, Chris Dempsey wrote: > Ian, > > Join the club of nonsupported GeForce 2 users. > Currently, there are XFree86 drivers, but no FreeBSD > kernel drivers. You need both. GeForce does work > under linux, using drivers available from > www.nvidia.com. As of last week, the people at NVidia > are "getting to it, but nobody at FreeBSD will help > us." I don't know if that is true on the FreeBSD end, > but needless to say you are stuck with either the > console or using X through linux. > > It is possible that FreeBSD binaries will be available > by mid to late-November. That is the best guess they > could give. > > Chris Dempsey > > > --- Ian Fricker wrote: > > Hello, > > I recently installed freebsd. I have a Creative Labs > > 3D Annihilator 2 with Nvidia's GeForce 2 chipset. It > > isn't supported, and I was wondering if you knew if > > there were bsd drivers for my card and where I can > > get them. I've looked several places on the web and > > haven't been able to find any, but maybe I'm > > overlooking something. If you need any more info, > > let me know. Thanks. > > Ian > > > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Messenger - Talk while you surf! It's FREE. > http://im.yahoo.com/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:38:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from munich.v-net.org (u57n248.hfx.eastlink.ca [24.222.57.248]) by hub.freebsd.org (Postfix) with ESMTP id 15D9F37B4CF for ; Wed, 18 Oct 2000 16:38:13 -0700 (PDT) Received: from unisys (Windozzze [192.168.8.2]) by munich.v-net.org (8.9.3/8.9.3) with SMTP id UAA05785 for ; Wed, 18 Oct 2000 20:38:00 -0300 (ADT) (envelope-from matt@researcher.com) From: "Matt Rudderham" To: Subject: Slightly OT: Sendmail & Virtual Domains Date: Wed, 18 Oct 2000 20:34:28 -0300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I'm currently trying to setup my virtual domains in sendmail. I'm following the Howto on sendmail.org on Virtual-Hosting. I get a roadblock when I get to the following: divert(-1)dnl # # This file contains definitions for mailserver.yourdomain.com # divert(0)dnl VERSIONID(`@(#)mailserver.mc 1.0 (yourdomain.com) 5/1/97') OSTYPE(solaris2)dnl .... By default, solaris2 is there, when I look at /usr/src/contrib/sendmail/cf/ostype/ I see nothing related to FreeBSD there, the closest is BSDi and BSD4.4 / BSD4.3 , What should I place there? It seems odd there would be no support for FreeBSD. Also if anyone has any tutorials on this specific to FreeBSD, I'd appreciate the help. Is the entire sendmail package located in /usr/src/contrib/sendmail/? I did a find on sendmail and it was the closest thing I could find. Thanks a lot - Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:38:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id 1ABE637B4D7 for ; Wed, 18 Oct 2000 16:37:53 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.44]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3369100; Wed, 18 Oct 2000 18:37:38 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id BD4A8B1; Wed, 18 Oct 2000 18:44:59 -0500 (CDT) Date: Wed, 18 Oct 2000 18:44:59 -0500 From: Michael Urban To: Chris Browning Cc: freebsd-questions@freebsd.org Subject: Re: fetchmail missing library Message-ID: <20001018184459.A444@tznet.com> References: <39EE2D1D.F933C142@prokyon.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39EE2D1D.F933C142@prokyon.com>; from brownicm@prokyon.com on Wed, Oct 18, 2000 at 07:07:09PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think you need to install the crypto sources from cvsup. It appears to be looking for an ssl library. I had this problem trying to install Python 1.6 too because I didn't install crypto during the CD-ROM install. On Wed, Oct 18, 2000 at 07:07:09PM -0400, Chris Browning wrote: > Invoking fetchmail gives me this error: > > /usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not > found > > I assume I'm missing something. Any ideas why and how I fix > it or where can I get it? > > Thanks. > -- > ------------------------ > Chris Browning > brownicm@prokyon.com > ------------------------ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:39: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.tx.home.com (ha1.rdc1.tx.home.com [24.4.0.66]) by hub.freebsd.org (Postfix) with ESMTP id 44FB537B4CF for ; Wed, 18 Oct 2000 16:38:59 -0700 (PDT) Received: from home.com ([24.8.250.184]) by mail.rdc1.tx.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001018233855.BBXN8711.mail.rdc1.tx.home.com@home.com> for ; Wed, 18 Oct 2000 16:38:55 -0700 Message-ID: <39EE33D5.5533FD50@home.com> Date: Wed, 18 Oct 2000 18:35:49 -0500 From: leoric@home.com X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: BBS for FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am wish to setup a telnet BBS on a freebsd machine. I tried citadel/ux but my users hated the interface. I then tried Eagle BBS which I liked alot but didnt run well on FreeBSD. I want something that is menu based and is of course freeware . Any suggestions? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:40:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from math.uic.edu (galois.math.uic.edu [131.193.178.114]) by hub.freebsd.org (Postfix) with SMTP id 450A937B4E5 for ; Wed, 18 Oct 2000 16:40:30 -0700 (PDT) Received: (qmail 7380 invoked by uid 31415); 18 Oct 2000 23:40:54 -0000 Date: 18 Oct 2000 23:40:54 -0000 Message-ID: <20001018234054.7379.qmail@math.uic.edu> From: vladimir@math.uic.edu To: freebsd-questions@freebsd.org, vladimir@math.uic.edu Subject: Re: pipsecd and PPPoE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry for replying to my own message... One more effort, and I've got it working. Vladimir >From owner-freebsd-questions@FreeBSD.ORG Wed Oct 18 23:13:52 2000 >Delivered-To: vladimir-bsd-questions@math.uic.edu >Delivered-To: freebsd-questions@freebsd.org >Date: 18 Oct 2000 23:12:16 -0000 >From: vladimir@math.uic.edu >To: freebsd-questions@freebsd.org >Subject: pipsecd and PPPoE >X-Loop: FreeBSD.ORG > >Dear BSD users, > >I've been playing with pipsecd and ppp over ethernet trying >to setup a secure connection between two machines on the ethernet. > >I've managed to connect these machines using ppp other ethernet, >with one side having IP = 192.168.1.1 on tun0 and the other >side having IP = 192.168.2.1 on tun0. I can ping >the other side from each machine. > >How would I use pipsecd now to setup a secure tunnel from one machine >to another (the tunnel should use established PPPoE connection)? >After a couple of hours of frustrating attempts I would appreciate >any help. If anyone has a similar setup working, that would be >great. > >Thank you! > Vladimir > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:47:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.lig.bellsouth.net (mail1.lig.bellsouth.net [205.152.0.55]) by hub.freebsd.org (Postfix) with ESMTP id 340AE37B4F9 for ; Wed, 18 Oct 2000 16:47:19 -0700 (PDT) Received: from prokyon.com (adsl-61-148-46.int.bellsouth.net [208.61.148.46]) by mail1.lig.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id TAA23825; Wed, 18 Oct 2000 19:51:01 -0400 (EDT) Message-ID: <39EE3629.9FB4B84@prokyon.com> Date: Wed, 18 Oct 2000 19:45:45 -0400 From: Chris Browning X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Michael Urban Cc: freebsd-questions@freebsd.org Subject: Re: fetchmail missing library References: <39EE2D1D.F933C142@prokyon.com> <20001018184459.A444@tznet.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Michael Urban wrote: > > I think you need to install the crypto sources from cvsup. It appears > to be looking for an ssl library. I had this problem trying to > install Python 1.6 too because I didn't install crypto during the > CD-ROM install. > I've been avoiding learning cvsup for quite a while 'cos there's so much more to figure out. Like sendmail/fetchmail. I installed all the crypto sources with sysinstall and that seems to have fixed that. On to the next... Thanks, Michael -- ------------------------ Chris Browning brownicm@prokyon.com ------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:48:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.bfm.org (mail.bfm.org [216.127.218.26]) by hub.freebsd.org (Postfix) with ESMTP id 426AF37B4CF for ; Wed, 18 Oct 2000 16:48:33 -0700 (PDT) Received: from WhizKid (r34.bfm.org [216.127.220.130]) by mail.bfm.org (Post.Office MTA v3.5.3 release 223 ID# 0-52399U2500L250S0V35) with SMTP id org for ; Wed, 18 Oct 2000 18:50:38 -0500 Message-Id: <3.0.6.32.20001018184710.00923eb0@mail85.pair.com> X-Sender: whizkid@mail85.pair.com X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 18 Oct 2000 18:47:10 -0500 To: questions@FreeBSD.ORG From: "G. Adam Stanislav" Subject: Help, I can't boot FreeBSD anymore Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Brian, I was wondering if you could help me here: I was working on some FreeBSD software (called tabs), and wanted to test its output when called 4 billion times. I typed: tabs 9999999999 > /dev/null It was supposed to write 4 bil tabs to stdout, redirected to /dev/null. After a while, I interrupted it with ^C, and did cd /dev; ls -lad null (as root). To my surprise, null was actually a huge file filled with tabs. I deleted it (rm null), then I did ln -s zero null. After a while I had to go, so I typed shutdown -p now, and turned the computer off when the shutdown was completed. The problem is, I cannot boot now. The boot process goes fine until it writes: /dev/rwd0s2e: 218 files, 5205 used, 55018 free (42 frags, 6872 blocks, 0.1% fragmentation) Then it just keeps accessing the hard drive (at least the LED is on) forever. After about 10 minutes I just turned it off, booted Windows, and have no idea what to do? Can you help? This is FreeBSD 3.1. Thanks, Adam P.S. Please CC replies directly to me: I am not a questions subscriber. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 16:50:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.rdc3.on.home.com (mail1.rdc3.on.home.com [24.2.9.40]) by hub.freebsd.org (Postfix) with ESMTP id 5564237B65F for ; Wed, 18 Oct 2000 16:50:09 -0700 (PDT) Received: from asus ([24.114.210.194]) by mail1.rdc3.on.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001018235003.QVOV8069.mail1.rdc3.on.home.com@asus> for ; Wed, 18 Oct 2000 16:50:03 -0700 From: "Pete Young" To: "freebsd-questions@freebsd.org" Date: Wed, 18 Oct 2000 16:11:24 +0500 Reply-To: "Pete Young" X-Mailer: PMMail 1.96a For OS/2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: GeForce 2 Message-Id: <20001018235003.QVOV8069.mail1.rdc3.on.home.com@asus> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Oct 2000 22:20:24 -0500, Ian Fricker wrote: >Hello, >I recently installed freebsd. I have a Creative Labs 3D Annihilator 2 with Nvidia's GeForce 2 chipset. It isn't supported, and I was wondering if you knew if there were bsd drivers for my card and where I can get them. I've looked several places on the web and haven't been able to find any, but maybe I'm overlooking something. If you need any more info, let me know. Thanks. >Ian > I managed to get the geforce 2 under Freebsd 4.1 and XFree86 4.1. The drivers have been written but the last XFree86 release does not contain them. I used the FreeBSD port system. Here are the steps that worked. cd /usr/ports/x11/XFree86-4 make patch I then copied these files from the XFree86.org anoncvs repository to the same directories under /usr/ports/x11/XFree86-4/work/ xc/programs/Xserver/hw/xfree86/common/xf86PciInfo.h xc/programs/Xserver/hw/xfree86/drivers/nv/nv_driver.c xc/programs/Xserver/hw/xfree86/drivers/nv/nv_include.h xc/programs/Xserver/hw/xfree86/drivers/nv/nv_local.h xc/programs/Xserver/hw/xfree86/drivers/nv/nv_type.h xc/programs/Xserver/hw/xfree86/drivers/nv/riva_tbl.h xc/programs/Xserver/hw/xfree86/drivers/nv/nv_xaa.c Edit nv_include.h and remove the line #include "vbe.h" . Finish with cd /usr/ports/x11/XFree86-4 make install XFree86 -configure And it worked! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:24: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 2E74537B4F9; Wed, 18 Oct 2000 17:24:04 -0700 (PDT) Received: from slave (Studded@slave [10.0.0.1]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id RAA27764; Wed, 18 Oct 2000 17:23:41 -0700 (PDT) (envelope-from DougB@gorean.org) Date: Wed, 18 Oct 2000 17:23:40 -0700 (PDT) From: Doug Barton X-Sender: doug@dt051n37.san.rr.com To: Rusty Nejdl Cc: freebsd-questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Where to post... In-Reply-To: <39EDF951.4C95C455@ringofsaturn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000, Rusty Nejdl wrote: > Believe it or not, I just wanted to know where I should post a > compliment on the > new FreeBSD 4.1 OS that you guys have released. I have successfully > gotten it working on my laptop with the NIC, graphics, and sound, so I > wanted to say thanks for a few new features that made my life much > easier. > > Rusty Nejdl > CCNA > Training Engineer > Verio, INC. -questions is as good a place as any. :) I'm cc'ing -hackers to reach a slightly wider audience of developers. Believe me when I say, _kind_ words are always appreciated, and I for one thank you for taking to time to offer yours. It helps make the work we do worthwhile. Doug -- "The dead cannot be seduced." - Kai, "Lexx" Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:27:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web118.yahoomail.com (web118.mail.yahoo.com [205.180.60.99]) by hub.freebsd.org (Postfix) with SMTP id A5D5237B4C5 for ; Wed, 18 Oct 2000 17:27:43 -0700 (PDT) Received: (qmail 21848 invoked by uid 60001); 19 Oct 2000 00:27:43 -0000 Message-ID: <20001019002743.21847.qmail@web118.yahoomail.com> Received: from [24.21.87.62] by web118.yahoomail.com; Wed, 18 Oct 2000 17:27:43 PDT Date: Wed, 18 Oct 2000 17:27:43 -0700 (PDT) From: Chris Dempsey Subject: Re: GeForce 2 To: Pete Young Cc: 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 Pete, What type of GeForce2 chipset are you using? The MX chipset or the GTS chipset? If using the GTS, you didn't get a kernel driver not found error? Chris Dempsey --- Pete Young wrote: > On Tue, 17 Oct 2000 22:20:24 -0500, Ian Fricker > wrote: > > >Hello, > >I recently installed freebsd. I have a Creative > Labs 3D Annihilator 2 with Nvidia's GeForce 2 > chipset. It isn't supported, and I was wondering if > you knew if there were bsd drivers for my card and > where I can get them. I've looked several places on > the web and haven't been able to find any, but maybe > I'm overlooking something. If you need any more > info, let me know. Thanks. > >Ian > > > > I managed to get the geforce 2 under Freebsd 4.1 and > XFree86 4.1. > The drivers have been written but the last XFree86 > release does not > contain them. > > I used the FreeBSD port system. Here are the steps > that worked. > > cd /usr/ports/x11/XFree86-4 > make patch > > I then copied these files from the XFree86.org > anoncvs repository to > the same > directories under /usr/ports/x11/XFree86-4/work/ > > xc/programs/Xserver/hw/xfree86/common/xf86PciInfo.h > > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_driver.c > > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_include.h > > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_local.h > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_type.h > > xc/programs/Xserver/hw/xfree86/drivers/nv/riva_tbl.h > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_xaa.c > > Edit nv_include.h and remove the line #include > "vbe.h" . Finish > with > > cd /usr/ports/x11/XFree86-4 > make install > XFree86 -configure > > And it worked! ===== Christopher P Dempsey --------------------- chrisdempsey@yahoo.com (805) 570-9230 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:27:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rz.uni-ulm.de (sirius-ether.rz.uni-ulm.de [134.60.1.36]) by hub.freebsd.org (Postfix) with ESMTP id F111537B4D7 for ; Wed, 18 Oct 2000 17:27:54 -0700 (PDT) Received: from gmx.de (lilith.wohnheim.uni-ulm.de [134.60.106.64]) by mail.rz.uni-ulm.de (8.9.3/8.9.3) with ESMTP id CAA26374; Thu, 19 Oct 2000 02:27:51 +0200 (MEST) Message-ID: <39EE4006.EA90F89B@gmx.de> Date: Thu, 19 Oct 2000 02:27:50 +0200 From: Siegbert Baude X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: de, en MIME-Version: 1.0 To: "G. Adam Stanislav" Cc: questions@freebsd.org Subject: Re: Help, I can't boot FreeBSD anymore References: <3.0.6.32.20001018184710.00923eb0@mail85.pair.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, > To my surprise, null was actually a huge file filled with tabs. I deleted > it (rm null), then I did ln -s zero null. I think that induced your problem. /dev/zero and /dev/null arenīt identical. From /dev/MAKEDEV mknod null c 2 2; chmod 666 null mknod zero c 2 12; chmod 666 zero Sorry, but I donīt know, where in the boot process you would need /dev/null the first time, so I donīt know, where your boot hangs. I suggest to use a fixit floppy, mount / && cd /dev && ./MAKEDEV null I have no clue, why your first step didnīt send your bytes to Nirvana and instead created a normal file containing your input. Any suggestions? Ciao Siegbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:28:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 7A7E737B4C5 for ; Wed, 18 Oct 2000 17:28:20 -0700 (PDT) Received: from slave (Studded@slave [10.0.0.1]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id RAA27786; Wed, 18 Oct 2000 17:28:17 -0700 (PDT) (envelope-from DougB@gorean.org) Date: Wed, 18 Oct 2000 17:28:17 -0700 (PDT) From: Doug Barton X-Sender: doug@dt051n37.san.rr.com To: Chris Browning Cc: freebsd-questions@freebsd.org Subject: Re: fetchmail missing library In-Reply-To: <39EE2D1D.F933C142@prokyon.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000, Chris Browning wrote: > Invoking fetchmail gives me this error: > > /usr/libexec/ld-elf.so.1: Shared object "libssl.so.1" not > found > > I assume I'm missing something. Any ideas why and how I fix > it or where can I get it? Your best bet is to delete your current fetchmail install and install it from the ports. good luck, Doug -- "The dead cannot be seduced." - Kai, "Lexx" Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:32: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tethys.ringofsaturn.com (tethys.ringofsaturn.com [206.50.17.51]) by hub.freebsd.org (Postfix) with ESMTP id 06EBB37B4D7; Wed, 18 Oct 2000 17:31:55 -0700 (PDT) Received: (from rnejdl@localhost) by tethys.ringofsaturn.com (8.9.3/8.9.3) id TAA85400; Wed, 18 Oct 2000 19:32:21 -0500 (CDT) (envelope-from rnejdl) Date: Wed, 18 Oct 2000 19:32:21 -0500 From: Rusty Nejdl To: Doug Barton Cc: freebsd-questions@FreeBSD.ORG, hackers@FreeBSD.ORG Subject: Re: Where to post... Message-ID: <20001018193221.A85334@tethys.ringofsaturn.com> References: <39EDF951.4C95C455@ringofsaturn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from DougB@gorean.org on Wed, Oct 18, 2000 at 05:23:40PM -0700 X-State: Dazed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug, Thanks for the quick reply. I have been a FreeBSD user since 3.2 first came out as I stumbled into your OS. I just wanted to take the time to say that the most recent changes that you all have put forth in the 4.0 series is a great step. I used the new PCM audio driver and it works extremely well and that was something that I never expected to see anytime soon. As well, the further compatibilities with the Linux software are well done and have done great things to help me make FreeBSD a workstation and not just a server or hobby machine at home. I have always been impressed with the stability in the OS and am using it for 2 web servers and a shell server at this time. Seeing where you are taking the desktop side of things, keep up the great work! Thanks! Rusty Nejdl CCNA Training Engineer Verio, INC. Doug Barton(DougB) wrote: > On Wed, 18 Oct 2000, Rusty Nejdl wrote: > > > Believe it or not, I just wanted to know where I should post a > > compliment on the > > new FreeBSD 4.1 OS that you guys have released. I have successfully > > gotten it working on my laptop with the NIC, graphics, and sound, so I > > wanted to say thanks for a few new features that made my life much > > easier. > > > > Rusty Nejdl > > CCNA > > Training Engineer > > Verio, INC. > > -questions is as good a place as any. :) I'm cc'ing -hackers to > reach a slightly wider audience of developers. Believe me when I say, > _kind_ words are always appreciated, and I for one thank you for taking to > time to offer yours. It helps make the work we do worthwhile. > > Doug > -- > "The dead cannot be seduced." > - Kai, "Lexx" > > Do YOU Yahoo!? > -- Rusty Nejdl "If it ain't broke, it doesn't have enough features yet." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:42:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.pchost.com.au (www.pchost.com.au [203.36.210.200]) by hub.freebsd.org (Postfix) with SMTP id 9091237B4E5 for ; Wed, 18 Oct 2000 17:42:07 -0700 (PDT) Received: (qmail 77105 invoked from network); 19 Oct 2000 00:42:17 -0000 Received: from bob.pchost.com.au (203.36.210.210) by www.pchost.com.au with SMTP; 19 Oct 2000 00:42:17 -0000 From: Kyle Buttress To: freebsd-questions@FreeBSD.ORG Date: Thu, 19 Oct 2000 22:44:23 +1100 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00101922473005.78390@bob.pchost.com.au> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello, I have just tried to complete a make word, but keep getting the following error ------------>Snip cd /usr/src/share/syscons/scrnmaps; make build-tools cc -static -O -pipe -I/usr/src/share/syscons/scrnmaps -DFIL=\"koi8-r2cp866\" -o koi8-r2cp866.mk /usr/src/share/syscons/scrnmaps/mkscrfil.c cc -static -O -pipe -I/usr/src/share/syscons/scrnmaps -DFIL=\"iso-8859-1_to_cp437\" -o iso-8859-1_to_cp437.mk /usr/src/share/syscons/scrnmaps/mkscrfil.c cc -static -O -pipe -I/usr/src/share/syscons/scrnmaps -DFIL=\"iso-8859-4_to_cp437\" -o iso-8859-4_to_cp437.mk /usr/src/share/syscons/scrnmaps/mkscrfil.c cd /usr/src/gnu/usr.bin/perl; make build-tools make: don't know how to make build-tools. Stop *** Error code 2 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. -------------------->Snip I have cvsuped 2 times now and have the same error any help would be great thanks -- Kyle Buttress kyle@pchost.com.au To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 17:45:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from SOEMAIL.soe.uq.edu.au (soecn1.soe.uq.edu.au [130.102.29.71]) by hub.freebsd.org (Postfix) with ESMTP id 115D037B4D7 for ; Wed, 18 Oct 2000 17:45:52 -0700 (PDT) Received: by soemail.soe.uq.edu.au with Internet Mail Service (5.5.2650.21) id ; Thu, 19 Oct 2000 10:45:33 +1000 Message-ID: <79373D1C5F67D411A14200D0B76DFC0B4B09@soemail.soe.uq.edu.au> From: Matthew Swinbourne To: 'Spades' Cc: "'questions@freebsd.org'" Subject: RE: /etc/inetd.conf Date: Thu, 19 Oct 2000 10:45:31 +1000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nope, only if you want to use ipv6 stuff.. -----Original Message----- From: Spades [mailto:spades@galaxynet.org] Sent: 14 October 2000 18:32 To: freebsd-questions@FreeBSD.ORG Cc: questions@FreeBSD.ORG Subject: /etc/inetd.conf Do we need the below if we already have the basic ones up? What does ipv6 lines below do? # IPv6 services # ftp stream tcp6 nowait root /usr/libexec/ftpd ftpd -l telnet stream tcp6 nowait root /usr/libexec/telnetd telnetd shell stream tcp6 nowait root /usr/libexec/rshd rshd login stream tcp6 nowait root /usr/libexec/rlogind rlogind finger stream tcp6 nowait/3/10 nobody /usr/libexec/fingerd fingerd -s Lee. ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:14:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gscamnlh01.wr.usgs.gov (gscamnlh01.wr.usgs.gov [130.118.4.115]) by hub.freebsd.org (Postfix) with ESMTP id 85CFA37B4F9 for ; Wed, 18 Oct 2000 18:14:31 -0700 (PDT) To: Rick Hamell Cc: freebsd-questions@freebsd.org Subject: Re: CSH Shell X-Mailer: Lotus Notes Release 5.0.3 March 21, 2000 Message-ID: From: rsowders@usgs.gov Date: Wed, 18 Oct 2000 18:14:23 -0700 X-MIMETrack: Serialize by Router on gscamnlh01/SERVER/USGS/DOI(Release 5.0.3 |March 21, 2000) at 10/18/2000 06:14:31 PM, Serialize complete at 10/18/2000 06:14:31 PM MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=_alternative 0006D3658825697D_=" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multipart message in MIME format. --=_alternative 0006D3658825697D_= Content-Type: text/plain; charset="us-ascii" Try this alias cd 'cd \!*; set prompt="`echo $cwd`> "' cd It will give you a prompt of the curent working directory Try this set prompt="`hostname`:$USER>" It will give you a prompt of hostname:user --=_alternative 0006D3658825697D_= Content-Type: text/html; charset="us-ascii"
Try this

alias cd 'cd \!*; set prompt="`echo $cwd`> "'
cd

It will give you a prompt of the curent working directory

Try this

set prompt="`hostname`:$USER>"

It will give you a prompt of hostname:user --=_alternative 0006D3658825697D_=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:17:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 4BBEF37B4E5 for ; Wed, 18 Oct 2000 18:17:42 -0700 (PDT) Received: (qmail 23966 invoked by uid 100); 19 Oct 2000 01:17:41 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14830.19381.223854.802224@guru.mired.org> Date: Wed, 18 Oct 2000 20:17:41 -0500 (CDT) To: Rick Hamell Cc: questions@freebsd.org Subject: OT: Unix skills transfer (Was: installation woes) In-Reply-To: <117082116@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Rick Hamell writes: > BTW... I've been using FreeBSD for three years now...I am willing > to admit that I am just now becoming comfortable enough with it that I'm > looking for a job as a Unix admin.... The nice thing is that all my > FreeBSD skills are transferable to any other Unix system in the > world! Um - not really "all", especially if you're doing admin. The admin tools on every unix distribution (and I include the various Linux distros in that) seems to be different. Real unix systems tend to be some mix of pure SysV and pure BSD tools, along with a few vendor-provided extras and GUIs just for fun. Linux seems to come with it's own set of variants on all those. Things like adduser vs. add_user vs. useradd vs user_add, for one thing. /etc/init.d vs /etc/rc.d vs /etc/rc?.d vs /etc/rc for another. Then there's AIX, which has a real Unix heritage, but - well, they changed all the error messages, and moved almost all the admin databases into binary data files that you frob with magic commands that don't exist on any other Unix system. The best summary is "AIX: it'll remind you of Unix." This stuff even trickles into userland, where my favorite "ps aux" becomes "ps -ef" on SysV systems. Finally, the ports system is FM, and nothing I've seen anywhere else comes close to it for either reliability or ease of use. ; Wed, 18 Oct 2000 18:27:25 -0700 (PDT) Received: from hades.hell.gr (patr530-b010.otenet.gr [195.167.121.138]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e9J1QSH14467; Thu, 19 Oct 2000 04:26:29 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id e9J1Qr010864; Thu, 19 Oct 2000 04:26:53 +0300 (EEST) Date: Thu, 19 Oct 2000 04:26:53 +0300 From: Giorgos Keramidas To: Alfred Perlstein Cc: Roger Merritt , freebsd-questions@FreeBSD.ORG Subject: Re: I/O redirection in tcsh Message-ID: <20001019042653.A10662@hades.hell.gr> References: <3.0.6.32.20001018164207.007c6850@stjohn.stjohn.ac.th> <20001018134813.C302@gray.westgate.gr> <20001018084634.J272@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001018084634.J272@fw.wintelcom.net>; from bright@wintelcom.net on Wed, Oct 18, 2000 at 08:46:35AM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 08:46:35AM -0700, Alfred Perlstein wrote: > > Try this: > > (myprog >& /dev/stdout) > outfile Ah, thanks! This was enough to get me searching my /dev directory. Now that I've also played with /dev/fd/* too, I am way happier with any shell, than a few days ago. -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:33:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thelab.hub.org (CDR8-44.accesscable.net [24.138.8.44]) by hub.freebsd.org (Postfix) with ESMTP id 6DAC537B4E5 for ; Wed, 18 Oct 2000 18:33:12 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id e9J1VeK07349 for ; Wed, 18 Oct 2000 22:31:40 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Wed, 18 Oct 2000 22:31:40 -0300 (ADT) From: The Hermit Hacker To: freebsd-questions@freebsd.org Subject: dhclient.conf and setting dynamic dns ... 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 Morning all ... I have a server running as primary dns for my domain, with my personal computer at home running on a semi-permanent IP through Shaw cable ... I'm running dhclient for dhcp, and am wondering if anyone has set things up so that when the IP changes, it updates dynamic dns on antoher machine? The only thing I can see in the dhclient.conf man page is the 'script' directive, but its for setting things *before* the update, not afterwards ... Ideas? Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:35:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from athserv.otenet.gr (athserv.otenet.gr [195.170.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 3719937B4CF for ; Wed, 18 Oct 2000 18:35:16 -0700 (PDT) Received: from hades.hell.gr (patr530-b010.otenet.gr [195.167.121.138]) by athserv.otenet.gr (8.10.1/8.10.1) with ESMTP id e9J1XmH18402; Thu, 19 Oct 2000 04:33:48 +0300 (EET DST) Received: (from charon@localhost) by hades.hell.gr (8.11.1/8.11.1) id e9J1YBT10946; Thu, 19 Oct 2000 04:34:11 +0300 (EEST) Date: Thu, 19 Oct 2000 04:34:11 +0300 From: Giorgos Keramidas To: Matt Rudderham Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: Sendmail & Virtual Domains Message-ID: <20001019043411.A10912@hades.hell.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from matt@researcher.com on Wed, Oct 18, 2000 at 08:34:28PM -0300 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 08:34:28PM -0300, Matt Rudderham wrote: > Hello, > I'm currently trying to setup my virtual domains in sendmail. Well, you can find a detailed responce of mine about this very topic, written about a week ago, in the archives :-) -- Giorgos Keramidas, < keramida @ ceid . upatras . gr > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:39: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from damoe.wireless-isp.net (damoe.wireless-isp.net [208.61.227.212]) by hub.freebsd.org (Postfix) with ESMTP id 304DB37B4E5 for ; Wed, 18 Oct 2000 18:38:58 -0700 (PDT) Received: (from amavis@localhost) by damoe.wireless-isp.net (8.9.3/8.9.3) id VAA37058 for ; Wed, 18 Oct 2000 21:38:57 -0400 (EDT) (envelope-from keen@damoe.wireless-isp.net) Received: from localhost (keen@localhost) by damoe.wireless-isp.net (8.9.3/8.9.3) with ESMTP id VAA36698; Wed, 18 Oct 2000 21:38:49 -0400 (EDT) (envelope-from keen@damoe.wireless-isp.net) X-Authentication-Warning: damoe.wireless-isp.net: keen owned process doing -bs Date: Wed, 18 Oct 2000 21:38:48 -0400 (EDT) From: David Raistrick To: Gabriel Ambuehl Cc: Muditha Gunatilake , questions@freebsd.org Subject: Re: Rackmount Servers In-Reply-To: <1065874527.20001016113253@buz.ch> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > We are a small ISP running FreeBSD. I am interested in purchasing rack > > mount servers to replace the seprate individual servers we have at If you /dont/ intend on building them yourselves, I've found that the Network Engines 'Viper' product is very nice. 1U, and it doesnt run extremely warm like some of the other 1U servers out there. We have 6 of them with no space between on one rack, (dual piii 700s, 1024 megs of ram, two scisi3 drives, plus cdrom) and they remain cool. I have 2 running FreeBSD 4.0-Stable since mid july and have not had a single problem. They have a nice assortment of available configurations... Now, you may notice when you check the website that they ship with either NT or Linux....we run niether, so dont be alarmed. BUT they only support NT and Linux RH6.2 with their Admin engine. Essentially the admin engine allows you to monitor, configure, repower, etc, the servers via a lame Java interface..(did i say that?:) But, even without the admin engine, I love them. Built in KVM switching, just chain the servers together with their special cable. Note that you should make sure to get at least one of their external floppy drives... Anyway. Thats my two cents. http://www.networkengines.com later....david -- David Raistrick Digital Wireless Communications davidr@dwcinet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:39:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web120.yahoomail.com (web120.mail.yahoo.com [205.180.60.121]) by hub.freebsd.org (Postfix) with SMTP id 01F7F37B4CF for ; Wed, 18 Oct 2000 18:39:41 -0700 (PDT) Received: (qmail 24627 invoked by uid 60001); 19 Oct 2000 01:39:40 -0000 Message-ID: <20001019013940.24626.qmail@web120.yahoomail.com> Received: from [24.21.87.62] by web120.yahoomail.com; Wed, 18 Oct 2000 18:39:40 PDT Date: Wed, 18 Oct 2000 18:39:40 -0700 (PDT) From: Chris Dempsey Subject: Re: GeForce 2 To: Pete Young Cc: xpert@xfree86.org, 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 --- Pete Young wrote: > On Wed, 18 Oct 2000 17:27:43 -0700 (PDT), Chris > Dempsey wrote: > > >Pete, > > > >What type of GeForce2 chipset are you using? The > MX > >chipset or the GTS chipset? If using the GTS, you > >didn't get a kernel driver not found error? > > > >Chris Dempsey > > I have an Elsa Gladiac with a GeForce 2 GTS and had > no errors. Did you > get the error with "XFree86 -configure" or "startx"? > I am running > Stable and Installworld was last done Oct 5. I > cvsupped ports Oct 10 > and built XFree86-4 at that time. > That is really bizzare. According to NVidia it should not even be working. I noticed also that you said you are using XFree86 4.1. Aren't they only at 4.0.1 right now? I have tried several different ways of doing it, using FreeBSD-4.1.1-Stable and the xc-all source, both from yesterday. When I do it normally, it complains about not finding a kernel driver. When I changed the #include vbe.h in the nv_include.h file it craps out saying (II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o (II) Module nvidia: vendor="NVIDIA Corporation" compiled for 4.0.1, module version = 1.0.5 (II) Loading /usr/X11R6/lib/modules/drivers/mga_drv.o (II) Module mga: vendor="The XFree86 Project" compiled for 4.0.1c, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/drivers/glint_drv.o (II) Module glint: vendor="The XFree86 Project" compiled for 4.0.1c, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o Duplicate symbol RivaEnterLeave in /usr/X11R6/lib/modules/drivers/nv_drv.o Also defined in /usr/X11R6/lib/modules/drivers/nvidia_drv.o Fatal server error: Module load failure I am using the ASUS V7700, a GTS-based card, so nothing should be different. I've cc'd this to both xpert@ xfree86.org and freebsd-questions@freebsd.org. __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:40:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postoffice.aims.com.au (advanc2.lnk.telstra.net [139.130.119.73]) by hub.freebsd.org (Postfix) with ESMTP id 5E03937B4CF for ; Wed, 18 Oct 2000 18:40:20 -0700 (PDT) Received: from postoffice.aims.com.au (nts-ts1.aims.private [192.168.10.2]) by postoffice.aims.com.au with ESMTP id MAA30384 for ; Thu, 19 Oct 2000 12:40:18 +1100 (EST) (envelope-from geoff@aims.com.au) Received: from ntsts1 by aims.com.au with SMTP (MDaemon.v3.1.1.R) for ; Thu, 19 Oct 2000 12:39:36 +1100 Reply-To: From: "Geoff Cooper" To: Subject: Date: Thu, 19 Oct 2000 12:39:34 +1100 Message-ID: <001201c0396d$7019ee60$020aa8c0@aims.private> 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 CWS, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal X-MDRcpt-To: freebsd-questions@FreeBSD.ORG X-Return-Path: geoff@aims.com.au X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, after using Enlightenment for a couple of months I've been getting a strange problem. When it starts up it's fine, but after it has run for a while you can no longer move windows around by holding down ALT and holding down left-mouse. Has anyone heard of this problem, and hopefully it's solution? The only solution I have at the moment is to shutdown x. I've tried using the 'restart enlightenment' option on the menu to no avail. Versions: Enlightenment version 0.16.3, BSD version 4.0-RELEASE Geoff Cooper geoff@aims.com.au | Microsoft: Where do you want to go today? | Linux: Where do you want to go tomorrow? | BSD: Are you guys coming, or what? Geoff Cooper geoff@aims.com.au | Microsoft: Where do you want to go today? | Linux: Where do you want to go tomorrow? | BSD: Are you guys coming, or what? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:42:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id BB31B37B479 for ; Wed, 18 Oct 2000 18:42:40 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 5386B1F22; Wed, 18 Oct 2000 18:42:40 -0700 (PDT) Subject: Re: renice In-Reply-To: <00101816160900.00494@mephistopheles.onlinecables.net> "from Robert Shea at Oct 18, 2000 04:11:04 pm" To: Robert Shea Date: Wed, 18 Oct 2000 18:42:40 -0700 (PDT) Cc: freebsd-questions@FreeBSD.ORG From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001019014240.5386B1F22@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I am trying to renice common users on a 4x-STABLE machine yet i am having two > problems: > 1. for some reason this system lacks set/getpriority these were not removed > from the install, and their respective man pages are > present. Without these Exactly how did you come to the conclusion that these are not present? Did you change the standard C library? I don't think a system will work properly if these weren't there. > renice will not change the users' settings. > 2. how would I go about making the reniced settings stick through > reboots? Well, a nice setting stays with a certain process until it dies. Obviously, when the system restarts, all processes die. If you want to set a default nice value for a group of users, take a look at login.conf(5). If you just want to renice specific processes and trust that they won't die until another reboot, you could create a simple shell script with a bunch of ` | xargs renice 4 -p` lines and run it when the system boots up via rc.local (or /usr/local/etc/rc.d). Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Most people would sooner die than think; in fact, they do so." -- Bertrand Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:44:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail4.sdc1.sfba.home.com (femail4.sdc1.sfba.home.com [24.0.95.84]) by hub.freebsd.org (Postfix) with ESMTP id C919637B479 for ; Wed, 18 Oct 2000 18:44:36 -0700 (PDT) Received: from home.com ([24.12.186.185]) by femail4.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001019014323.XQBX23659.femail4.sdc1.sfba.home.com@home.com>; Wed, 18 Oct 2000 18:43:23 -0700 Message-ID: <39EE522F.69C4C461@home.com> Date: Wed, 18 Oct 2000 18:45:19 -0700 From: Rob X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "Ronald G. Arnold Jr." Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Broken Gnome References: <000701c0394b$a9ab9a60$937b403f@rarnold> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Ronald G. Arnold Jr." wrote: > > I downloaded and burned FreeBSD411 and installed it with the > Gnome/Enlightenment Xwindows. I use medium security and when I boot > FreeBSD it pauses at as it loads sshd, but once I log in (as root, or > myself) and startx, I get the start screen with Gnome The Desktop. Then > nothing for 10 minutes, followed by Enlightenment starting, 10 minutes > later Gnome will load, but nothing works and if I start anything from > the menu, Gnome exits, leaving Enlightenment. I've used FreeBSD 3.4 and > never had any trouble. Anyone else have the same trouble with Gnome? > > Ronald > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Gnome 1.2 seems to start up much faster with icewm. Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:46:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id AAA4837B479 for ; Wed, 18 Oct 2000 18:46:15 -0700 (PDT) Received: (qmail 24793 invoked by uid 100); 19 Oct 2000 01:46:14 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14830.21093.897235.687784@guru.mired.org> Date: Wed, 18 Oct 2000 20:46:13 -0500 (CDT) To: Chris Aitken Cc: questions@freebsd.org Subject: Re: Commandline Access to a Serial Port In-Reply-To: <5.0.0.25.0.20001019123412.023dfac8@mail.ideal.net.au> References: <3302859@toto.iv> <5.0.0.25.0.20001019123412.023dfac8@mail.ideal.net.au> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chris Aitken writes: > At 08:27 PM 18/10/2000, you wrote: > >Chris Aitken writes: > > > Does anyone have any suggestions as to a tool I can use on my FreeBSD 3.4 > > > Stable box that can allow me to communicate with my Serial Port ? > >Are you looking for tip and/or cu? If the man pages tell you that's > >wrong, provide more details about what you want to do. > I have been playing with cu, which seems to be a possibility, but after a > few misc commands, cu seems to have stopped working, and I cant seem to get > it back to how it was. > > I ran > cu -l /dev/cuaa0 -s 9600 > > which allowed me to connect to the serial port, issue it an AT command it > received an OK back. But when I tried the needed command, it came back as > error (which when issued through minicom still works perfectly). > > Then after a couple of playing around with ~| and other things, its all > screwed up, and now it wont respond after it connects to the port. Sounds like you found the right tool set. You might try tip instead, though there's no real reason to expect it to be better. You also need to make that parity, word length, and stop bits are all correct. That's a bit easier with tip than cu, as you can store tip configuration in /etc/remote. X-Sender: whizkid@mail85.pair.com X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 18 Oct 2000 20:50:19 -0500 To: Siegbert Baude From: "G. Adam Stanislav" Subject: Re: Help, I can't boot FreeBSD anymore Cc: questions@freebsd.org In-Reply-To: <39EE4006.EA90F89B@gmx.de> References: <3.0.6.32.20001018184710.00923eb0@mail85.pair.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thank you. The problem seems solved , though I'm not quite sure why. I decided to boot again, and went to read a book for a while. When I came back, the system was finally booted, but acted eratic. df claimed my 8 Gig drive was 108% full. I deleted entire directories, but df kept reporting the same. I ran MAKEDEV all. It recreated /dev/null, thank goodness, before it failed for lack of disk space. The hard disk LED was just churning (or rather the disk was, the LED was blinking like crazy). I typed "reboot". After a long period of disk syncing, the system did reboot, though it said / was not dismounted properly (that would be the 8 Gig drive). However, it booted fairly quickly, df reported the big drive was 21% full, and everything was fine and dandy. Also /dev/null seems working right. I tried the same as before (tags 9999999 > /dev/null), and it worked as it was supposed to. So, I can go back to programming again. I am not sure what the heck happened (or for that matter how my /dev/null turned into a file), but as long as everything is working I'm happy. :) Thanks for your help, Adam At 02:27 19-10-2000 +0200, Siegbert Baude wrote: >Hi, > >> To my surprise, null was actually a huge file filled with tabs. I deleted >> it (rm null), then I did ln -s zero null. > >I think that induced your problem. /dev/zero and /dev/null aren=B4t= identical. >>From /dev/MAKEDEV > >mknod null c 2 2; chmod 666 null=20 >mknod zero c 2 12; chmod 666 zero=20 > >Sorry, but I don=B4t know, where in the boot process you would need /dev/null the >first time, so I don=B4t know, where your boot hangs. I suggest to use a= fixit >floppy, mount / && cd /dev && ./MAKEDEV null > >I have no clue, why your first step didn=B4t send your bytes to Nirvana and >instead created a normal file containing your input. > >Any suggestions? > >Ciao >Siegbert > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 18:59: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from oddjob.adhesivemedia.com (oddjob.adhesivemedia.com [207.202.159.77]) by hub.freebsd.org (Postfix) with ESMTP id BA61937B479 for ; Wed, 18 Oct 2000 18:59:07 -0700 (PDT) Received: from localhost (philip@localhost) by oddjob.adhesivemedia.com (8.9.3/8.9.3) with ESMTP id SAA41615; Wed, 18 Oct 2000 18:59:01 -0700 (PDT) (envelope-from philip@adhesivemedia.com) Date: Wed, 18 Oct 2000 18:59:01 -0700 (PDT) From: Philip Hallstrom To: vladimir@math.uic.edu Cc: freebsd-questions@FreeBSD.ORG Subject: Re: pipsecd and PPPoE In-Reply-To: <20001018231216.6944.qmail@math.uic.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't think pipsecd needs the PPPoE connection... take a look at http://www.adhesivemedia.com/~philip/pipsecd.html Although, I'd use vtun (in the ports) instead... it's a lot easier to setup and allows for mobile ip (ie, if one end doesn't have a static IP) On 18 Oct 2000 vladimir@math.uic.edu wrote: > Dear BSD users, > > I've been playing with pipsecd and ppp over ethernet trying > to setup a secure connection between two machines on the ethernet. > > I've managed to connect these machines using ppp other ethernet, > with one side having IP = 192.168.1.1 on tun0 and the other > side having IP = 192.168.2.1 on tun0. I can ping > the other side from each machine. > > How would I use pipsecd now to setup a secure tunnel from one machine > to another (the tunnel should use established PPPoE connection)? > After a couple of hours of frustrating attempts I would appreciate > any help. If anyone has a similar setup working, that would be > great. > > Thank you! > Vladimir > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19: 0:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thelab.hub.org (CDR8-44.accesscable.net [24.138.8.44]) by hub.freebsd.org (Postfix) with ESMTP id 5B04637B4C5 for ; Wed, 18 Oct 2000 19:00:27 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id e9J1wmO07625; Wed, 18 Oct 2000 22:58:48 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Wed, 18 Oct 2000 22:58:48 -0300 (ADT) From: The Hermit Hacker To: Chris Browning Cc: freebsd-questions@FreeBSD.ORG Subject: Re: dhclient.conf and setting dynamic dns ... In-Reply-To: <39EE5209.A013394A@prokyon.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG the dns stuff is relatively easy: --------- # $FreeBSD: src/etc/dhclient.conf,v 1.2 1999/08/27 23:23:41 peter Exp $ # # This file is required by the ISC DHCP client. # See ``man 5 dhclient.conf'' for details. # # In most cases an empty file is suffient for most people as the # defaults are usually fine. # supersede domain-name "hub.org"; prepend domain-name-servers 127.0.0.1, 216.126.84.1, 131.162.2.45; ----------- it still adds "their servers" as backup server 4 and 5, but at least mine have to time out several times before it hits :) On Wed, 18 Oct 2000, Chris Browning wrote: > The Hermit Hacker wrote: > > > > Morning all ... > > > > I have a server running as primary dns for my domain, with my > > personal computer at home running on a semi-permanent IP through Shaw > > cable ... I'm running dhclient for dhcp, and am wondering if anyone has > > set things up so that when the IP changes, it updates dynamic dns on > > antoher machine? > > > > The only thing I can see in the dhclient.conf man page is the > > 'script' directive, but its for setting things *before* the update, not > > afterwards ... > > > > Ideas? > > I may be mistaken, but I think that the exit_with_hooks is > what you want. I've been poking around in dhclient, too. I > know it re-writes resolv.conf when it finishes updating. I > haven't had time to fully explore it, but I've been playing > around with it to put my local DNS stuff back in resolv.conf > after an update. Of course, I may be completely off-track, > but I think that's where such things go. Anyone else? > -- > ------------------------ > Chris Browning > brownicm@prokyon.com > ------------------------ > > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:13:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.lig.bellsouth.net (mail4.lig.bellsouth.net [205.152.0.32]) by hub.freebsd.org (Postfix) with ESMTP id 9984E37B4C5 for ; Wed, 18 Oct 2000 19:13:26 -0700 (PDT) Received: from prokyon.com (adsl-61-148-46.int.bellsouth.net [208.61.148.46]) by mail4.lig.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id VAA10978; Wed, 18 Oct 2000 21:46:01 -0400 (EDT) Message-ID: <39EE5209.A013394A@prokyon.com> Date: Wed, 18 Oct 2000 21:44:41 -0400 From: Chris Browning X-Mailer: Mozilla 4.73 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: The Hermit Hacker Cc: freebsd-questions@FreeBSD.ORG Subject: Re: dhclient.conf and setting dynamic dns ... References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The Hermit Hacker wrote: > > Morning all ... > > I have a server running as primary dns for my domain, with my > personal computer at home running on a semi-permanent IP through Shaw > cable ... I'm running dhclient for dhcp, and am wondering if anyone has > set things up so that when the IP changes, it updates dynamic dns on > antoher machine? > > The only thing I can see in the dhclient.conf man page is the > 'script' directive, but its for setting things *before* the update, not > afterwards ... > > Ideas? I may be mistaken, but I think that the exit_with_hooks is what you want. I've been poking around in dhclient, too. I know it re-writes resolv.conf when it finishes updating. I haven't had time to fully explore it, but I've been playing around with it to put my local DNS stuff back in resolv.conf after an update. Of course, I may be completely off-track, but I think that's where such things go. Anyone else? -- ------------------------ Chris Browning brownicm@prokyon.com ------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:27:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc3.on.home.com (mail2.rdc3.on.home.com [24.2.9.41]) by hub.freebsd.org (Postfix) with ESMTP id 64E4737B4CF for ; Wed, 18 Oct 2000 19:27:15 -0700 (PDT) Received: from asus ([24.114.210.194]) by mail2.rdc3.on.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001019022713.VVED19212.mail2.rdc3.on.home.com@asus>; Wed, 18 Oct 2000 19:27:13 -0700 From: "Pete Young" To: "Chris Dempsey" Cc: "freebsd-questions@FreeBSD.ORG" , "xpert@xfree86.org" Date: Wed, 18 Oct 2000 18:48:37 +0500 Reply-To: "Pete Young" X-Mailer: PMMail 1.96a For OS/2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: GeForce 2 Message-Id: <20001019022713.VVED19212.mail2.rdc3.on.home.com@asus> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Oct 2000 18:39:40 -0700 (PDT), Chris Dempsey wrote: >--- Pete Young wrote: >> On Wed, 18 Oct 2000 17:27:43 -0700 (PDT), Chris >> Dempsey wrote: >> >> >Pete, >> > >> >What type of GeForce2 chipset are you using? The >> MX >> >chipset or the GTS chipset? If using the GTS, you >> >didn't get a kernel driver not found error? >> > >> >Chris Dempsey >> >> I have an Elsa Gladiac with a GeForce 2 GTS and had >> no errors. Did you >> get the error with "XFree86 -configure" or "startx"? >> I am running >> Stable and Installworld was last done Oct 5. I >> cvsupped ports Oct 10 >> and built XFree86-4 at that time. >> >That is really bizzare. According to NVidia it >should not even be working. I noticed also that you >said you are using XFree86 4.1. Aren't they only at >4.0.1 right now? I have tried several different ways >of doing it, using FreeBSD-4.1.1-Stable and the xc-all >source, both from yesterday. When I do it normally, >it complains about not finding a kernel driver. When >I changed the #include vbe.h in the nv_include.h file >it craps out saying >(II) Loading >/usr/X11R6/lib/modules/drivers/nvidia_drv.o >(II) Module nvidia: vendor="NVIDIA Corporation" > compiled for 4.0.1, module version = 1.0.5 >(II) Loading /usr/X11R6/lib/modules/drivers/mga_drv.o >(II) Module mga: vendor="The XFree86 Project" > compiled for 4.0.1c, module version = 1.0.0 >(II) Loading >/usr/X11R6/lib/modules/drivers/glint_drv.o >(II) Module glint: vendor="The XFree86 Project" > compiled for 4.0.1c, module version = 1.0.0 >(II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o >Duplicate symbol RivaEnterLeave in >/usr/X11R6/lib/modules/drivers/nv_drv.o >Also defined in >/usr/X11R6/lib/modules/drivers/nvidia_drv.o >Fatal server error: >Module load failure > >I am using the ASUS V7700, a GTS-based card, so >nothing >should be different. I've cc'd this to both xpert@ >xfree86.org and freebsd-questions@freebsd.org. > Here is the pertinent part of my log XFree86 Version 4.0.1 / X Window System (protocol Version 11, revision 0, vendor release 6400) Release Date: 1 July 2000 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (see http://www.XFree86.Org/FAQ) Operating System: FreeBSD 4.1.1-STABLE i386 [ELF] Module Loader present (==) Log file: "/var/log/XFree86.0.log", Time: Wed Oct 18 22:06:34 2000 (==) Using config file: "/etc/X11/XF86Config" Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (??) unknown. (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "My Monitor" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (WW) Option "XkbCompat" requires an string value (**) XKB: rules: "xfree86" (**) XKB: model: "pc104" (**) XKB: layout: "us" (**) FontPath set to "/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/ X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11 R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/f onts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.0.1, module version = 0.1.0 (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.0.1, module version = 0.1.0 (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (--) PCI:*(1:0:0) NVidia GeForce2 GTS rev 163, Mem @ 0xd6000000/24, 0xd8000000/27 (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a (II) Module freetype: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.1.7 (II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o (II) Module nv: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) NV: driver for NVIDIA chipsets: RIVA128, RIVATNT, RIVATNT2, RIVATNT2 (Ultra), RIVATNT2 (Vanta), RIVATNT2 M64, RIVATNT2 (Integrated), GeForce 256, GeForce DDR, Quadro, GeForce2 GTS, GeForce2 GTS (rev 1), GeForce2 ultra, Quadro 2 Pro, GeForce2 MX, GeForce2 MX DDR, Quadro 2 MXR (--) Assigning device section with no busID to primary device (--) Chipset GeForce2 GTS found (--) NV(0): Chipset: "GeForce2 GTS" (**) NV(0): Depth 16, (--) framebuffer bpp 16 (==) NV(0): RGB weight 565 (==) NV(0): Default visual is TrueColor (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.0.1, module version = 0.1.0 (==) NV(0): Using HW cursor (--) NV(0): Linear framebuffer at 0xD8000000 (--) NV(0): MMIO registers at 0xD6000000 (==) NV(0): Write-combining range (0xd6710000,0x10000) was already clear (==) NV(0): Write-combining range (0xd6600000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6680000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6100000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6002000,0x2000) was already clear (==) NV(0): Write-combining range (0xd6400000,0x2000) was already clear (==) NV(0): Write-combining range (0xd6101000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6009000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6000000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6800000,0x10000) was already clear (==) NV(0): Write-combining range (0xd6601000,0x1000) was already clear (==) NV(0): Write-combining range (0xd6681000,0x1000) was already clear (==) NV(0): Write-combining range (0xd60c0000,0x1000) was already clear (--) NV(0): VideoRAM: 32768 kBytes (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (==) NV(0): Write-combining range (0xa0000,0x10000) was already clear (II) Loading /usr/X11R6/lib/modules/libi2c.a (II) Module i2c: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.2.0 (II) NV(0): I2C bus "DDC" initialized. (II) NV(0): I2C device "DDC:ddc2" registered. (II) NV(0): I2C device "DDC:ddc2" removed. (II) NV(0): I2C Monitor info: 0x0 (II) NV(0): end of I2C Monitor info (--) NV(0): No DDC signal (II) NV(0): DDC Monitor info: 0x0 (II) NV(0): end of DDC Monitor info (==) NV(0): Write-combining range (0xa0000,0x10000) was already clear (==) NV(0): Using gamma correction (1.0, 1.0, 1.0) (II) NV(0): My Monitor: Using hsync range of 31.50- 48.50 kHz (II) NV(0): My Monitor: Using vrefresh range of 50.00- 70.00 Hz (II) NV(0): Clock range: 12.00 to 350.00 MHz (WW) NV(0): Mode "640x350" deleted (vrefresh out of range) (WW) NV(0): Mode "640x400" deleted (vrefresh out of range) (WW) NV(0): Mode "720x400" deleted (vrefresh out of range) (WW) NV(0): Mode "640x480" deleted (vrefresh out of range) (WW) NV(0): Mode "640x480" deleted (vrefresh out of range) (WW) NV(0): Mode "640x480" deleted (vrefresh out of range) (WW) NV(0): Mode "800x600" deleted (vrefresh out of range) (WW) NV(0): Mode "800x600" deleted (vrefresh out of range) (WW) NV(0): Mode "800x600" deleted (hsync out of range) (WW) NV(0): Mode "1024x768" deleted (vrefresh out of range) (WW) NV(0): Mode "1024x768" deleted (hsync out of range) (WW) NV(0): Mode "1024x768" deleted (hsync out of range) (WW) NV(0): Mode "1024x768" deleted (hsync out of range) (WW) NV(0): Mode "1152x864" deleted (hsync out of range) (WW) NV(0): Mode "1280x960" deleted (hsync out of range) (WW) NV(0): Mode "1280x960" deleted (hsync out of range) (WW) NV(0): Mode "1280x1024" deleted (hsync out of range) (WW) NV(0): Mode "1280x1024" deleted (hsync out of range) (WW) NV(0): Mode "1280x1024" deleted (hsync out of range) (WW) NV(0): Mode "1600x1200" deleted (hsync out of range) (WW) NV(0): Mode "1600x1200" deleted (hsync out of range) (WW) NV(0): Mode "1600x1200" deleted (hsync out of range) (WW) NV(0): Mode "1600x1200" deleted (hsync out of range) (WW) NV(0): Mode "1600x1200" deleted (hsync out of range) (WW) NV(0): Mode "1792x1344" deleted (hsync out of range) (WW) NV(0): Mode "1792x1344" deleted (hsync out of range) (WW) NV(0): Mode "1856x1392" deleted (hsync out of range) (WW) NV(0): Mode "1856x1392" deleted (hsync out of range) (WW) NV(0): Mode "1920x1440" deleted (hsync out of range) (WW) NV(0): Mode "1920x1440" deleted (hsync out of range) (WW) NV(0): Mode "1280x1024" deleted (no mode of this name) (--) NV(0): Virtual size is 1024x768 (pitch 1024) (**) NV(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz (**) NV(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz (**) NV(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz (==) NV(0): DPI set to (75, 75) (II) Loading /usr/X11R6/lib/modules/libcfb16.a (II) Module cfb16: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libcfb.a (II) Module cfb: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libmfb.a (II) Module mfb: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libxaa.a (II) Module xaa: vendor="The XFree86 Project" compiled for 4.0.1, module version = 1.0.0 (II) Loading /usr/X11R6/lib/modules/libramdac.a (II) Module ramdac: vendor="The XFree86 Project" compiled for 4.0.1, module version = 0.1.0 (==) NV(0): Write-combining range (0xd6000000,0x1000000) was already clear (==) NV(0): Write-combining range (0xd8000000,0x2000000) (==) NV(0): Write-combining range (0xa0000,0x10000) was already clear (II) NV(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 32 256x256 slots 16 512x512 slots (==) NV(0): Backing store disabled (==) NV(0): Silken mouse enabled Here are the specs on the files I replaced before compiling the port. -rw-r--r-- 1 root wheel - 58290 Sep 13 11:47 xf86PciInfo.h -rw-r--r-- 1 root wheel - 51657 Oct 6 08:31 nv_driver.c -rw-r--r-- 1 root wheel - 1331 Oct 6 08:31 nv_include.h -rw-r--r-- 1 root wheel - 4072 Aug 3 08:24 nv_local.h -rw-r--r-- 1 root wheel - 5592 Oct 9 16:26 nv_type.h -rw-r--r-- 1 root wheel - 23146 Aug 11 02:14 nv_xaa.c -rw-r--r-- 1 root wheel - 30730 Aug 11 01:04 riva_tbl.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:35:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from munich.v-net.org (u57n248.hfx.eastlink.ca [24.222.57.248]) by hub.freebsd.org (Postfix) with ESMTP id 9A3BC37B4D7 for ; Wed, 18 Oct 2000 19:35:30 -0700 (PDT) Received: from unisys (Windozzze [192.168.8.2]) by munich.v-net.org (8.9.3/8.9.3) with SMTP id XAA05986; Wed, 18 Oct 2000 23:34:29 -0300 (ADT) (envelope-from matt@researcher.com) From: "Matt Rudderham" To: "Giorgos Keramidas" Cc: Subject: RE: Slightly OT: Sendmail & Virtual Domains Date: Wed, 18 Oct 2000 23:34:43 -0300 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: <20001019043411.A10912@hades.hell.gr> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> Hello, >> I'm currently trying to setup my virtual domains in sendmail. > >Well, you can find a detailed responce of mine about this very topic, >written about a week ago, in the archives :-) Found it:) I have a few questions, I don't know if you or anyone can answer them. To install a virtual domain called hell.gr to a machine today, I took the following steps: >0. Set up the DNS server to point the primary MX record to the machine, > and the secondary MX record to some other machine. Done. >1. Add FEATURE(`virtusertable', `-o /etc/mail/virtusertable') to my > master-config file, and regenerate my sendmail.cf file. > > % cd ~/sendmail > % vi gray.mc > [ add FEATURE(`virtusertable', `-o /etc/mail/virtusertable') ] > % make gray.cf > [ ./Makefile takes care of generating gray.cf from gray.mc ] Hmm, this is where the problem starts, I have an installation of sendmail which was included when I did my initial install of FreeBSD 4.0-RELEASE. In /etc/mail I have my sendmail.cf, however I have no mc file that I can find. In /usr/src/contrib/sendmail/cf/ I have MANY .mc files, however, they all appear to be linked to an OS, ie ucbvax.ms, generic-bsd4.4.mc, etc... However none that appears to correspond directly to FreeBSD, I know FreeBSD is based on 4.4 BSD by glancing at my Walnut Creek CDs, but is this appropriate to use? >2. Copy my new configuration to /etc/mail/sendmail.cf Shouldn't Be a Problem:) >3. Add "hell.gr" to the /etc/mail/sendmail.cw file. I don't have a .cw file? Is there a specific format or algorithm to create one I should follow? The rest of the steps shouldn't be a problem either (I guess I'll find out when I get to them, but these are really throwing me for a loop:) Thanks. - Matt Rudderham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:49:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stjohn.stjohn.ac.th (stjohn.stjohn.ac.th [202.21.144.1]) by hub.freebsd.org (Postfix) with ESMTP id B428637B4E5 for ; Wed, 18 Oct 2000 19:49:38 -0700 (PDT) Received: from granite ([203.151.134.100]) by stjohn.stjohn.ac.th (8.9.3/8.9.3) with SMTP id JAA18110; Thu, 19 Oct 2000 09:43:01 +0700 (GMT) Message-Id: <3.0.6.32.20001019094844.007d6bd0@stjohn.stjohn.ac.th> X-Sender: mcrogerm@stjohn.stjohn.ac.th X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 19 Oct 2000 09:48:44 +0700 To: Giorgos Keramidas From: Roger Merritt Subject: Re: setting prompt in tcsh Cc: freebsd-questions@freebsd.org In-Reply-To: <20001018134457.B302@gray.westgate.gr> References: <3.0.6.32.20001018163847.007ab6b0@stjohn.stjohn.ac.th> <3.0.6.32.20001018163847.007ab6b0@stjohn.stjohn.ac.th> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 01:44 PM 10/18/00 +0300, you wrote: > >I think that I got what you want: > > % set prompt = '[%n@%m:%~]%# ' > [charon@gray:~]> su > Password: > gray# set prompt = '[%n@%m:%~]%# ' > [charon@gray:/home/charon]# exit > >For more details, see the manpage of tcsh(1). > >Ciao :) > Ahhh! Thanks a lot. I've found it in the man page now. Don't know why I couldn't find it yesterday. -- Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:55: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id C1C5C37B4E5 for ; Wed, 18 Oct 2000 19:55:06 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.189]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3468500; Wed, 18 Oct 2000 21:55:02 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 1B3EFB1; Wed, 18 Oct 2000 22:02:25 -0500 (CDT) Date: Wed, 18 Oct 2000 22:02:25 -0500 From: Michael Urban To: Geoff Cooper Cc: freebsd-questions@freebsd.org Subject: Re: Enlightenment problems Message-ID: <20001018220225.B748@tznet.com> References: <001201c0396d$7019ee60$020aa8c0@aims.private> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <001201c0396d$7019ee60$020aa8c0@aims.private>; from geoff@aims.com.au on Thu, Oct 19, 2000 at 12:39:34PM +1100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Only one thing really comes to mind. Enlightenment uses imlib, and older verions of imlib had a memory leak in them. Now really, I am just drawing straws here, but that is the first thing that came to my mind. You might check what version of imlib you have, and perhaps rebuild enlightenment with a newer version. No gurantees that will accomplish anything at all. But it's just a thought. P.S. In the future, please give a subject when posting to the list. On Thu, Oct 19, 2000 at 12:39:34PM +1100, Geoff Cooper wrote: > > Hi all, > after using Enlightenment for a couple of months I've > been getting a strange problem. When it starts up it's fine, > but after it has run for a while you can no longer move windows > around by holding down ALT and holding down left-mouse. > Has anyone heard of this problem, and hopefully it's solution? > > The only solution I have at the moment is to shutdown x. I've > tried using the 'restart enlightenment' option on the menu to > no avail. > > Versions: Enlightenment version 0.16.3, BSD version 4.0-RELEASE > > > > Geoff Cooper > geoff@aims.com.au > | Microsoft: Where do you want to go today? > | Linux: Where do you want to go tomorrow? > | BSD: Are you guys coming, or what? > > > > Geoff Cooper > geoff@aims.com.au > | Microsoft: Where do you want to go today? > | Linux: Where do you want to go tomorrow? > | BSD: Are you guys coming, or what? > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:55:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from math.uic.edu (galois.math.uic.edu [131.193.178.114]) by hub.freebsd.org (Postfix) with SMTP id 785F237B479 for ; Wed, 18 Oct 2000 19:55:12 -0700 (PDT) Received: (qmail 8187 invoked by uid 31415); 19 Oct 2000 02:55:37 -0000 Date: 19 Oct 2000 02:55:37 -0000 Message-ID: <20001019025537.8186.qmail@math.uic.edu> From: vladimir@math.uic.edu To: philip@adhesivemedia.com, vladimir@math.uic.edu Subject: Re: pipsecd and PPPoE Cc: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You are right. Unfortunately there is a firewall between the mobile node and the network it is connecting to, and I could not establish connection using pipsecd alone. A combination of PPPOE and pipsecd seems to work. I am looking at vtund right now, and it seems much easier to use. Actually the easiest setup seems to be is PPPOE + ssh (thank you gnb@lightning.itga.com.au for a description). (and thank you Philip -- your page on pipsecd helped me a lot). Let me ask something else out of curiosity, maybe someone knows the answer. I have very little knowledge of these things. Right now I have: ------------ -------------------------- mobile | PPPOE | server on remote network| 192.168.2.1| --------------------------------| 192.168.1.1 | tun0 | | tun0 | ----------- -------------------------- | | | | | ............|.................................... -------------- . --------------- . 192.168.20.10| . |192.168.10.10 | . tun1 | <- - --IPSEC-- -- -- -- -- -> |tun1 | fxp0 (ethernet) . (pipsecd) | . |(pipsecd) | A.B.C.110 . ------------- . ---------------- . ................................................. From a mobile, I can connect to 192.168.10.10 on the other end. But how do I access the external A.B.C.0 network (which is present on the fxp0 interface on the same machine)? How should I change/simplify the picture above? Thanks, Vladimir >From philip@adhesivemedia.com Thu Oct 19 02:00:43 2000 >Delivered-To: vladimir@math.uic.edu >Date: Wed, 18 Oct 2000 18:59:01 -0700 (PDT) >From: Philip Hallstrom >To: vladimir@math.uic.edu >cc: freebsd-questions@FreeBSD.ORG >Subject: Re: pipsecd and PPPoE >MIME-Version: 1.0 > >I don't think pipsecd needs the PPPoE connection... take a look at >http://www.adhesivemedia.com/~philip/pipsecd.html > >Although, I'd use vtun (in the ports) instead... it's a lot easier to >setup and allows for mobile ip (ie, if one end doesn't have a static IP) > >On 18 Oct 2000 vladimir@math.uic.edu wrote: > >> Dear BSD users, >> >> I've been playing with pipsecd and ppp over ethernet trying >> to setup a secure connection between two machines on the ethernet. >> >> I've managed to connect these machines using ppp other ethernet, >> with one side having IP = 192.168.1.1 on tun0 and the other >> side having IP = 192.168.2.1 on tun0. I can ping >> the other side from each machine. >> >> How would I use pipsecd now to setup a secure tunnel from one machine >> to another (the tunnel should use established PPPoE connection)? >> After a couple of hours of frustrating attempts I would appreciate >> any help. If anyone has a similar setup working, that would be >> great. >> >> Thank you! >> Vladimir >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message >> > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 19:59:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 71B8F37B479 for ; Wed, 18 Oct 2000 19:59:22 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2NPMO00.0QJ for ; Wed, 18 Oct 2000 21:59:12 -0500 From: Jeremy Vandenhouten To: freebsd-questions@freebsd.org Message-ID: <407297405e8e.405e8e407297@marquette.edu> Date: Wed, 18 Oct 2000 21:59:12 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: DNS and Apache behind Firewall/gateway X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I know that to allow a webserver to host behind a gateway/firewall it is necessary to add redirects in natd.conf, but what exactly needs to be done (could someone post a generic example or put up a link to an example). Also in order to register a domain it is necessary to have 2 DNS servers. Is it possible to set up one behind the firewall on an internal IP address and route it through as well? Obviously the second cannot be done the same way because the dns servers would have to be at different "internet" IP addresses, don't they? Thanks for any information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 20: 5:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-070.npt-sdsl.stargate.net [208.223.229.70]) by hub.freebsd.org (Postfix) with ESMTP id AA44337B4D7 for ; Wed, 18 Oct 2000 20:05:50 -0700 (PDT) Received: from w2xo.pgh.pa.us (shazam.w2xo.pgh.pa.us [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id DAA81420 for ; Thu, 19 Oct 2000 03:04:27 GMT (envelope-from durham@w2xo.pgh.pa.us) Message-ID: <39EE9DC7.D806BAD4@w2xo.pgh.pa.us> Date: Thu, 19 Oct 2000 03:07:51 -0400 From: Jim Durham Organization: dis- X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Radiusd with Portmaster2 on FreeBSD4.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm using the cistron radiusd on FreeBSD 4.1 with an old Portmaster 2E to authenticate a user base of around 100 users. The portmaster had been running on its internal user list, and worked, I am using the default user config file and using AuthType = System so I can use the Unix password file. The only way that the Radius server will authenticate a user is if they are also in the Portmaster user table. If I take the user out of the user table on the Portmaster, radiusd rejects the authentication. I see this running radiusd in the "-x -x" mode. Yes, I have the authentication server and accounting server values on the Portmaster pointing to the IP of the radius box. I have CHAP and PAP off. One clue is that radiusd reports that it is handed a CHAP password by the Portmaster, even though CHAP is off. This does not happen when the user is in the portmaster user table and is authenticated. I have read all the docs and the manuals on the Livingston site. Anyone know what's going on here? -Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 20:13:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from prserv.net (out1.prserv.net [32.97.166.31]) by hub.freebsd.org (Postfix) with ESMTP id B5DB837B4E5 for ; Wed, 18 Oct 2000 20:13:29 -0700 (PDT) Received: from server1a ([32.101.149.111]) by prserv.net (out1) with SMTP id <200010190313272520237euue>; Thu, 19 Oct 2000 03:13:28 +0000 Message-ID: <000a01c0397b$46f97c90$836719ac@domain0> From: To: Subject: JDK 1.2.2 Location? Date: Wed, 18 Oct 2000 23:18:38 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C03959.BED05210" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C03959.BED05210 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Good evening! Based on the statement below from the FreeBSD Java website, where = (exactly) is the JDK 1.2.2 located? I could not find it in the FreeBSD = ports/java/ directory. Am I missing something?=20 "October 14, 2000: Greg Lewis' native FreeBSD JDK 1.2.2 is now in beta = test stage and is now available in the ports directory = (ports/java/jdk12-beta).=20 While this is only for i386 architecture at the moment, this will allow = anyone running the i386 (most of you) the opportunity to build a native = JDK2, and then test them out against your favorite apps and custom code. = If you use something regularly, why not make a port of it? Instructions = are availible at Porters Handbook." Thanks,=20 Bobby ------=_NextPart_000_0007_01C03959.BED05210 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Good evening!
 
Based on the statement below from the FreeBSD Java website, where = (exactly)=20 is the JDK 1.2.2 located?  I could not find it in the FreeBSD=20 ports/java/ directory.  Am I missing something? 
 
"October 14, 2000: Greg Lewis' native FreeBSD JDK = 1.2.2 is=20 now in beta test stage and is now available in the ports directory=20 (ports/java/jdk12-beta).
While this is only for i386 architecture at = the=20 moment, this will allow anyone running the i386 (most of you) the = opportunity to=20 build a native JDK2, and then test them out against your favorite apps = and=20 custom code. If you use something regularly, why not make a port of it?=20 Instructions are availible at Porters = Handbook."
 
Thanks,
Bobby
------=_NextPart_000_0007_01C03959.BED05210-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 20:36:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mirapoint.com (mail.mirapoint.com [208.48.74.2]) by hub.freebsd.org (Postfix) with ESMTP id 2F8C737B4D7 for ; Wed, 18 Oct 2000 20:36:09 -0700 (PDT) Received: from mail.mirapoint.com (localhost.mirapoint.com [127.0.0.1]) by mail.mirapoint.com (Mirapoint) with SMTP id AAN10955; Wed, 18 Oct 2000 20:36:03 -0700 (PDT) From: Message-Id: <200010190336.AAN10955@mail.mirapoint.com> Received: from 208.176.140.244 by mail.mirapoint.com with HTTP/1.1; Wed, 18 Oct 2000 20:36:42 -0700 Date: Wed, 18 Oct 2000 20:36:42 -0700 Subject: *** Error code 1, please help! To: questions@freebsd.org X-Mailer: Mirapoint Webmail Direct 2.7.1.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, This is what I've done: cvsup -g L 2 /usr/src/CVS ports.sup cvsup -g L 2 /usr/src/CVS stable.sup make world /usr/sbin/config -g ROSEVILLEGW make depend make At the make, I get the following error after it runs for about 30 seconds. I have also included my kernel config. Any help or hints would be greatly appreciated. Thanks! Trevor Pirman: /usr/src/sys/compile/ROSEVILLEGW/../../dev/buslogic/bt.c(.text +0x28be): undefined reference to `xpt_freeze_simq' *** Error code 1 Stop in /usr/src/sys/compile/ROSEVILLEGW. ================================================== # # ROSEVILLEGW kernel # machine i386 cpu I586_CPU cpu I686_CPU ident ROSEVILLEGW maxusers 128 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev device isa device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices device adv0 at isa? device adw device bt0 at isa? device aha0 at isa? device aic0 at isa? # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device fxp # Intel EtherExpress PRO/100B (82557, 82558) # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ex device ep # The probe order of these is presently determined by i386/isa/isa_compat.c. device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 device fe0 at isa? port 0x300 device le0 at isa? port 0x300 irq 5 iomem 0xd0000 device lnc0 at isa? port 0x280 irq 10 drq 0 device cs0 at isa? port 0x300 device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) options IPDIVERT # natd options IPFIREWALL # firewall options IPFIREWALL_VERBOSE # print information options IPSEC # ip security options IPSEC_ESP To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 21: 9:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from irv1-mail2.intelenet.net (irv1-mail2.intelenet.net [204.182.160.3]) by hub.freebsd.org (Postfix) with ESMTP id 2BC0637B4D7 for ; Wed, 18 Oct 2000 21:09:26 -0700 (PDT) Received: from gidney.intelenet.net (gidney.intelenet.net [207.38.65.47]) by irv1-mail2.intelenet.net (8.9.3/8.9.3) with ESMTP id VAA19249 for ; Wed, 18 Oct 2000 21:09:25 -0700 (PDT) Message-Id: <200010190409.VAA19249@irv1-mail2.intelenet.net> To: freebsd-questions@freebsd.org Subject: lost X when I ran virtual terminal Date: Wed, 18 Oct 2000 21:10:02 -0700 From: David Harnick-Shapiro Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK, I'm an idiot. I hit ctl-alt-F2, my X session got hidden, and ttyv1 popped up -- all good. I finished my little experimentation... and I can't get back to X. When I hit alt-F1, I just see the text that gets spewed by the X server before it takes over, things like (--) SVGA: RIVA 128: Using hardware cursor BTW, I log in in text mode, and start X with xstart. I *promise* I looked before asking here (lynx to the handbook, the pcvt and screen man pages), but I couldn't find an answer: is there a way to make the X server come back? David H-S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 21:22:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from green.dyndns.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 49B6D37B4CF; Wed, 18 Oct 2000 21:22:29 -0700 (PDT) Received: from localhost (v8jqvz@localhost [127.0.0.1]) by green.dyndns.org (8.11.0/8.11.0) with ESMTP id e9J4MM509024; Thu, 19 Oct 2000 00:22:25 -0400 (EDT) (envelope-from green@FreeBSD.org) Message-Id: <200010190422.e9J4MM509024@green.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: "G. Adam Stanislav" Cc: Siegbert Baude , questions@FreeBSD.org Subject: Re: Help, I can't boot FreeBSD anymore In-Reply-To: Message from "G. Adam Stanislav" of "Wed, 18 Oct 2000 20:50:19 CDT." <3.0.6.32.20001018205019.00853560@mail85.pair.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Date: Thu, 19 Oct 2000 00:22:21 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "G. Adam Stanislav" wrote: > Thank you. The problem seems solved , though I'm not quite sure w= hy. > I decided to boot again, and went to read a book for a while. > = > When I came back, the system was finally booted, but acted eratic. df > claimed my 8 Gig drive was 108% full. I deleted entire directories, but= df > kept reporting the same. I ran MAKEDEV all. It recreated /dev/null, tha= nk > goodness, before it failed for lack of disk space. The hard disk LED wa= s > just churning (or rather the disk was, the LED was blinking like crazy)= =2E I think your /var/run/utmp might have been unhappy. rc: (cd /var/run && cp /dev/null utmp && chmod 644 utmp;) If /dev/null is really /dev/zero.... ;) > I typed "reboot". After a long period of disk syncing, the system did > reboot, though it said / was not dismounted properly (that would be the= 8 > Gig drive). However, it booted fairly quickly, df reported the big driv= e > was 21% full, and everything was fine and dandy. Also /dev/null seems > working right. I tried the same as before (tags 9999999 > /dev/null), a= nd > it worked as it was supposed to. Hm. I wonder why it couldn't unmount correctly. > So, I can go back to programming again. I am not sure what the heck > happened (or for that matter how my /dev/null turned into a file), but = as > long as everything is working I'm happy. :) Lots of things running as root might have accidentally unlink(2)ed it. I= 'd = probably try to find out which one did so it can't happen again. > Thanks for your help, > = > Adam > = > At 02:27 19-10-2000 +0200, Siegbert Baude wrote: > >Hi, > > > >> To my surprise, null was actually a huge file filled with tabs. I de= leted > >> it (rm null), then I did ln -s zero null. > > > >I think that induced your problem. /dev/zero and /dev/null aren=B4t id= entical. > >>From /dev/MAKEDEV > > > >mknod null c 2 2; chmod 666 null = > >mknod zero c 2 12; chmod 666 zero = > > > >Sorry, but I don=B4t know, where in the boot process you would need > /dev/null the > >first time, so I don=B4t know, where your boot hangs. I suggest to use= a fixit > >floppy, mount / && cd /dev && ./MAKEDEV null I'd prefer rc(1) called "echo -n >utmp" instead of "cp /dev/null utmp" :-= / -- Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! / green@FreeBSD.org `------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 21:24:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 3AA2337B4D7 for ; Wed, 18 Oct 2000 21:24:26 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9J4OP808640; Wed, 18 Oct 2000 21:24:25 -0700 (PDT) Date: Wed, 18 Oct 2000 21:24:25 -0700 From: Alfred Perlstein To: David Harnick-Shapiro Cc: freebsd-questions@FreeBSD.ORG Subject: Re: lost X when I ran virtual terminal Message-ID: <20001018212425.C28123@fw.wintelcom.net> References: <200010190409.VAA19249@irv1-mail2.intelenet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200010190409.VAA19249@irv1-mail2.intelenet.net>; from davidhs@intelenet.net on Wed, Oct 18, 2000 at 09:10:02PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * David Harnick-Shapiro [001018 21:09] wrote: > > OK, I'm an idiot. I hit ctl-alt-F2, my X session got hidden, and > ttyv1 popped up -- all good. I finished my little experimentation... > and I can't get back to X. When I hit alt-F1, I just see the text > that gets spewed by the X server before it takes over, things like > > (--) SVGA: RIVA 128: Using hardware cursor > > BTW, I log in in text mode, and start X with xstart. > > I *promise* I looked before asking here (lynx to the handbook, the > pcvt and screen man pages), but I couldn't find an answer: is there > a way to make the X server come back? Alt+f8 (or 9 or 10) depends on your config. > > David H-S > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 21:51:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpgate1.syd.iprimus.com.au (smtpgate1.syd.iprimus.com.au [203.134.64.91]) by hub.freebsd.org (Postfix) with ESMTP id B63FC37B4F9 for ; Wed, 18 Oct 2000 21:51:16 -0700 (PDT) Received: from primus.com.au ([203.134.29.204]) by smtpgate1.syd.iprimus.com.au with Microsoft SMTPSVC(5.5.1877.517.51); Thu, 19 Oct 2000 15:53:10 +1100 Message-ID: <39EE8B2A.810D2E2F@primus.com.au> Date: Thu, 19 Oct 2000 15:48:26 +1000 From: FM International/ Jim Conway X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: win onhorses Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG No Win No Fee "Fitness The Key" FREE $36.00 Start-Up aconway@optushome.com.au www.geocities.com/nokoff/ Hi, I am Jim Conway in Melbourne with Fitness Percentages on race horses. After 15 years research, on How, Why and When a horse wins, it has started, an easy, inexpensive communication link has been invented so that I can get you the fittest horses the next race as I am right there oncourse, around the stables. I look at the horses in each race and when I find one horse with a fitness advantage over other runners, and in a race that it can win, I will send to your mobile message bank information on that horse. There is no charge to read messages from your message bank. Your may get 4 a meeting, there may be only 1, but I will let you know before they jump. If my one selction does not run 1st 2nd or 3rd, you do NOT pay. If it does, it will cost you $4. This is how simple it is to turn your punting into profit because each race you are on the fittest horses. The next small 10 steps will be the most financially rewarding investment you will ever do. My logical, comprehensive research results and controversial resume is on my web site. 1/ Ring me , on 0404 07 25 70 and register your mobile number. That is all the information I need, and you have a $36 start-up pack. 2/ 5-15 minutes before the next race, you will receive a short call signal to check your message bank. 3/ It will give you a race number and one selection. EG. R2 4/ If my 1st selection does not run a place there is no charge. 5/ Your 1st 4 (four) winning races are FREE then a charge of only $4 per 1st pick placed winner will apply thereafter. Naturally I will finish a meeting, because many times 8 out 8 can get home and you will really have a great days punting., but only 4 free winners apply. 6/ After your free winners, you will be allowed a credit of $20.00 then your mobile number will be omitted and service cancelled unless some payment is sent to Mr Jim Conway P.O. Box 2241 North Dandenong Vic. 3175. It would pay to be in front of your account for at the moment I have given out 5 specials for 3 winners and 2 seconds. That is a 100% place rate and a 60% win rate. 7/ My web site will change soon, and race summaries and horses to follow will be there for your free information guide. Most information is now on my guest book on consultancy page, please feel free to check as also horses ready to win are there. 8/ I have waited a long time for this and I get a real buzz by using my science knowledge on fitness for each new race, and for punters to get the truth about How, Why, and When our horses win! Lets go racing. 9/ Race meetings will be on Wednesday and Saturdays at city tracks unless notified. 10/ Last but most important is you may be able to buy the things you have always wanted, nokoff work, take a holiday, relax and spend your winnings. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 21:52:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 2E50637B479 for ; Wed, 18 Oct 2000 21:52:44 -0700 (PDT) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id XAA03110 for ; Wed, 18 Oct 2000 23:52:10 -0500 (CDT) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id XAA16456; Wed, 18 Oct 2000 23:52:09 -0500 (CDT) Date: Wed, 18 Oct 2000 23:52:09 -0500 (CDT) From: vcardon@siue.edu Message-Id: <200010190452.XAA16456@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: freebsd-questions@freebsd.org Reply-To: vcardon@siue.edu MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: gnome-session core dumps Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone been able to start gnome? I am running it without any problems at work on a 4.x stable box, but when I try to start it at home it core dumps. Basically, it complains about not being able to write a .gnome directory in my home directory. Thanks, Victor Cardona To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 21:55:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id BB01637B479 for ; Wed, 18 Oct 2000 21:55:30 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.189]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3504500; Wed, 18 Oct 2000 23:55:27 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 04532A7; Thu, 19 Oct 2000 00:02:52 -0500 (CDT) Date: Thu, 19 Oct 2000 00:02:51 -0500 From: Michael Urban To: freebsd-questions@freebsd.org Subject: Re: *** Error code 1, please help Message-ID: <20001019000251.A2135@tznet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In-Reply-To: <200010190336.AAN10955@mail.mirapoint.com>; from tpirman@mirapoint.com on Wed, Oct 18, 2000 at 08:36:42PM -0700 If you just did a make world, you need to use a different procedure for building your kernel. This is a fairly recent change. cd /usr/src make buildkernel KERNEL=ROSEVILLEGW make installkernel KERNEL=ROSEVILLEGW Doing it the old way will result in the kernel trying to build with old utilities and usually won't work. Note that you only do it the new way after upgrading source or doing a make world. Otherwise, do it the old way. On Wed, Oct 18, 2000 at 08:36:42PM -0700, tpirman@mirapoint.com wrote: > Hi, > > This is what I've done: > > cvsup -g L 2 /usr/src/CVS ports.sup > cvsup -g L 2 /usr/src/CVS stable.sup > make world > /usr/sbin/config -g ROSEVILLEGW > make depend > make To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22: 4:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id A3BEB37B4CF for ; Wed, 18 Oct 2000 22:04:29 -0700 (PDT) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id AAA05829 for ; Thu, 19 Oct 2000 00:02:57 -0500 (CDT) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id AAA16544; Thu, 19 Oct 2000 00:02:56 -0500 (CDT) Date: Thu, 19 Oct 2000 00:02:56 -0500 (CDT) From: vcardon@siue.edu Message-Id: <200010190502.AAA16544@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: freebsd-questions@freebsd.org Reply-To: vcardon@siue.edu MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: Re: gnome-session Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please disregard my earlier post. I have solved my problem. It turns out that .gnome was owned by root. Thanks, Victor Cardona To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22: 5:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 639FE37B4FE for ; Wed, 18 Oct 2000 22:05:21 -0700 (PDT) Received: from [206.246.249.69] (helo=w3rite.com) by wilma.widomaker.com with esmtp (Exim 3.16 #2) id 13m7tA-0003RD-00 for freebsd-questions@FreeBSD.org; Thu, 19 Oct 2000 01:05:12 -0400 Message-ID: <39EE8106.85659CA1@w3rite.com> Date: Thu, 19 Oct 2000 01:05:10 -0400 From: "Kennie H. Jones" X-Mailer: Mozilla 4.07 [en] (Win98; U) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: Problems with pppd Content-Type: multipart/mixed; boundary="------------2AC1D9BD24A660206E8C819F" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I am trying to use the kernel version of PPP (program, pppd) to connect to my ISP by a new installation of FreeBSD. I have followed exactly the instructions in "The Complete FreeBSD" book and in the URL, http://www.freebsd.org/handbook/ppp.html, using the instructions for chat instead of kermit. Thes two methods are somewhat different in their recommended parameters and methods. I have also tried many (if not all) combinations of parameters (putting in all and then commenting out as I try to connect). None of the combinations seem to work. The result is that I appear to connect: I hear the modem dial and typical noise, the noise stops, and the system says it connected displaying both local and remote IP addresses that have been assigned. But, when I try to ping an address at my ISP, it hangs and never connects. I have found that if I ping the local connection address, it works. But if I ping the remote connection address, it hangs as well. In the file, rc.conf, I have set the parmeter, gateway_enable="NO", to keep things as simple as possible. My eventual goal is for this computer to be a gateway for my local network to the ISP. My local network is working OK. So, my questions are: 1) How do I get this system to be able to communicate with the Internet through my ISP (i.e. what is wrong with my currnet configuration that is not allowing me to do this?) 2) Once this connection is working for this computer, how do I make it serve as a gateway for my local network. 3) If I uncommment the line, "demand", in the file, "options", it displays an error, (see attached file, "pppd-demand.out", that says I must set a static IP address for the ISP. My ISP uses dynamic addresses on both the local and remote end, and apparently the addresses are not even from the same subnet with each connection. How so I use pppd to dial on demand with dynamic addresses? The following files are attached (all but rc.conf in /etc/ppp): options - option file for pppd dial.chat - input for the chat pap.secrets - username and password for pap. (changed to "" and "". Found that the options file (login method) would not work without this file, so evidently my ISP uses pap. /etc/rc.conf connect-errors - log file from pppd pppd.out - output from execution of pppd pppd-demand.out - output from execution of pppd with demand option in "options" ifconfig.before - output of ifconfig before execution of pppd ifconfig.after - output of "ifconfig -a" after execution of pppd netstat.before - output of "netstat -rn" before execution of pppd netstat.after - output of "netstat -rn" after execution of pppd ping.local - output of ping to local address assigned by ISP ping.remote - output of ping to remote address assigned by ISP I also tried User ppp as describe in both the book and the www.freebsd handbook trying different options. I executed it with the command: ppp -auto -alias demand which should start ppp in the auto mode whcih should not connect until I execute a command that needs the network. However, when I execute ping, they hang as with pppd and the modem never dials. The following file are attached relative to User ppp: ppp.conf ppp.linkup ppp.out - output from execution of ppp Thanks in advance for your time and experience. --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="options" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="options" # Options file for pppd /dev/cuaa1 115200 crtscts modem noipdefault passive domain ppp.jones.com defaultroute #demand idle 60 connect "/usr/bin/chat -f /etc/ppp/dial.chat -V -s" user lock debug #deflate 12,12 --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="dial.chat" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dial.chat" ABORT BUSY ABORT 'NO CARRIER' "" AT OK ATDT3699436 CONNECT "" TIMEOUT 10 #ogin:\\r-ogin: #TIMEOUT 5 #sword: --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="pap-secrets" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pap-secrets" * --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="rc.conf" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc.conf" # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # -- sysinstall generated deltas -- # ifconfig_ep0="inet 10.0.0.1 netmask 255.255.255.0" defaultrouter="10.0.0.1" hostname="firewall.jones.com" linux_enable="YES" gateway_enable="YES" nfs_server_enable="YES" nfs_client_enable="YES" ifconfig_ppp0="inet 0.0.0.0 netmask 255.255.255.255" #natd_enable="YES" #natd_interfaces="ppp0" --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="connect-errors" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="connect-errors" AT OK ATDT3699436 CONNECT --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="pppd.out" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pppd.out" Oct 18 22:20:12 firewall pppd[536]: ppps 2.3.5 started by root, uid 0 Oct 18 22:20:39 firewall pppd[536]: Connect: ppp0 <--> /dev/cuaa1 ppp0: IPv6 not supported Oct 18 22:20:45 firewall /kernel: ppp0 IPv6 not supported Oct 18 22:20:45 firewall /kernel: ppp0 IPv6 not supported Oct 18 22:20:45 firewall pppd[536]: Couldn't add default route: File exists Oct 18 22:20:45 firewall pppd[536]: Couldn't add default route: File exists Oct 18 22:20:45 firewall pppd[536]: Couldn't add default route: File exists Oct 18 22:20:45 firewall pppd[536]: local IP address 209.96.179.92 Oct 18 22:20:45 firewall pppd[536]: remote IP address 204.17.220.65 Oct 18 22:20:45 firewall pppd[536]: Connection terminated, connected for 1 minutes --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="pppd-demand.out" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pppd-demand.out" pppd: remote IP address required for demand-dialling Oct 18 22:10:16 firewall pppd[506]: remote IP address required for demand-dialling Oct 18 22:10:16 firewall pppd[506]: remote IP address required for demand-dialling Oct 18 22:10:16 firewall pppd[506]: remote IP address required for demand-dialling --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ifconfig.before" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ifconfig.before" lp0: flags=8810 mtu 1500 ep0: flags=8843 mtu 1500 inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 inet6 fe80::2a0:24ff:fe11:8682%ep0 prefixlen 64 scopeid 0x2 ether 00:a0:24:11:86:82 media: 10baseT/UTP supported media: 10baseT/UTP 10base5/AUI sl0: flags=c010 mtu 552 ppp0: flags=8010 mtu 1500 lo0: flags=8049 mtu 16384 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 gif0: flags=8010 mtu 1280 gif1: flags=8010 mtu 1280 gif2: flags=8010 mtu 1280 gif3: flags=8010 mtu 1280 faith0: flags=8000 mtu 1500 --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ifconfig.after" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ifconfig.after" lp0: flags=8810 mtu 1500 ep0: flags=8843 mtu 1500 inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 inet6 fe80::2a0:24ff:fe11:8682%ep0 prefixlen 64 scopeid 0x2 ether 00:a0:24:11:86:82 media: 10baseT/UTP supported media: 10baseT/UTP 10base5/AUI sl0: flags=c010 mtu 552 ppp0: flags=8051 mtu 1500 inet 206.246.249.227 --> 204.17.220.65 netmask 0xffffff00 lo0: flags=8049 mtu 16384 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 gif0: flags=8010 mtu 1280 gif1: flags=8010 mtu 1280 gif2: flags=8010 mtu 1280 gif3: flags=8010 mtu 1280 faith0: flags=8000 mtu 1500 --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="netstat.before" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="netstat.before" Routing tables Internet: Destination Gateway Flags Netif Expire default 10.0.0.1 UGSc 0 0 ep0 10/24 link#2 UC 0 0 ep0 => 10.0.0.1 0:a0:24:11:86:82 UHLW 1 24 lo0 127.0.0.1 127.0.0.1 UH 1 26 lo0 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UH lo0 fe80::%ep0/64 link#2 UC ep0 fe80::%lo0/64 fe80::1%lo0 Uc lo0 ff01::/32 ::1 U lo0 ff02::%ep0/32 link#2 UC ep0 ff02::%lo0/32 fe80::1%lo0 UC lo0 --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="netstat.after" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="netstat.after" Routing tables Internet: Destination Gateway Flags Netif Expire default 10.0.0.1 UGSc 0 0 ep0 10/24 link#2 UC 0 0 ep0 => 10.0.0.1 0:a0:24:11:86:82 UHLW 1 40 lo0 127.0.0.1 127.0.0.1 UH 1 26 lo0 204.17.220.65 206.246.249.227 UH 0 0 ppp0 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UH lo0 fe80::%ep0/64 link#2 UC ep0 fe80::%lo0/64 fe80::1%lo0 Uc lo0 ff01::/32 ::1 U lo0 ff02::%ep0/32 link#2 UC ep0 ff02::%lo0/32 fe80::1%lo0 UC lo0 --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ping.local" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ping.local" PING 206.246.249.227 (206.246.249.227): 56 data bytes 64 bytes from 206.246.249.227: icmp_seq=0 ttl=255 time=0.567 ms 64 bytes from 206.246.249.227: icmp_seq=1 ttl=255 time=0.493 ms 64 bytes from 206.246.249.227: icmp_seq=2 ttl=255 time=0.475 ms 64 bytes from 206.246.249.227: icmp_seq=3 ttl=255 time=0.473 ms 64 bytes from 206.246.249.227: icmp_seq=4 ttl=255 time=0.475 ms 64 bytes from 206.246.249.227: icmp_seq=5 ttl=255 time=0.479 ms 64 bytes from 206.246.249.227: icmp_seq=6 ttl=255 time=0.476 ms 64 bytes from 206.246.249.227: icmp_seq=7 ttl=255 time=0.476 ms 64 bytes from 206.246.249.227: icmp_seq=8 ttl=255 time=0.474 ms 64 bytes from 206.246.249.227: icmp_seq=9 ttl=255 time=0.476 ms 64 bytes from 206.246.249.227: icmp_seq=10 ttl=255 time=0.474 ms 64 bytes from 206.246.249.227: icmp_seq=11 ttl=255 time=0.529 ms --- 206.246.249.227 ping statistics --- 12 packets transmitted, 12 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.473/0.489/0.567/0.028 ms --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ping.remote" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ping.remote" PING 204.17.220.65 (204.17.220.65): 56 data bytes --- 204.17.220.65 ping statistics --- 5 packets transmitted, 0 packets received, 100% packet loss --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ppp.conf" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ppp.conf" ################################################################ # PPP Configuration File ('/etc/ppp/ppp.conf') # # Default settings; These are always executed always when PPP # is invoked and apply to all system configurations. ################################################################ default: set device /dev/cuaa1 set speed 115200 disable pred1 deny pred1 disable lqr deny lqr set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATE1Q0M0 OK-AT-OK\\dATDT\\T TIMEOUT 40 CONNECT" set redial 3 10 # # ################################################################ # # For interactive mode use this configuration: # # Invoke with `ppp -alias interactive` # ################################################################ #interactive: # set authname Your_User_ID_On_Remote_System # set authkey Your_Password_On_Remote_System # set phone 1-800-123-4567 # set timeout 300 # set openmode active # accept chap # ################################################################ # # For demand-dial (automatic) mode we'll use this configuration: # # Invoke with: 'ppp -auto -alias demand' # ################################################################ demand: set authname ppp:khjones set authkey tlawr! set phone 369-9436 set timeout 300 set openmode active accept chap set ifaddr 127.1.1.1/0 127.2.2.2/0 255.255.255.0 add 0 0 127.2.2.2 ################################################################ # End of /etc/ppp/ppp.conf --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ppp.linkup" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ppp.linkup" #########################################################################= # PPP Link Up File ('/etc/ppp/ppp.linkup') # # This file is checked after PPP establishes a network connection. # # This file is searched in the following order. # # 1) First, the IP address assigned to us is searched and # the associated command(s) are executed. # # 2) If the IP Address is not found, then the label name specified at # PPP startup time is searched and the associated command(s) # are executed. # # 3) If neither of the above are found then commands under the label # 'MYADDR:' are executed. # #########################################################################= # # This section is used for the "demand" configuration in # /etc/ppp/ppp.conf: demand: delete ALL add 0 0 HISADDR # # All other configurations in /etc/ppp/ppp.conf use this: # MYADDR: add 0 0 HISADDR ######################################################################## # End of /etc/ppp/ppp.linkup --------------2AC1D9BD24A660206E8C819F Content-Type: text/plain; charset=us-ascii; name="ppp.out" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ppp.out" Oct 18 22:01:48 firewall ppp[477]:Warning: -alias is deprecated -alias is deprecated Working in auto mode Using interface: tun0 Warning: Add route failed: default already exists Oct 18 22:01:49 firewall ppp[447]: Warning: Add route failed: default already exists --------------2AC1D9BD24A660206E8C819F-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:15: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from titan.ols.com (titan.ols.com [207.112.223.10]) by hub.freebsd.org (Postfix) with ESMTP id 6D2B037B479 for ; Wed, 18 Oct 2000 22:15:06 -0700 (PDT) Received: from spaz (d85.as0.burl.wi.voyager.net [169.207.96.151]) by titan.ols.com (8.9.3/8.9.3) with SMTP id AAA23667 for ; Thu, 19 Oct 2000 00:15:58 -0500 (CDT) (envelope-from adam@wiredrave.com) From: "Adam Fladwood" To: Subject: Jail! Date: Fri, 20 Oct 2000 00:14:06 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey everyone, I'm trying to setup jail on FreeBSD 4.1, however I'm a little confused as to where I'm supposed to grab the Makefile from. I mean, how can I do the: make hierarchy? If there's something that I'm missing let me know, thanks! Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:19:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mirapoint.com (mail.mirapoint.com [208.48.74.2]) by hub.freebsd.org (Postfix) with ESMTP id 2C3D837B4CF for ; Wed, 18 Oct 2000 22:19:46 -0700 (PDT) Received: from mail.mirapoint.com (localhost.mirapoint.com [127.0.0.1]) by mail.mirapoint.com (Mirapoint) with SMTP id AAN11254; Wed, 18 Oct 2000 22:19:45 -0700 (PDT) From: Message-Id: <200010190519.AAN11254@mail.mirapoint.com> Received: from 208.176.140.244 by mail.mirapoint.com with HTTP/1.1; Wed, 18 Oct 2000 22:20:25 -0700 Date: Wed, 18 Oct 2000 22:20:25 -0700 Subject: Re: *** Error code 1, please help! To: freebsd-questions@freebsd.org X-Mailer: Mirapoint Webmail Direct 2.7.1.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks for the quick response before. I did what you said but got the following this time: bt.o: In function `btfetchtransinfo': bt.o(.text+0x26da): undefined reference to `xpt_setup_ccb' bt.o(.text+0x26ea): undefined reference to `xpt_action' bt.o(.text+0x27be): undefined reference to `scsi_calc_syncparam' bt.o(.text+0x27ee): undefined reference to `xpt_async' bt.o: In function `bttimeout': bt.o(.text+0x2865): undefined reference to `xpt_print_path' bt.o(.text+0x288c): undefined reference to `xpt_print_path' bt.o(.text+0x28be): undefined reference to `xpt_freeze_simq' *** Error code 1 Stop in /usr/obj/usr/src/sys/ROSEVILLEGW. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:26:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from teapot06.domain1.bigpond.com (teapot06.domain1.bigpond.com [139.134.5.237]) by hub.freebsd.org (Postfix) with SMTP id D044637B4E5 for ; Wed, 18 Oct 2000 22:26:38 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by teapot06.domain1.bigpond.com (NTMail 3.02.13) with ESMTP id ma923116 for ; Thu, 19 Oct 2000 15:26:18 +1000 Received: from 203.54.250.174 ([203.54.250.174]) by mail1.bigpond.com (Claudes-Funky-MailRouter V2.9c 1/3223284); 19 Oct 2000 15:26:13 Message-ID: <39EE9426.DBBE901A@iname.com> Date: Thu, 19 Oct 2000 16:26:46 +1000 From: Peter Ortner X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Jan Stocker Cc: FreeBSD-Questions@freebsd.org Subject: Re: IrCOMM, IrDA References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG FBSD does not have IRDA support. Jan Stocker wrote: > is there any IrCOMM implementation for my ASUS P3BF onboard IR Com on > FreeBSD? I wanna sync my PalmPilot at home without Docking-Station. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:31:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from teapot06.domain1.bigpond.com (teapot06.domain1.bigpond.com [139.134.5.237]) by hub.freebsd.org (Postfix) with SMTP id 6EE7D37B4C5 for ; Wed, 18 Oct 2000 22:31:38 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by teapot06.domain1.bigpond.com (NTMail 3.02.13) with ESMTP id sa923382 for ; Thu, 19 Oct 2000 15:31:34 +1000 Received: from 203.54.250.174 ([203.54.250.174]) by mail1.bigpond.com (Claudes-Confounding-MailRouter V2.9c 1/3224765); 19 Oct 2000 15:31:29 Message-ID: <39EE9559.15516DBB@iname.com> Date: Thu, 19 Oct 2000 16:31:53 +1000 From: Peter Ortner X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Art Gonzalez Cc: freebsd-questions@freebsd.org Subject: Re: configure US Robotics pnp dialup modem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Depends on what sort of modem it is. If it's a PCI modem or a WinModem, your out of luck. If not, find the struct isa_pnp_id sio_ids in /usr/src/sys/isa/sio.c and add it there- you can get the info from pnpinfo. For more info, search the mailing list archive. Art Gonzalez wrote: > How can I configure a USRobotics pnp modem for internet access on a FreeBSD > 3.3 system? When the system boots up, it finds the modem as I see it listed > as one of its plug and play devices. > > Please advice To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:47:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mypad.MYPAD.COM (friendlyemail.com [206.183.198.145]) by hub.freebsd.org (Postfix) with ESMTP id DC34A37B479 for ; Wed, 18 Oct 2000 22:47:34 -0700 (PDT) Received: from mailman.endymion.com (206.183.198.146) by mypad.MYPAD.COM (NPlex 5.1.048) id 39E622D30009606F for freebsd-questions@freebsd.org; Sun, 15 Oct 2000 01:42:18 -0700 Message-ID: <39E622D30009606F@mypad.MYPAD.COM> (added by postmaster@mypad.MYPAD.COM) To: freebsd-questions@freebsd.org From: frequently@thekeyboard.com Subject: Tape Drives Date: Sun, 15 Oct 100 01:48:35 +0000 X-Mailer: Endymion MailMan Standard Edition v3.0.2 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! Just wondering: what tape drives are known to work well with FreeBSD? I'm thinking of getting a QIC (or just possibly DAT) drive suitable for making backups of a 15Gb file server. I'm more inclined towards SCSI than ATA, but would welcome any comments or observations people might have. Regards, -Andy. _____________________________________________ Free email with cool domains at FriendlyEmail http://www.mypad.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:48:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from teapot06.domain1.bigpond.com (teapot06.domain1.bigpond.com [139.134.5.237]) by hub.freebsd.org (Postfix) with SMTP id 47A0537B479 for ; Wed, 18 Oct 2000 22:48:18 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by teapot06.domain1.bigpond.com (NTMail 3.02.13) with ESMTP id ia924360 for ; Thu, 19 Oct 2000 15:48:14 +1000 Received: from DKBH-T-004-p-250-174.tmns.net.au ([203.54.250.174]) by mail1.bigpond.com (Claudes-Fumigated-MailRouter V2.9c 1/3229748); 19 Oct 2000 15:48:13 Message-ID: <39EE9559.15516DBB@iname.com> Date: Thu, 19 Oct 2000 16:31:53 +1000 From: Peter Ortner X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Art Gonzalez Cc: freebsd-questions@freebsd.org Subject: Re: configure US Robotics pnp dialup modem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Depends on what sort of modem it is. If it's a PCI modem or a WinModem, your out of luck. If not, find the struct isa_pnp_id sio_ids in /usr/src/sys/isa/sio.c and add it there- you can get the info from pnpinfo. For more info, search the mailing list archive. Art Gonzalez wrote: > How can I configure a USRobotics pnp modem for internet access on a FreeBSD > 3.3 system? When the system boots up, it finds the modem as I see it listed > as one of its plug and play devices. > > Please advice To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 22:57:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web1803.mail.yahoo.com (web1803.mail.yahoo.com [128.11.23.46]) by hub.freebsd.org (Postfix) with SMTP id 3144737B479 for ; Wed, 18 Oct 2000 22:57:48 -0700 (PDT) Received: (qmail 15440 invoked by uid 60001); 19 Oct 2000 06:17:52 -0000 Message-ID: <20001019061752.15439.qmail@web1803.mail.yahoo.com> Received: from [24.64.198.119] by web1803.mail.yahoo.com; Thu, 19 Oct 2000 02:17:52 EDT Date: Thu, 19 Oct 2000 02:17:52 -0400 (EDT) From: Jeffrey Yeo Subject: Relationship between named and resolv.conf 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 I am using DHCP to configure my network interfaces (dhclient). When it receives the setup info from the DHCP server, it also updates /etc/resolv.conf with a list of nameservers. I have named configured as a forwarding-only nameserver, and want it to use the DNS hosts listed in resolv.conf. Will named pick this up from the file, or do these servers have to be configured in the named config files? Does named use resolv.conf in any way? I'm running FreeBSD 2.2.8-STABLE, and the version of named that comes with it. I am not subscribed to freebsd-questions, so please be sure to copy any replies to this email address. Thanks in advance, Jeff _______________________________________________________ Do You Yahoo!? Get your free @yahoo.ca address at http://mail.yahoo.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23: 9:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 794A237B4C5 for ; Wed, 18 Oct 2000 23:09:37 -0700 (PDT) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id A3FFAF7D0104; Wed, 18 Oct 2000 23:26:07 -0700 Message-ID: <39EE9079.D9593BF1@wiegand.org> Date: Wed, 18 Oct 2000 23:11:05 -0700 From: Chip X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.0-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: NFS error Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I set up NFS as described in Gregs book The Complete FreeBSD but am getting the following error nfs: can't get net id for host I had to make an addition to my hosts files on the two machines I am setting this up on, do I need to do something to make them reactivated or reread? And, in my rc.conf I have lines for both nfs_server etc and for nfs_client etc, is this okay? or should I have just one or the other specified? -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23:12:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tomts5-srv.bellnexxia.net (tomts5.bellnexxia.net [209.226.175.25]) by hub.freebsd.org (Postfix) with ESMTP id 97BB437B4E5 for ; Wed, 18 Oct 2000 23:12:46 -0700 (PDT) Received: from goldorak ([64.228.225.134]) by tomts5-srv.bellnexxia.net (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001015223421.PERA18376.tomts5-srv.bellnexxia.net@goldorak>; Sun, 15 Oct 2000 18:34:21 -0400 Message-ID: <007401c036f8$10325fe0$86e1e440@lmc.ericsson.se> From: "Martin Gignac" To: , References: Subject: Re: Root-Like telnet account Date: Sun, 15 Oct 2000 18:34:20 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG About your delays before login prompt appearance: are your workstation and FreeBSD system on the same LAN segment, or are they separated by some sort of packet filter? (or do you have ipfw running on the FreeBSD system)? -Martin ----- Original Message ----- From: To: Sent: Sunday, October 15, 2000 19:18 Subject: Root-Like telnet account > Hi, > > I just installed FreeBSD on an older system I have, just to try it out, and would like to be able to telnet into it, and configure things remotely. Is is possible to make it so that I can login from root, or that another account has many of the same pr > velages as root, such as modifying configuration files? > > Also, when I login to through telnet, it connects, and sits for about 1-2 minutes before I get a login dialog. After this, data transfers very quickly. I get the same problem when logging into FTP, the client connects, but then times out. FreeBSD giv > s me some message about "icmp-response bandwidth limit 201/200 ppi." Does this have anything to do with the problem, and what can I do about it? > > Thanks, > > Travis Troyer > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23:35: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web804.mail.yahoo.com (web804.mail.yahoo.com [128.11.23.64]) by hub.freebsd.org (Postfix) with SMTP id 6F71537B4CF for ; Wed, 18 Oct 2000 23:35:06 -0700 (PDT) Received: (qmail 4174 invoked by uid 60001); 19 Oct 2000 06:35:06 -0000 Message-ID: <20001019063506.4173.qmail@web804.mail.yahoo.com> Received: from [192.6.76.74] by web804.mail.yahoo.com; Wed, 18 Oct 2000 23:35:06 PDT Date: Wed, 18 Oct 2000 23:35:06 -0700 (PDT) From: Herbert Pirke Subject: Gnome GMC Device Icons To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Under Linux I was using Windowmaker together with the GMC file manager. My SUSE 7.0 detects automatically all drives and installs the links on the desktop. But FreeBSD didn't do that. I tried to figure out how it works under linux to do the same on BSD, but it didn't work. Does anybody know how to get that Icon on the desktop? Thanks, Herbert __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23:35:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srv1.sj.ablecom.net (srv1.sj.ablecom.net [204.75.32.1]) by hub.freebsd.org (Postfix) with ESMTP id D76A237B4D7 for ; Wed, 18 Oct 2000 23:35:25 -0700 (PDT) Received: from PIII (adsl-63-195-121-108.dsl.snfc21.pacbell.net [63.195.121.108]) by srv1.sj.ablecom.net (8.9.3/8.9.3) with SMTP id XAA60359 for ; Wed, 18 Oct 2000 23:42:26 -0700 (PDT) Reply-To: From: "Julian Steinberg" To: Subject: FreeBSD Router Date: Wed, 18 Oct 2000 23:33:37 -0700 Message-ID: <000301c03996$840c9a70$320aa8c0@PIII> 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 CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a dual nic'd box that's 80% configured for this function on my network. However, I cannot make sense of a clear order from the man pages for NatD of what the steps are to make it work; IE startup scripts and parameters. I have all ip's and interfaces working.... can anyone help? Thx, J in SF To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23:38:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from abc01.home.net (abc01.legalimm.com [209.218.30.53]) by hub.freebsd.org (Postfix) with ESMTP id 34D8D37B479; Wed, 18 Oct 2000 23:38:44 -0700 (PDT) Received: from D3CQV101.annapurna.com ([216.73.136.244]) by abc01.home.net (Post.Office MTA v3.5.3 release 223 ID# 0-65406U500L100S0V35) with ESMTP id net; Wed, 18 Oct 2000 15:57:35 -0400 Message-Id: <5.0.0.25.0.20001018145632.00ac76f8@mail.fiderus.com> X-Sender: rob@mail.nova.org X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Wed, 18 Oct 2000 15:59:29 -0400 To: freebsd-questions@freebsd.org From: Rob Winters Subject: Re: new IBM Thinkpads rejecting FreeBSD Cc: freebsd-mobile@freebsd.org 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 This is an old thread from the archive, but I seem to be dredging up the issue IRL, so I thought I'd pass along some additional information. Someone else wrote: > > The rep at IBM Tech Support claims that IBM is aware of this problem. He > > claimed that FreeBSD was "writing the boot sector somewhere above the usual > > boot sector location". His explanation doesn't make sense, and he was > unable > > to provide me with any specifics... Jonas Bulow wrote: >That doesn't make sense. The only thing I changed to get the drive >working was to change the partition type of the freebsd partition from >165 to 131. Today I will try to use partition magic to create the >partitions. I just killed a ThinkPad A20p by installing 4.1-RELEASE. Apparently IBM allows for boot sector programs of a certain size, i.e. "LILO-sized". After that, the BIOS stores power management information ON THE BOOT SECTOR. If the BIOS finds unpalatable information in that location (presumably whatever FreeBSD puts there), then it gets very confused: - can't boot alternate devices (floppy, CD, or even an UltraBay HD) - can't run the BIOS config - loops on the "ThinkPad" start-up screen Remove the HD, and the system boots; insert the HD and it's very dead. The only way out is to wipe the boot sector, and you can't do it on any of this generation ThinkPad (A20, T20, etc). You can on a 600, or probably some other flavors of older ThinkPad, or any other computer where they aren't stupid enough to store BIOS information on the boot sector. Not having access to a TP600, I'm waiting for a HD swap from IBM. The support guy said that this was just referred to engineering as a problem, so hopefully a future BIOS update will fix it. In the mean time, the FreeBSD loader is not an option for these 'Pads. Their current company line is a very simplistic "Linux supported -- FreeBSD not supported". If LILO gets any bigger, I think they'll have to amend that statement. It's really funny: the IBM support tech started the call smugly enough with "No, this isn't like some *Compaq* where they store BIOS software on the hard drive"... :-) Turns out, it's exactly like that. :-( /// Rob P.S. BTW, this was my second support call. The first guy said flatly "UNIX is not supported on IBM ThinkPads". He stuck to this position even after I pointed out that IBM *ships* ThinkPads with Linux on them. Hung up. Called again. Got a smart guy. Life goes on. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23:59:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mass.osd.bsdi.com (termroom.bsdcon.org [206.55.247.2]) by hub.freebsd.org (Postfix) with ESMTP id CD34037B4CF; Wed, 18 Oct 2000 23:59:27 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.11.0/8.9.3) with ESMTP id e9J72Gh00614; Thu, 19 Oct 2000 00:02:24 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200010190702.e9J72Gh00614@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Rob Winters Cc: freebsd-questions@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: new IBM Thinkpads rejecting FreeBSD In-reply-to: Your message of "Wed, 18 Oct 2000 15:59:29 EDT." <5.0.0.25.0.20001018145632.00ac76f8@mail.fiderus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 19 Oct 2000 00:02:16 -0700 From: Mike Smith Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Jonas Bulow wrote: > >That doesn't make sense. The only thing I changed to get the drive > >working was to change the partition type of the freebsd partition from > >165 to 131. Today I will try to use partition magic to create the > >partitions. > > I just killed a ThinkPad A20p by installing 4.1-RELEASE. Apparently IBM allows > for boot sector programs of a certain size, i.e. "LILO-sized". After that, the > BIOS stores power management information ON THE BOOT SECTOR. If the BIOS finds > unpalatable information in that location (presumably whatever FreeBSD puts > there), > then it gets very confused: This has been discussed by several people in the terminal room here at BSDcon, and the consensus there was that the issue is actually that the TP BIOS doesn't like the 'active' flag being set on any partition. The reporter further claimed that they'd "worked" around it by powering up and then inserting the drive at a later stage. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] V I C T O R Y N O T V E N G E A N C E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 18 23:59:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trltech.demon.co.uk (trltech.demon.co.uk [194.222.7.191]) by hub.freebsd.org (Postfix) with ESMTP id 43CE137B4CF for ; Wed, 18 Oct 2000 23:59:38 -0700 (PDT) Received: from rdls.sw.wan (rdls.sw.wan [10.1.0.2]) by trltech.demon.co.uk (8.9.3/8.9.3) with ESMTP id HAA17458 for ; Thu, 19 Oct 2000 07:59:35 +0100 (BST) (envelope-from rsmith@trltech.co.uk) Received: from trltech.co.uk (localhost [127.0.0.1]) by rdls.sw.wan (8.9.3/8.9.3) with ESMTP id HAA14029 for ; Thu, 19 Oct 2000 07:59:35 +0100 (BST) (envelope-from rsmith@trltech.co.uk) Message-ID: <39EE9BD7.D59A59E6@trltech.co.uk> Date: Thu, 19 Oct 2000 07:59:35 +0100 From: Richard Smith Reply-To: rdls@rdls.net Organization: http://www.trltech.co.uk X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: ppp1: IPv6 not supported Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [Please cc to me all replies] I am using pppd on 4.1-RELEASE for dial-in purposes. Every time pppd is started I get the `ppp1: IPv6 not supported' kernel message. I don't beleive that I have requested IPv6 in any configuration file, but is there any way to suppress this message? Thanks, Richard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:14:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cougar.ihlas.net.tr (smtp.ihlas.net.tr [213.238.128.249]) by hub.freebsd.org (Postfix) with SMTP id BEF6337B4C5 for ; Thu, 19 Oct 2000 00:14:39 -0700 (PDT) Received: (qmail 36402 invoked from network); 18 Oct 2000 05:40:53 -0000 Received: from unknown (HELO maslak) (10.11.1.232) by smtp.ihlas.net.tr with SMTP; 18 Oct 2000 05:40:53 -0000 Message-ID: <001e01c038c5$448eb5d0$e8010b0a@maslak> From: "Yavuz Maslak" To: Subject: a few questions Date: Wed, 18 Oct 2000 08:35:47 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_001B_01C038DE.69BEEFF0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_001B_01C038DE.69BEEFF0 Content-Type: text/plain; charset="windows-1254" Content-Transfer-Encoding: quoted-printable Dear There I have a server which compatible i386 and two processors and it has = 512Mbyte ram=20 =20 I want to install FreeBSD 4.1.stable on it 1 - Does FreeBSD4.1 support two processors and Raid5 (for scsi disks) = namely I would have to compile custom kernel for it? =20 2 - Do you know a FTP server which works well on FreeBSD4.1 ?=20 3 - Which modems does FreeBSD support ? =20 Thanks =20 ------=_NextPart_000_001B_01C038DE.69BEEFF0 Content-Type: text/html; charset="windows-1254" Content-Transfer-Encoding: quoted-printable
Dear There
 
I have a server which compatible i386 and two = processors and=20 it has 512Mbyte ram 
 
I want to install FreeBSD 4.1.stable on = it
 
1 - Does FreeBSD4.1 support two processors and Raid5 = (for scsi=20 disks) namely I would have to compile custom kernel for it?
 
2 - Do you know a FTP server which works well on = FreeBSD4.1=20 ? 
 
3 - Which modems does FreeBSD support ?
 
Thanks  
------=_NextPart_000_001B_01C038DE.69BEEFF0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:30: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from petex1.petex.bielsko.pl (pet.petex.bielsko.pl [195.164.188.19]) by hub.freebsd.org (Postfix) with ESMTP id 236C037B4D7 for ; Thu, 19 Oct 2000 00:30:01 -0700 (PDT) Received: from localhost (erryk@localhost) Date: Thu, 19 Oct 2000 09:29:47 +0200 (CEST) From: Maciek Musial To: freebsd-questions@freebsd.org Subject: changing the source address for packets Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello I've got the following problem: I have freeBSD server (4.0R) connected to CISCO 1700. The router is connected to two nets (let's call'em net1 & net2). I want to change the source address for packets going out from the server, depending of the destination address (default, every packet is going throught net1 , but packets with destination address from net2 are going throuth net2 with changed source address for one from class in net2). The router himself organize routing to bouth classes, so the change of source address will do so called "dynamic routing" I know, there is a command in linux, whitch make this, ip route add via src is something like this in FreeBSD ? Thanks for all sugestions or any informations Maciej Musial To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:31:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 7E8F237B4D7 for ; Thu, 19 Oct 2000 00:31:15 -0700 (PDT) Received: from cello.qnet.com (stork@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id AAA03855; Thu, 19 Oct 2000 00:31:14 -0700 (PDT) Received: from localhost (stork@localhost) by cello.qnet.com (8.9.0/8.9.1) with ESMTP id AAA20688; Thu, 19 Oct 2000 00:30:10 -0700 (PDT) X-Authentication-Warning: cello.qnet.com: stork owned process doing -bs Date: Thu, 19 Oct 2000 00:30:10 -0700 (PDT) From: Heredity Choice To: David Raistrick Cc: Gabriel Ambuehl , Muditha Gunatilake , questions@FreeBSD.ORG Subject: Re: Rackmount Servers 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 One word of caution about rackmounts. Because they are horizontal they do not have the natural ventilation of a tower case. It is doubly important to watch that all the fans are working properly. Paul Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:35:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.caramail.com (mail.caramail.com [195.68.99.70]) by hub.freebsd.org (Postfix) with ESMTP id 4A00737B4D7 for ; Thu, 19 Oct 2000 00:35:46 -0700 (PDT) Received: from caramail.com (www16.caramail.com [195.68.99.36]) by mail.caramail.com (8.8.8/8.8.8) with SMTP id JAA26582 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 09:36:12 +0100 (WET DST) Posted-Date: Thu, 19 Oct 2000 09:36:12 +0100 (WET DST) From: Olivier Regula To: freebsd-questions@freebsd.org Message-ID: <971944578030609@caramail.com> X-Mailer: Caramail - www.caramail.com X-Originating-IP: [193.251.91.123] Mime-Version: 1.0 Subject: Kernel version ? Content-Type: multipart/mixed; boundary="=_NextPart_Caramail_030609971944578_ID" Date: Thu, 19 Oct 2000 00:35:46 -0700 (PDT) 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_Caramail_030609971944578_ID Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Une petite lumi=E8re au plus profond des abysses... une quiche... ______________________________________________________ Bo=EEte aux lettres - Caramail - http://www.caramail.com --=_NextPart_Caramail_030609971944578_ID-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:37:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from neo-dial.neo.rr.com (neo-dial.neo.rr.com [204.210.223.26]) by hub.freebsd.org (Postfix) with ESMTP id 4AE4A37B4C5 for ; Thu, 19 Oct 2000 00:37:10 -0700 (PDT) Received: from Default (c4-1a125.neo.rr.com [24.93.240.125]) by neo-dial.neo.rr.com (8.9.3/8.9.3) with SMTP id GAA28606 for ; Thu, 19 Oct 2000 06:34:20 -0400 (EDT) Message-ID: <000801c0399e$cfa3ac00$7df05d18@neo.rr.com> From: "Jeffery Hahn" To: Subject: Date: Thu, 19 Oct 2000 03:33:01 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C0397D.485FB160" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C0397D.485FB160 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable how do i obtain freebsd??? my email is brinthahn@yahoo.com ------=_NextPart_000_0005_01C0397D.485FB160 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
how do i obtain freebsd??? my email is = brinthahn@yahoo.com
<= /BODY> ------=_NextPart_000_0005_01C0397D.485FB160-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:43:31 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.caramail.com (mail.caramail.com [195.68.99.70]) by hub.freebsd.org (Postfix) with ESMTP id E548137B479 for ; Thu, 19 Oct 2000 00:43:26 -0700 (PDT) Received: from caramail.com (www16.caramail.com [195.68.99.36]) by mail.caramail.com (8.8.8/8.8.8) with SMTP id JAA00370 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 09:43:54 +0100 (WET DST) Posted-Date: Thu, 19 Oct 2000 09:43:54 +0100 (WET DST) From: Olivier Regula To: freebsd-questions@freebsd.org Message-ID: <971945040011123@caramail.com> X-Mailer: Caramail - www.caramail.com X-Originating-IP: [193.251.91.123] Mime-Version: 1.0 Subject: Kernel version ? Content-Type: multipart/mixed; boundary="=_NextPart_Caramail_011123971945040_ID" Date: Thu, 19 Oct 2000 00:43:26 -0700 (PDT) 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_Caramail_011123971945040_ID Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, Help me please !!, my current version of freebsd is the 4.1 released, and i want to install a soft, which's running on the ver 4.0... Is there a great difference between the old kernel and the new one ? Please answer me quicly, it's important... Thanks. ______________________________________________________ Bo=EEte aux lettres - Caramail - http://www.caramail.com --=_NextPart_Caramail_011123971945040_ID-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 0:44:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ps.popnet.kiev.ua (ps.popnet.kiev.ua [193.193.198.35]) by hub.freebsd.org (Postfix) with ESMTP id E76EB37B4D7 for ; Thu, 19 Oct 2000 00:44:48 -0700 (PDT) Received: from 192.168.100.125 (unknown.popnet.kiev.ua [192.168.100.125] (may be forged)) by ps.popnet.kiev.ua (8.10.2/8.9.3) with ESMTP id e9J7ij410914 for ; Thu, 19 Oct 2000 10:44:45 +0300 Date: Thu, 19 Oct 2000 10:44:35 +0300 From: Alexander Rudak X-Mailer: The Bat! (v1.38e) S/N A1D26E39 / Educational Reply-To: Alexander Rudak X-Priority: 3 (Normal) Message-ID: <0447.001019@ro.com.ua> To: freebsd-questions@freebsd.org 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 Hello everybody, Is there any tool to convert Microsoft Excel files to the CSV or HTML? I would appreciate any cooperation or ideas. The puprose is that user can edit data from Excel and than it is immediately posted to the web site. -- Best regards, Alexander mailto:ru@ro.com.ua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1: 4:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.tbv.se (smtp2.tbv.se [193.15.92.33]) by hub.freebsd.org (Postfix) with ESMTP id 6D30337B479 for ; Thu, 19 Oct 2000 01:04:13 -0700 (PDT) Received: (from uucp@localhost) by smtp2.tbv.se (8.9.1/8.9.1) id KAA08196; Thu, 19 Oct 2000 10:01:37 +0200 (CEST) (envelope-from james.wilde@tbv.se) Received: from UNKNOWN(193.15.92.37), claiming to be "tbvhks12" via SMTP by smtp2.tbv.se, id smtpdzP8194; Thu Oct 19 10:01:29 2000 From: "James A Wilde" To: "Jeffery Hahn" , Subject: RE: How do I obtain freebsd [was no subject] Date: Thu, 19 Oct 2000 10:03:32 +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.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please enter a subject line so that we know what your message is about. Please do not send messages in html format as there are many readers who use email clients which have trouble handling this. Use unformatted text with line breaks around 76 characters. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Jeffery Hahn Sent: den 19 oktober 2000 09:33 To: questions@FreeBSD.ORG Subject: > how do i obtain freebsd??? my email is brinthahn@yahoo.com 1. By FTP from ftp://ftp.freebsd.org (see the instructions at http://www.freebsd.org/availability.html) 2. On cd rom from Walnut Creek (see address on http://www.freebsdmall.com mvh/regards James To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1: 8: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 941DB37B4C5 for ; Thu, 19 Oct 2000 01:08:03 -0700 (PDT) Received: from cello.qnet.com (stork@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id BAA11640; Thu, 19 Oct 2000 01:08:02 -0700 (PDT) Received: from localhost (stork@localhost) by cello.qnet.com (8.9.0/8.9.1) with ESMTP id BAA27573; Thu, 19 Oct 2000 01:07:04 -0700 (PDT) X-Authentication-Warning: cello.qnet.com: stork owned process doing -bs Date: Thu, 19 Oct 2000 01:07:04 -0700 (PDT) From: Heredity Choice To: Vladimir Girnetz Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Alpha SERVER Crash 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 My hunch is that one of the RAM modules could be bad. If it has more than the minimum number needed, try removing half of them. If the crash persists, remove the other half and put the first half back in their place. If it still crashes, the problem is elsewhere. Then try removing nonessential hardware. Paul Smith On Wed, 18 Oct 2000, Vladimir Girnetz wrote: > > Hi > Sorry for my bad english > > I have an ALPHA server ( 1000A 5/333) with 64RAM, Qlogic ISP 1020 SCSI > Adapter, Digital 21140A Fast Ethernet (DEC DE500-AA). > > On kernel booting there are only one error: > isp0: invalid NVRAM header (ff,ff,ff,ff). > > Manually I added 2 Intel EtherExpress Pro cards, that seems to work fine. > > FreeBSD is 4.1-RELEASE. > > But this server crashes some times. Maybe one time in 2-3 days, or 2-3 > times per day. > > This is the error I get: > > fatal kernel trap: > trap entry = 0x2 (memory management fault) > a0 = 0x12fe4040168d1b > a1 = 0x1 > a2 = 0x0 > pc = 0xfffffc00004d11a0 > ra = 0xfffffc00004cf660 > curproc = 0 > > panic : trap > > I recompile the kernel and tried more than 3 configurations. > This does not solve the problem. > > Please, help me to solve this. > > Thanks, > Vladimir Girnet > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1: 8:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.tbv.se (smtp2.tbv.se [193.15.92.33]) by hub.freebsd.org (Postfix) with ESMTP id 5697637B4CF for ; Thu, 19 Oct 2000 01:08:45 -0700 (PDT) Received: (from uucp@localhost) by smtp2.tbv.se (8.9.1/8.9.1) id KAA08238; Thu, 19 Oct 2000 10:07:07 +0200 (CEST) (envelope-from james.wilde@tbv.se) Received: from UNKNOWN(193.15.92.37), claiming to be "tbvhks12" via SMTP by smtp2.tbv.se, id smtpdGl8236; Thu Oct 19 10:07:00 2000 From: "James A Wilde" To: "Yavuz Maslak" , Subject: RE: a few questions Date: Thu, 19 Oct 2000 10:09:03 +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.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please do not send messages in html format. There are many readers in here whose email clients can't handle html. Use unformatted text with line breaks at about 76 characters. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Yavuz Maslak Sent: den 18 oktober 2000 07:36 > To: questions@FreeBSD.ORG > Subject: a few questions > Dear There > I have a server which compatible i386 and two processors and it has 512Mbyte ram > I want to install FreeBSD 4.1.stable on it > 1 - Does FreeBSD4.1 support two processors and Raid5 (for scsi disks) namely I would have to > compile custom kernel for it? Yes and yes > 2 - Do you know a FTP server which works well on FreeBSD4.1 ? ftpd > 3 - Which modems does FreeBSD support ? Someone else field this. I think the answer is any except winmodems. mvh/regards James To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1:13:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nrpc-22.netrake.net (403217B2.ptr.dia.nextlink.net [64.50.23.178]) by hub.freebsd.org (Postfix) with ESMTP id 6B4F037B479 for ; Thu, 19 Oct 2000 01:13:33 -0700 (PDT) Received: from netrake.com (localhost.netrake.net [127.0.0.1]) by nrpc-22.netrake.net (8.9.3/8.9.3) with ESMTP id HAA20140; Wed, 18 Oct 2000 07:04:49 -0500 (CDT) (envelope-from jimj@netrake.com) Message-ID: <39ED91E1.CBBADFC1@netrake.com> Date: Wed, 18 Oct 2000 07:04:49 -0500 From: Jim =?iso-8859-1?Q?Judd=90=90?= Organization: Netrake Inc. X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: orpheus@avalon.net Cc: questions@FreeBSD.ORG Subject: Re: LaserJet 4L printing difficulty References: <20001018013228.O1929@lemieux.condolan.asn> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jeffrey Dunitz wrote: > Hello everyone...perhaps someone can help me with this problem. > I have an LJ4L connected locally to the parallel port of a machine > running FreeBSD 4.0. I want to be able to print to this machine > remotely, particularly from Netscape, but also from lpr (text) > on other unix machines on the local net. > > I've successfully used this printer on a RedHat machine, which would > do the right thing, accepting printjobs from unix machines (text and > postscript (netscape) ) as well as NT machines via samba. I want to > try to move printing services onto my freebsd machine and let the red > hat box do...other stuff. > > So anyway-- > > I decided to use magicfilter, because I've heard it's very flexible. > I installed it from the ports collection. I'm using magicfilter-1.2 > and ghostscript-5.50. > > My printcap looks like this: > > lp|local line printer:\ > :sh:\ > :if=/usr/local/libexec/magicfilter/ljet4l-filter:\ > :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs: > > Now, I can print text, both from the local machine and from a remote > unix box, and it works fine--no stair-stepping or other problems. > > However, when I try to print from netscape, one of three things happens: > > 1) nothing happens, and I get a message in lpd-errs about > Oct 18 01:19:01 freebsd lpd[25078]: lp: job could not be printed (cfA730two.mydomain.org) > > 2) I get this nasty error: > /usr/local/libexec/magicfilter/ljet4l-filter: /usr/local/bin/gs -q -dSAFER -dNO > PAUSE -r300 -sDEVICE=ljet4 -sOutputFile=- - failed > Oct 18 00:26:23 freebsd lpd[23956]: restarted > Bus error > > 3) I get garbage output--a postscript header and infinite blank pages. > > Which of these occurs depends on where I have the input filter line placed > in the printcap file--second line, after the sh: directive, or last > line. > > Anyone have any ideas on what I can look at to solve this problem? > This shouldn't be hard... > > -- > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > Jeffrey Dunitz | *** ENRGi.com *** | orpheus@avalon.net > BOFH Emeritus, Avalon Networks | Network Engineer | (651) 686-9974 / > http://www.avalon.net/~orpheus | Net/Sec/Dev/Arch | Eagan, MN _ / > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I just used the ifhp filter in ports to connect to our HP4050 (it is directly connected to the network though). So far it has worked fine. jj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1:19: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web2103.mail.yahoo.com (web2103.mail.yahoo.com [128.11.68.247]) by hub.freebsd.org (Postfix) with SMTP id 4026137B4CF for ; Thu, 19 Oct 2000 01:18:56 -0700 (PDT) Received: (qmail 5411 invoked by uid 60001); 19 Oct 2000 08:18:55 -0000 Message-ID: <20001019081855.5410.qmail@web2103.mail.yahoo.com> Received: from [202.109.0.84] by web2103.mail.yahoo.com; Thu, 19 Oct 2000 01:18:55 PDT Date: Thu, 19 Oct 2000 01:18:55 -0700 (PDT) From: xiyuan qian Subject: NFS client process becomes D ??? To: freebsd-isp@freebsd.org Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have a box using nfs-client. That is mounting another server's export dir to this box. Everything works well except that when the box up for one or two days, the program using the mounted file usually becomes D in "ps -ax" processed showing. And I can not kill the process to re-run this program. Why? What's wrong with my NFS client or what's wrong with this program? Best regaurds! --xiyuan __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1:23:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.tbv.se (smtp2.tbv.se [193.15.92.33]) by hub.freebsd.org (Postfix) with ESMTP id C5D7D37B479 for ; Thu, 19 Oct 2000 01:23:31 -0700 (PDT) Received: (from uucp@localhost) by smtp2.tbv.se (8.9.1/8.9.1) id KAA08349; Thu, 19 Oct 2000 10:23:18 +0200 (CEST) (envelope-from james.wilde@tbv.se) Received: from UNKNOWN(193.15.92.37), claiming to be "tbvhks12" via SMTP by smtp2.tbv.se, id smtpdsT8347; Thu Oct 19 10:23:09 2000 From: "James A Wilde" To: "Alexander Rudak" , Subject: RE: OT Excel to csv and html [was no subject] Date: Thu, 19 Oct 2000 10:25:12 +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.2911.0) In-Reply-To: <0447.001019@ro.com.ua> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please put a subject line in your messages so we know what they are about. > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Alexander Rudak > Sent: den 19 oktober 2000 09:45 > To: freebsd-questions@FreeBSD.ORG > Subject: > > > Hello everybody, > > Is there any tool to convert Microsoft Excel files to the CSV or HTML? I'm not sure a mailing list devoted to the FreeBSD operating system is the best place to ask a question about the usage of a Microsoft application program. However... 'File/Save as' then choose the csv filetype for CSV. You can, I think determine somewhere whether it is a comma which separates the values or a semicolon. 'File/Save as HTML' will give you a first approximation to html coding. > I would appreciate any cooperation or ideas. > The puprose is that user can edit data from Excel and than it is > immediately > posted to the web site. By 'user' I am assuming that you mean the person preparing the Excel spreadsheet and wanting to convert it to csv or html - in other words more of an administrator. If you mean that the people surfing to the page should be able to change it, I can't help you. And note that after saving a csv or html file above you would have to physically move it to the appropriate place on the webserver and do whatever is necessary for your webserver to recognize the change. mvh/regards James To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1:48:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 10C9037B4CF for ; Thu, 19 Oct 2000 01:48:36 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.0/8.11.0) id e9J8lTq04100; Thu, 19 Oct 2000 11:47:30 +0300 (EEST) (envelope-from ru) Date: Thu, 19 Oct 2000 11:47:29 +0300 From: Ruslan Ermilov To: Maciek Musial Cc: freebsd-questions@FreeBSD.ORG Subject: Re: changing the source address for packets Message-ID: <20001019114729.D98924@sunbay.com> Mail-Followup-To: Maciek Musial , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from erryk@petex1.petex.bielsko.pl on Thu, Oct 19, 2000 at 09:29:47AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 09:29:47AM +0200, Maciek Musial wrote: > Hello > > I've got the following problem: > I have freeBSD server (4.0R) connected to CISCO 1700. The router is > connected to two nets (let's call'em net1 & net2). I want to change > the source address for packets going out from the server, depending of > the destination address (default, every packet is going throught net1 > , but packets with destination > address from net2 are going throuth net2 with changed source address > for one from class in net2). The router himself organize routing to > bouth classes, so the change of source address will do so called > "dynamic routing" > > I know, there is a command in linux, whitch make this, > ip route add via src > > is something like this in FreeBSD ? > > Thanks for all sugestions or any informations > Not sure whether the following is what you need, but... 1. Assume the primary interface has two IP addresses assigned to it: # ifconfig rl0 inet rl0: flags=8843 mtu 1500 inet 194.220.45.115 netmask 0xffffffc0 broadcast 194.220.45.127 inet 194.220.45.100 netmask 0xffffffff broadcast 194.220.45.100 2. The routing table looks like this: # netstat -rn -finet Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 194.220.45.65 UGSc 4 0 rl0 127.0.0.1 127.0.0.1 UH 0 10 lo0 194.220.45.64/26 link#1 UC 0 0 rl0 => 194.220.45.65 0:d0:b7:16:9c:c6 UHLW 6 62529 rl0 964 194.220.45.100/32 link#1 UC 0 0 rl0 => 3. Add the static route to the interesting destination: # route add -host 1.2.3.4 194.220.45.65 add host 1.2.3.4: gateway 194.220.45.65 4. Let's look how it is represented internally (non-relevant part of output is trimmed): # route -vn get -host 1.2.3.4 [...] locks: inits: sockaddrs: 1.2.3.4 194.220.45.65 rl0:0.c0.df.3.2d.79 194.220.45.115 5. This means that the packets to 1.2.3.4 will go from the 194.220.45.115: # tcpdump -nt host 1.2.3.4 tcpdump: listening on rl0 194.220.45.115 > 1.2.3.4: icmp: echo request ^C 8 packets received by filter 0 packets dropped by kernel 6. Now we change the IFA address above from 194.220.45.115 to 194.220.45.100: # route change -host 1.2.3.4 -ifa 194.220.45.100 change host 1.2.3.4 7. Now let's look again on the route: # route -vn get -host 1.2.3.4 [...] locks: inits: sockaddrs: 1.2.3.4 194.220.45.65 rl0:0.c0.df.3.2d.79 194.220.45.100 8. We are done, packets to 1.2.3.4 should go from the 194.220.45.100 address. Let's go and prove it with tcpdump(1): # tcpdump -nt host 1.2.3.4 tcpdump: listening on rl0 194.220.45.100 > 1.2.3.4: icmp: echo request ^C 18 packets received by filter 0 packets dropped by kernel -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1:54:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from srv1.sj.ablecom.net (srv1.sj.ablecom.net [204.75.32.1]) by hub.freebsd.org (Postfix) with ESMTP id 690AC37B479 for ; Thu, 19 Oct 2000 01:54:43 -0700 (PDT) Received: from PIII ([204.75.41.139]) by srv1.sj.ablecom.net (8.9.3/8.9.3) with SMTP id CAA63001 for ; Thu, 19 Oct 2000 02:01:47 -0700 (PDT) Reply-To: From: "Julian Steinberg" To: Subject: BSD Router progress made but... Date: Thu, 19 Oct 2000 01:53:30 -0700 Message-ID: <000101c039aa$0e2938e0$320aa8c0@PIII> 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 CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I found and followed documentation and believe I have most everything configured correctly except when I reboot I get the error : "natd: unable to bind divert socket: address already in use" any suggestions? thx, JSS in SF To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 1:57: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (Postfix) with ESMTP id 5264837B4C5 for ; Thu, 19 Oct 2000 01:57:04 -0700 (PDT) Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.9.3/8.9.3) id KAA46812 for questions@freebsd.org; Thu, 19 Oct 2000 10:57:07 +0200 (CEST) (envelope-from kuku) Date: Thu, 19 Oct 2000 10:57:07 +0200 (CEST) From: Christoph Kukulies Message-Id: <200010190857.KAA46812@gilberto.physik.rwth-aachen.de> To: questions@freebsd.org Subject: cons25 behaviour under 4.1 different Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG After installing 4.1 the first thing I noticed was that my screen (vty) gets clobbered when using mutt in color mode and switching between different views in mutt, i.e. list view vs. mail reading. When switching back to a list view after reading an email, portions of that email text mix with the new view, i.e. in areas where only blanks should appear, I suddenly see characters from the previously read text. -- 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 Thu Oct 19 2: 7: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id 273D737B4C5 for ; Thu, 19 Oct 2000 02:07:04 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9J96sv02351; Thu, 19 Oct 2000 12:06:54 +0300 (EEST) Date: Thu, 19 Oct 2000 12:06:54 +0300 From: Giorgos Keramidas To: Matt Rudderham Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: Sendmail & Virtual Domains Message-ID: <20001019120654.A2236@gray.westgate.gr> References: <20001019043411.A10912@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from matt@researcher.com on Wed, Oct 18, 2000 at 11:34:43PM -0300 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 11:34:43PM -0300, Matt Rudderham wrote: > > >1. Add FEATURE(`virtusertable', `-o /etc/mail/virtusertable') to my > > master-config file, and regenerate my sendmail.cf file. > > > > % cd ~/sendmail > > % vi gray.mc > > [ add FEATURE(`virtusertable', `-o /etc/mail/virtusertable') ] > > % make gray.cf > > [ ./Makefile takes care of generating gray.cf from gray.mc ] > > Hmm, this is where the problem starts, I have an installation of sendmail > which was included when I did my initial install of FreeBSD 4.0-RELEASE. In > /etc/mail I have my sendmail.cf, however I have no mc file that I can find. You can either use /usr/src/etc/sendmail/freebsd.mc as a starting example, or browse to my homepage at http://students.ceid.upatras.gr/~keramida/sendmail/ and see a couple of sample .mc files. [...] > > >3. Add "hell.gr" to the /etc/mail/sendmail.cw file. > > I don't have a .cw file? Is there a specific format or algorithm to create > one I should follow? This is the file that contains the hostnames for which mail will be delivered locally. For instance my sendmail.cw after the virtual domain that I added as described in that post, contains: % cat /etc/mail/sendmail.cw localhost gray gray.somewhere.gr hell.gr mail.hell.gr www.hell.gr You should put all the host names and all the aliases that you will receive mail for in this file. Ciao. -- Giorgos Keramidas, For my public pgp2 key: finger -l keramida@diogenis.ceid.upatras.gr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 2: 7:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 1AC2E37B4CF for ; Thu, 19 Oct 2000 02:07:51 -0700 (PDT) Received: from cello.qnet.com (stork@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id CAA22222; Thu, 19 Oct 2000 02:07:50 -0700 (PDT) Received: from localhost (stork@localhost) by cello.qnet.com (8.9.0/8.9.1) with ESMTP id CAA07008; Thu, 19 Oct 2000 02:07:49 -0700 (PDT) X-Authentication-Warning: cello.qnet.com: stork owned process doing -bs Date: Thu, 19 Oct 2000 02:07:49 -0700 (PDT) From: Heredity Choice To: James A Wilde Cc: Yavuz Maslak , questions@FreeBSD.ORG Subject: RE: a few questions In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > 3 - Which modems does FreeBSD support ? > > Someone else field this. I think the answer is any except winmodems. Any ISA modem with jumper settings for the serial port and interrupt works well. Any external serial modem is fine. Probably a USB modem would work well. Can anybody confirm this? Indeed a Winmodem does not work. My ISP advises against a PCI modem and any internal modem without jumper settings. All the current production are 56 K V.90, but if your telephone lines are as bad as mine, a 33.6 modem is just as fast. Paul Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 2:41: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cougar.ihlas.net.tr (smtp.ihlas.net.tr [213.238.128.249]) by hub.freebsd.org (Postfix) with SMTP id 9B21137B4E5 for ; Thu, 19 Oct 2000 02:40:54 -0700 (PDT) Received: (qmail 96247 invoked from network); 17 Oct 2000 08:47:58 -0000 Received: from unknown (HELO maslak) (10.11.1.232) by smtp.ihlas.net.tr with SMTP; 17 Oct 2000 08:47:58 -0000 Message-ID: <002801c03816$3f37c770$e8010b0a@maslak> From: "Yavuz Maslak" To: Subject: a few questions Date: Tue, 17 Oct 2000 11:42:56 +0300 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0025_01C0382F.6444C220" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0025_01C0382F.6444C220 Content-Type: text/plain; charset="windows-1254" Content-Transfer-Encoding: quoted-printable Dear There I have a server which compatible i386 and two processors and it has = 512Mbyte ram=20 I want to install FreeBSD 4.1.stable on it 1 - Does FreeBSD4.1 support two processors and Raid5 (for scsi disks) = namely I would have to compile custom kernel for it? 2 - Do you know a FTP server which works well on FreeBSD4.1 ?=20 3 - Which modems does FreeBSD support ? Thanks =20 ------=_NextPart_000_0025_01C0382F.6444C220 Content-Type: text/html; charset="windows-1254" Content-Transfer-Encoding: quoted-printable
Dear There
 
I have a server which compatible i386 and two = processors and=20 it has 512Mbyte ram 
 
I want to install FreeBSD 4.1.stable on = it
 
1 - Does FreeBSD4.1 support two processors and Raid5 = (for scsi=20 disks) namely I would have to compile custom kernel for it?
 
2 - Do you know a FTP server which works well on = FreeBSD4.1=20 ? 
 
3 - Which modems does FreeBSD support ?
 
Thanks  
------=_NextPart_000_0025_01C0382F.6444C220-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 2:46:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 6131337B479 for ; Thu, 19 Oct 2000 02:46:17 -0700 (PDT) Received: from cello.qnet.com (stork@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id CAA28829; Thu, 19 Oct 2000 02:46:16 -0700 (PDT) Received: from localhost (stork@localhost) by cello.qnet.com (8.9.0/8.9.1) with ESMTP id CAA12244; Thu, 19 Oct 2000 02:46:15 -0700 (PDT) X-Authentication-Warning: cello.qnet.com: stork owned process doing -bs Date: Thu, 19 Oct 2000 02:46:15 -0700 (PDT) From: Heredity Choice To: "Kennie H. Jones" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Problems with pppd In-Reply-To: <39EE8106.85659CA1@w3rite.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have the same problems as Kennie with FreeBSD 4.1 Intel. I cannot get User PPP to work, and KDE seems confused whether it is trying to run User PPP or Kernel PPP. I am trying to configure User PPP for a dialup, no local network, and dynamic IP addresses. I am bewildered by the considerable differences between the suggested configurations in "The Complete FreeBSD" and in "FreeBSD Handbook." The former was written for 3.x; is it inappropriate for 4.x? Is the latter up to date for 4.x? I am writing this using: cu -l /dev/cuaa1 atdtTELEPHONE_NUMBER and my ISP's Pine. Primitive but it works. Paul Smith On Thu, 19 Oct 2000, Kennie H. Jones wrote: > I am trying to use the kernel version of PPP (program, pppd) to connect > to my ISP by a new installation of FreeBSD. I have followed exactly the > instructions in "The Complete FreeBSD" book and in the URL, > http://www.freebsd.org/handbook/ppp.html, using the instructions for > chat instead of kermit. Thes two methods are somewhat different in their > recommended parameters and methods. I have also tried many (if not all) > combinations of parameters (putting in all and then commenting out as I > try to connect). > > None of the combinations seem to work. The result is that I appear to > connect: I hear the modem dial and typical noise, the noise stops, and > the system says it connected displaying both local and remote IP > addresses that have been assigned. But, when I try to ping an address at > my ISP, it hangs and never connects. I have found that if I ping the > local connection address, it works. But if I ping the remote connection > address, it hangs as well. > > In the file, rc.conf, I have set the parmeter, gateway_enable="NO", to > keep things as simple as possible. My eventual goal is for this computer > to be a gateway for my local network to the ISP. My local network is > working OK. > > So, my questions are: > > 1) How do I get this system to be able to communicate with the Internet > through my ISP (i.e. what is wrong with my currnet configuration that is > not allowing me to do this?) > > 2) Once this connection is working for this computer, how do I make it > serve as a gateway for my local network. > > 3) If I uncommment the line, "demand", in the file, "options", it > displays an error, (see attached file, "pppd-demand.out", that says I > must set a static IP address for the ISP. My ISP uses dynamic addresses > on both the local and remote end, and apparently the addresses are not > even from the same subnet with each connection. How so I use pppd to > dial on demand with dynamic addresses? > > The following files are attached (all but rc.conf in /etc/ppp): > > options - option file for pppd > dial.chat - input for the chat > pap.secrets - username and password for pap. (changed to "" > and > "". Found that the options file (login > method) > would not work without this file, so evidently my > ISP uses pap. > /etc/rc.conf > connect-errors - log file from pppd > pppd.out - output from execution of pppd > pppd-demand.out - output from execution of pppd with demand option in > "options" > ifconfig.before - output of ifconfig before execution of pppd > ifconfig.after - output of "ifconfig -a" after execution of pppd > netstat.before - output of "netstat -rn" before execution of pppd > netstat.after - output of "netstat -rn" after execution of pppd > ping.local - output of ping to local address assigned by ISP > ping.remote - output of ping to remote address assigned by ISP > > I also tried User ppp as describe in both the book and the www.freebsd > handbook trying different options. I executed it with the command: > ppp -auto -alias demand > which should start ppp in the auto mode whcih should not connect until I > execute a command that needs the network. However, when I execute ping, > they hang as with pppd and the modem never dials. > > The following file are attached relative to User ppp: > > ppp.conf > ppp.linkup > ppp.out - output from execution of ppp > > Thanks in advance for your time and experience. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 2:46:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id 1CD2B37B4E5 for ; Thu, 19 Oct 2000 02:46:46 -0700 (PDT) Received: (qmail 17203 invoked from network); 19 Oct 2000 09:46:43 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 19 Oct 2000 09:46:43 -0000 Received: (qmail 3432 invoked from network); 19 Oct 2000 09:46:33 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 19 Oct 2000 09:46:33 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBLZDM>; Thu, 19 Oct 2000 10:45:33 +0100 Message-ID: From: Daniel Bye To: 'Alexander Rudak' , freebsd-questions@freebsd.org Subject: RE: *.xls to .csv [WAS: NO TITLE] Date: Thu, 19 Oct 2000 10:40:12 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG MS Excel itself is capable of doing this. Choose Save As..., and select the desired file type. Not sure how this fits in with FreeBSD-questions, mind you :o) Dan > -----Original Message----- > From: Alexander Rudak [mailto:ru@ro.com.ua] > Sent: Thursday, October 19, 2000 8:45 AM > To: freebsd-questions@freebsd.org > Subject: > > > Hello everybody, > > Is there any tool to convert Microsoft Excel files to the CSV or HTML? > I would appreciate any cooperation or ideas. > The puprose is that user can edit data from Excel and than it > is immediately > posted to the web site. > > -- > Best regards, > Alexander mailto:ru@ro.com.ua > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 2:54: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id C1AD937B4CF; Thu, 19 Oct 2000 02:54:04 -0700 (PDT) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.1/8.11.1) with ESMTP id e9J9tkv11683; Thu, 19 Oct 2000 11:55:47 +0200 (CEST) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Thu, 19 Oct 2000 11:55:46 +0200 (CEST) From: "O. Hartmann" To: freebsd-questions@freebsd.org Cc: freebsd-emulators@freebsd.org Subject: Portland Group (PGI) F90 Compiler 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 Sirs. A couple of days ago I did some trials on Portland Group Compilers to run on a FreeBSD 4.1.1 box under Linux emulation. While Lahey/Fujitsu and NAGWare Fortran 95 Compilers compiled and produced a working binary, Portland Group F90 did not. It compiled the sources well, but the image it created dumped immediately a core after calling it. Now I tried the following scenario. I installed the stuff on a Linux box and compiled the same sources again. The I tested the image and saw its running well under Linux. Then I put this image onto our FreeBSD box and started it - and it worked well! So, now I'm a little bit confused. Why is the emulator not able to let the PGI compiler compile this sources into a working image? Well, prior to this experience I thought the PGI is not capable to run on FreeBSD, but now I'm still in hope to get a working PGI installation. Is this phenomenon typicall for misconfigurations? Another questions regards to Linux vs. FreeBSD and using Fortran compilers. As we can see, many solutions for Fortran 90,95 and HPF are offered for Linux, but really less for FreeBSD (only NAGWare, but this type of compiler is not of our focus). Makes it any kind of sense to use a compiler under Linux emulation or would it be a better task to swap over from FBSD to Linux? This is a really seroius question! Many people of my institute work on Linux but I still use FreeBSD for our backbone servers. Now we want to built up some kind of number cruncher for some applications in environtmental modelling and we need fast Fortran code. Does anybody has any kind of idea and suggestions? I would appreciate anything, any hint, tip, aspect of discussion etc. Thanks in advance, Oliver - MfG O. Hartmann ------------------------------------------------------------------- ohartman@ipamzlx.physik.uni-mainz.de Klimadatenserver-Abteilung des IPA IT Netz- und Systembetreuung Johannes Gutenberg-Universitaet Mainz Becherweg 21 D-55099 Mainz BRD/Germany Tel: +496131/3924662 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 4:35:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thelab.hub.org (CDR8-44.accesscable.net [24.138.8.44]) by hub.freebsd.org (Postfix) with ESMTP id B631637B4C5 for ; Thu, 19 Oct 2000 04:35:32 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.1) with ESMTP id e9JBXtE12507; Thu, 19 Oct 2000 08:33:55 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Thu, 19 Oct 2000 08:33:55 -0300 (ADT) From: The Hermit Hacker To: Adam Fladwood Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Jail! 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 from the man page: D=/here/is/the/jail cd /usr/src make hierarchy DESTDIR=$D On Fri, 20 Oct 2000, Adam Fladwood wrote: > Hey everyone, > > I'm trying to setup jail on FreeBSD 4.1, however I'm a little confused as to > where I'm supposed to grab the Makefile from. I mean, how can I do the: make > hierarchy? If there's something that I'm missing let me know, thanks! > > Adam > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 5: 0:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gw1.mncp.net (mncp.comint.net [213.154.195.90]) by hub.freebsd.org (Postfix) with ESMTP id A2CC737B479 for ; Thu, 19 Oct 2000 05:00:39 -0700 (PDT) Received: from mncp.net (ws2016.mncp.net [172.16.2.16]) by gw1.mncp.net (8.10.0/8.10.0) with ESMTP id e9JC0Gs54724 for ; Thu, 19 Oct 2000 15:00:20 +0300 (EEST) Message-ID: <39EEE250.F880BB78@mncp.net> Date: Thu, 19 Oct 2000 15:00:16 +0300 From: Korzhanyuk Vitaliy Organization: JSB Municipal X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@FreeBSD.ORG Subject: Help with CD_RW please Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. I have FreeBSD 4.1.1-STABLE, and when i do >burncd -e -s 4 -f /dev/acd0c data ~korzh/live-evaluation-i386-70.iso fixate >next writeable LBA 0 >writing from file /home/korzh/live-evaluation-i386-70.iso size 658434 KB >written this track 658434 KB (100%) total 658434 KB >fixating CD, please wait.. >burncd: ioctl(CDRIOCCLOSEDISK): Input/output error ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ :( and when i mount this my machines reboot :(((((((((((( Thank you. -- Vitaliy Korzhanyuk korzh@mncp.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 5: 7:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from x400gate-01.ic.gc.ca (x400gate-01.ic.gc.ca [192.197.186.121]) by hub.freebsd.org (Postfix) with ESMTP id 35C6937B4CF for ; Thu, 19 Oct 2000 05:07:54 -0700 (PDT) Received: by x400gate-01.ic.gc.ca with Internet Mail Service (5.5.2650.21) id ; Thu, 19 Oct 2000 08:02:28 -0400 Message-ID: <065DE87AF392D411A3D800204840A0152E7F63@cbbc805.cb.ic.gc.ca> From: Dinel.Joel@ic.gc.ca To: freebsd-questions@freebsd.org Subject: Installing 4.1.1 on slave IDE disk Date: Thu, 19 Oct 2000 08:08:25 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG For some odd reason, posts made from home never make it to the list, so here goes again from work : I've got the following setup : Primary IDE master : 13 GB HD Primary IDE slave : 10 GB HD Secondary IDE master : CDROM Secondary IDE slave : CDRW The primary master is entirely FAT32. I want to dedicate the slave to FreeBSD. What do I do during the install to have BSD installed entirely on the slave, but have BootEasy write itself to the MBR of the master disk? I installed yesterday, with Booteasy (I am supposing it wrote itself to the MBR of my slave disk), and I never see the prompt when I boot. Is there any way of doing this without touching the master disk ? Thanks ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 5: 9:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from sentry.granch.com (sentry.granch.com [212.109.197.55]) by hub.freebsd.org (Postfix) with ESMTP id C09C637B4CF for ; Thu, 19 Oct 2000 05:09:38 -0700 (PDT) Received: from sentry.granch.ru (IDENT:shelton@localhost [127.0.0.1]) by sentry.granch.com (8.9.3/8.9.3) with ESMTP id TAA35247; Thu, 19 Oct 2000 19:07:00 +0700 (NOVST) Message-ID: <39EEE3E4.5078CAEF@sentry.granch.ru> Date: Thu, 19 Oct 2000 19:07:00 +0700 From: "Rashid N. Achilov" Reply-To: achilov@granch.ru Organization: Granch Ltd. X-Mailer: Mozilla 4.74 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: "Cesar Estrada [INF]" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DHCP References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Cesar Estrada [INF]" wrote: > > Hi, I want to configure my server with DHCP, Could you help me, please. > /usr/ports/net/isc-dhcp2 or /usr/ports/net/isc-dhcp3. Download and read manuals first time. When you do this, I can help you to create your own dhcpd.conf file. -- With Best Regards. Rashid N. Achilov (RNA1-RIPE), Brainbench ID: 28514 Granch Ltd. system administrator, e-mail: achilov@granch.ru tel/fax (383-2) 24-2363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 5:38:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.golsyd.net.au (ftp.golsyd.net.au [203.57.20.1]) by hub.freebsd.org (Postfix) with ESMTP id A73B137B4C5 for ; Thu, 19 Oct 2000 05:38:49 -0700 (PDT) Received: from [203.164.12.28] by www.quake.com.au (NTMail 4.30.0012/AH9370.63.d1acf55c) with ESMTP id bjpraaaa for ; Thu, 19 Oct 2000 23:43:04 +1000 Message-ID: <39EEEB69.CDB07B92@quake.com.au> Date: Thu, 19 Oct 2000 22:39:05 +1000 From: Kal Torak X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Nick Slager Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards References: <39EC4CC4.BB576E22@quake.com.au> <20001018095911.D91516@albury.net.au> <39ED04E5.A8F0DEE@quake.com.au> <20001018142717.A25002@albury.net.au> <39ED9701.6D3B244@quake.com.au> <20001019101314.C25138@albury.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nick Slager wrote: > > Thus spake Kal Torak (kaltorak@quake.com.au): > > > Nick Slager wrote: > > > > > > Thus spake Kal Torak (kaltorak@quake.com.au): > > > > > > > Ok, well I am using 4.0 on an IBM Thinkpad I series 2611, > > > > the pc-card is a D-Link DFE-650... But thats not the prob, > > > > I havent actually got to trying to use the pc-card... > > > > > > > > This is what I have tried, I installed from the cd, making > > > > sure to put two pc-card slots in on the kernel config thing, > > > > then from the console started pccardd, it said there was no > > > > config file, so I copied pccard.conf.sample to the right > > > > place so there was one... Then when starting pccardd is > > > > said something like no pc-card slots found... > > > > > > The GENERIC kernel has the pc card devices. > > > > > > Are you sure your PC-Card controller is supported by FreeBSD? > > > What's the brand/model of your controller? Is it able to function > > > in non-cardbus mode? Do your BIOS settings match the software > > > configuration? > > > > Well, I have no idea what the controller is... nothing in the > > documentation says what its meant to be... > > Looking at the windows driver, I think its called a: > > 02Micro 026832/6833 Cardbuss > > I had a quick look through the IBM site, and I think the PCMCIA > controller in your machine is cardbus only. Anyone else more familiar > with this notebook care to comment? > > Nick Yeah, according to IBM its a O2Micro OZ6832/6833 CardBus Controller... It dose have a USB port... Is USB ethernet very developed yet? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6: 7:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nrpc-22.netrake.net (403217B2.ptr.dia.nextlink.net [64.50.23.178]) by hub.freebsd.org (Postfix) with ESMTP id 8787A37B4CF for ; Thu, 19 Oct 2000 06:07:21 -0700 (PDT) Received: from netrake.com (localhost.netrake.net [127.0.0.1]) by nrpc-22.netrake.net (8.9.3/8.9.3) with ESMTP id IAA38480; Thu, 19 Oct 2000 08:05:38 -0500 (CDT) (envelope-from jimj@netrake.com) Message-ID: <39EEF1A2.7BCA0BFC@netrake.com> Date: Thu, 19 Oct 2000 08:05:38 -0500 From: Jim =?iso-8859-1?Q?Judd=90=90?= Organization: Netrake Inc. X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Dinel.Joel@ic.gc.ca Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Installing 4.1.1 on slave IDE disk References: <065DE87AF392D411A3D800204840A0152E7F63@cbbc805.cb.ic.gc.ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dinel.Joel@ic.gc.ca wrote: > For some odd reason, posts made from home never make it to the list, so here > goes again from work : > > I've got the following setup : > > Primary IDE master : 13 GB HD > Primary IDE slave : 10 GB HD > > Secondary IDE master : CDROM > Secondary IDE slave : CDRW > > The primary master is entirely FAT32. I want to dedicate the slave to > FreeBSD. What do I do during the install to have BSD installed entirely on > the slave, but have BootEasy write itself to the MBR of the master disk? I > installed yesterday, with Booteasy (I am supposing it wrote itself to the > MBR of my slave disk), and I never see the prompt when I boot. > > Is there any way of doing this without touching the master disk ? > > Thanks ! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message What do you have installed on the primary? Win98, WinNT, W2k... jj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:37:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from x400gate-01.ic.gc.ca (x400gate-01.ic.gc.ca [192.197.186.121]) by hub.freebsd.org (Postfix) with ESMTP id 86C2437B4C5 for ; Thu, 19 Oct 2000 06:37:09 -0700 (PDT) Received: by x400gate-01.ic.gc.ca with Internet Mail Service (5.5.2650.21) id ; Thu, 19 Oct 2000 09:31:43 -0400 Message-ID: <065DE87AF392D411A3D800204840A0152E7F65@cbbc805.cb.ic.gc.ca> From: Dinel.Joel@ic.gc.ca To: jimj@netrake.com Cc: freebsd-questions@freebsd.org Subject: RE: Installing 4.1.1 on slave IDE disk Date: Thu, 19 Oct 2000 09:37:48 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It's the wife's Windows Millennium. The master is split up in two 6.5GB partitions. I can probably resize the 2nd parition to free up some = space for a small /boot partition for BSD *before* the 1024th cylinder. What do you think? Ideally, I'd want to leave the master disk = untouched. I tried BootMagic (from the PQMagic suite) and it doesn't seem to be able = to boot anything else than something on the master drive. Also, when I did set up FreeBSD, I did not mark the / partition on my = slave disk as bootable. As far as I know, you can't boot off a slave disk. Am I wrong? Thanks again! Jo=EBl Dinel=20 Competition Bureau=20 Tel. (819) 997-2514=20 Fax (819) 953-9010=20 dinel.joel@ic.gc.ca=20 -----Original Message----- From: Jim Judd=90=90 [mailto:jimj@netrake.com] Sent: October 19, 2000 9:06 AM To: Dinel, Jo=EBl: #CB - BC Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Installing 4.1.1 on slave IDE disk Dinel.Joel@ic.gc.ca wrote: > For some odd reason, posts made from home never make it to the list, = so here > goes again from work : > > I've got the following setup : > > Primary IDE master : 13 GB HD > Primary IDE slave : 10 GB HD > > Secondary IDE master : CDROM > Secondary IDE slave : CDRW > > The primary master is entirely FAT32. I want to dedicate the slave to > FreeBSD. What do I do during the install to have BSD installed = entirely on > the slave, but have BootEasy write itself to the MBR of the master = disk? I > installed yesterday, with Booteasy (I am supposing it wrote itself to = the > MBR of my slave disk), and I never see the prompt when I boot. > > Is there any way of doing this without touching the master disk ? > > Thanks ! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message What do you have installed on the primary? Win98, WinNT, W2k... jj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:40:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smx.pair.com (smx.pair.com [209.68.1.56]) by hub.freebsd.org (Postfix) with SMTP id A5F6537B4D7 for ; Thu, 19 Oct 2000 06:40:30 -0700 (PDT) Received: (qmail 23831 invoked by uid 1000); 19 Oct 2000 13:40:28 -0000 Message-ID: <20001019134028.23830.qmail@smx.pair.com> From: sigma@pair.com Subject: aout under 4.1? To: freebsd-questions@FreeBSD.ORG Date: Thu, 19 Oct 2000 09:40:27 -0400 (EDT) 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 Has anyone successfully gotten aout binaries to run under 4.1-STABLE? None of the /usr/libexec/ld.so files I've tried seem to work. I've tried ld.so from 2.2.8, ld.so from the compat22 package, and ld.so built from /usr/src/libexec/rtld-aout, after much coaxing to compile it. All of them dump core when running a "hello world" aout program. Surely someone has built a suitable ld.so to support legacy aout binaries? I know that 3.x was the transitional period for aout->elf, but 3.x seems like a more-or-less dead track lately, and we're jumping from 2.2 to 4.1 now. There will definitely be some binaries that need to keep running, possibly some which don't even have source. These are customer binaries I'm referring to. Any help on this point would be welcomed. Kevin Martin sigma@pair.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:43:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from flatt.cs.colostate.edu (flatt.cs.colostate.edu [129.82.45.245]) by hub.freebsd.org (Postfix) with ESMTP id 86B1C37B4C5 for ; Thu, 19 Oct 2000 06:43:32 -0700 (PDT) Received: from localhost (denton@localhost) by flatt.cs.colostate.edu (8.9.3/8.9.3) with ESMTP id HAA26338; Thu, 19 Oct 2000 07:43:25 -0600 (MDT) Date: Thu, 19 Oct 2000 07:43:25 -0600 (MDT) From: Jason Denton To: Alfred Perlstein Cc: questions@FreeBSD.ORG Subject: Re: UMASS storage device In-Reply-To: <20001018104923.L272@fw.wintelcom.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 - I'm trying to get a USB compact flash card reader working > Try a 'camcontrol rescan' you need cam compiled into your kernel for > this. Thanks for the quick reply - it got me looking at some more man pages and I think I'm getting closer. But what I really need is detailed, step by step instructions. If I could get them I will write up the howto. Exactly what devices do I need in the kernel? da and scbus... is pass required too? Why does the usb stuff require the scsi drivers and how does not having a scsi adapter card installed (or compilied into the kernel) affect this? Any other kernel devices required? What nodes do I need to make in /dev? /dev/da0c says its not configured, there does not appear to be a /dev/umass0 and MAKEDEV does not know how to do it. How do I setup /dev? Is camcontrol required to rescan the bus everytime I change cards? Everytime the system boots? Or just everytime I plug the reader into the usb port? When the camcontrol command wants a bus, what do I give it? What device node does this thing show up on? Jason Denton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:45:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id 302AC37B4C5 for ; Thu, 19 Oct 2000 06:45:21 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id IAA16237; Thu, 19 Oct 2000 08:46:41 -0500 Message-Id: <200010191346.IAA16237@smtp.intop.net> From: "Charlie Schloemer" To: freebsd-questions@FreeBSD.ORG, Alexander Rudak Date: Thu, 19 Oct 2000 08:52:38 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Excel -> HTML/CSV In-reply-to: <0447.001019@ro.com.ua> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 19 Oct 00, at 10:44, Alexander Rudak wrote: > Hello everybody, > > Is there any tool to convert Microsoft Excel files to the CSV or HTML? > I would appreciate any cooperation or ideas. > The puprose is that user can edit data from Excel and than it is immediately > posted to the web site. > > -- > Best regards, > Alexander mailto:ru@ro.com.ua Hmm... sounds like www.microsoft.com might give you better results. Assuming you want to do this with an open-source product, Sun's StarOffice will convert between the two, though I don't know how much trouble you'd have automating it. StarOffice is compatible with lots of vendors' storage formats, and runs on plenty of big platforms, including Windows and FreeBSD. If licensing concerns you, I believe you'll have to get StarOffice version 6 to be covered by GPL, but do your own homework on this if the license is an issue. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:45:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id 77A7C37B4CF for ; Thu, 19 Oct 2000 06:45:22 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id IAA16240; Thu, 19 Oct 2000 08:46:42 -0500 Message-Id: <200010191346.IAA16240@smtp.intop.net> From: "Charlie Schloemer" To: Michael Joyner , freebsd-questions@FreeBSD.ORG Date: Thu, 19 Oct 2000 08:52:38 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: UNIX - AS/400 In-reply-to: <39ED0EDF.7ABC87E3@rv1.dynip.com> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 17 Oct 00, at 22:45, Michael Joyner wrote: > x3270 (in the ports dir) > to use the function keys F13->F24 use [ALT]-[F1] ... [ALT]-[F12] > if your screen manager whacks your ALT keys try [CTRL]+[ALT]+[Fnn] > (KDE whacks ALT + F1->Fn, where n=your desktop count) > > > with these flags: > Exec=/usr/X11R6/bin/x3270 -model 3279-2-E -tn IBM-3279-3-E AS400HOSTNAME > > > Charlie Schloemer wrote: > > > > On 17 Oct 00, at 11:52, Joe.Warner@smed.com wrote: > > > > > Hi, > > > > > > Does anyone know of a FreeBSD or UNIX client application that > > > will provide TN5250 connectivity to the IBM AS/400 (now iSeries)? > > > > > > Better yet, an application that would provide a session through > > > a web browser? Hmm... I've not installed the TN3270 client, as that would be for a 6000 or 390, I think. :-) I've had no luck with using Alt or Ctrl-Alt as the meta key with TN5250, but I *have* had luck using plain ol' Escape-[1..=] for regular function keys and Escape-Shift-[!..+] for F13..F24. This is entirely like just using a regular telnet client to talk to the AS/400, but without the cozy DSPVTMAP when you decide you want to change your keymap. Still, it's 5250 and much more responsive than telnet (plus, purty colours). :-) -Charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:46:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id A82D437B4D7 for ; Thu, 19 Oct 2000 06:46:17 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2OJL000.3WM for ; Thu, 19 Oct 2000 08:46:12 -0500 From: Jeremy Vandenhouten To: freebsd-questions@freebsd.org Message-ID: <4379e5434470.4344704379e5@marquette.edu> Date: Thu, 19 Oct 2000 08:46:12 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: configure US Robotics pnp dialup modem X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a bit troubling. With the ISA slot fast becoming a rare commodity, using ISA modems is rapidly becoming not feasible. Are there currently any projects to allow for the use of PCI modems such as a USR that is hardware based? ----- Original Message ----- From: Peter Ortner Date: Thursday, October 19, 2000 1:31 am Subject: Re: configure US Robotics pnp dialup modem > Depends on what sort of modem it is. If it's a PCI modem or a > WinModem, your out > of luck. If not, find the struct isa_pnp_id sio_ids in > /usr/src/sys/isa/sio.cand add it there- you can get the info from > pnpinfo. > For more info, search the mailing list archive. > > Art Gonzalez wrote: > > > How can I configure a USRobotics pnp modem for internet access > on a FreeBSD > > 3.3 system? When the system boots up, it finds the modem as I > see it listed > > as one of its plug and play devices. > > > > Please advice > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 6:50:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id 3BEE637B479 for ; Thu, 19 Oct 2000 06:50:09 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id IAA16319; Thu, 19 Oct 2000 08:51:30 -0500 Message-Id: <200010191351.IAA16319@smtp.intop.net> From: "Charlie Schloemer" To: , "Jeffery Hahn" Date: Thu, 19 Oct 2000 08:57:27 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: How to obtain FreeBSD In-reply-to: <000801c0399e$cfa3ac00$7df05d18@neo.rr.com> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 19 Oct 00, at 3:33, Jeffery Hahn wrote: > how do i obtain freebsd??? my email is brinthahn@yahoo.com > In short, you can either download it or buy a CD set. I'd recommend the CD set if you're bandwidthly-challenged, and also because it helps keep the project going, but if you want to flex your bandwidth, the following URL will tell you how to proceed: http://www.freebsd.org/availability.html -charlie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7: 2:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dolanmedia.com (mail.nathanslegalmarkets.com [209.98.197.189]) by hub.freebsd.org (Postfix) with ESMTP id 84ED137B4CF for ; Thu, 19 Oct 2000 07:02:28 -0700 (PDT) Received: from banko.com (10.1.1.135) by mail.dolanmedia.com (Worldmail 1.3.167) for freebsd-questions@freebsd.org; 19 Oct 2000 09:01:45 -0500 Message-ID: <39EEFEF3.8C0373D0@banko.com> Date: Thu, 19 Oct 2000 09:02:27 -0500 From: Greg Panula Organization: Banko, Inc X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Root-Like telnet account References: <007401c036f8$10325fe0$86e1e440@lmc.ericsson.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does the workstation you are telneting from have a resolvable IP address, i.e. a reverse look-up? Is the box you are telneting into able to resolve your workstation's name? Odds are inetd/tcp-wrappers are attempting to resolve the ip address of your workstation before giving you a login prompt, hence the long wait. You might want to check /etc/resolv.conf and make sure it points to valid and reachable dns. For the root thing, create yourself an id and add that id to the 'wheel' group. Then you can use the'su' command to switch to superuser status. Martin Gignac wrote: > > About your delays before login prompt appearance: are your workstation and > FreeBSD system on the same LAN segment, or are they separated by some sort > of packet filter? (or do you have ipfw running on the FreeBSD system)? > > -Martin > > ----- Original Message ----- > From: > To: > Sent: Sunday, October 15, 2000 19:18 > Subject: Root-Like telnet account > > > Hi, > > > > I just installed FreeBSD on an older system I have, just to try it out, > and would like to be able to telnet into it, and configure things remotely. > Is is possible to make it so that I can login from root, or that another > account has many of the same pr > > velages as root, such as modifying configuration files? > > > > Also, when I login to through telnet, it connects, and sits for about 1-2 > minutes before I get a login dialog. After this, data transfers very > quickly. I get the same problem when logging into FTP, the client connects, > but then times out. FreeBSD giv > > s me some message about "icmp-response bandwidth limit 201/200 ppi." Does > this have anything to do with the problem, and what can I do about it? > > > > Thanks, > > > > Travis Troyer > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7: 3:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id 2B6AD37B4C5 for ; Thu, 19 Oct 2000 07:03:13 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.179]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3589700; Thu, 19 Oct 2000 09:03:10 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 9538CA7; Thu, 19 Oct 2000 09:10:21 -0500 (CDT) Date: Thu, 19 Oct 2000 09:10:21 -0500 From: Michael Urban To: Heredity Choice Cc: freebsd-questions@freebsd.org Subject: Re: Problems with pppd Message-ID: <20001019091021.B370@tznet.com> References: <39EE8106.85659CA1@w3rite.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from stork@QNET.COM on Thu, Oct 19, 2000 at 02:46:15AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just something interesting that might help out. Not sure. User PPP, for whatever reason, refuses to work with my ISP (and I know my setup is correct because I tried it with another ISP and it worked great). However, kernel PPP works fine with this same ISP that User PPP will not work as.. I called my ISP and they are dumbfounded, but my have me attempt to connect while 3com is running diagnostics to see if we can isolate the problem. So if you can't get user PPP to work, you might want to get kernel PPP a try. > I have the same problems as Kennie with FreeBSD 4.1 Intel. I cannot get > User PPP to work, and KDE seems confused whether it is trying to run User > PPP or Kernel PPP. I am trying to configure User PPP for a dialup, no > local network, and dynamic IP addresses. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:11: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id 7499737B479 for ; Thu, 19 Oct 2000 07:11:04 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.179]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3595100; Thu, 19 Oct 2000 09:11:01 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id E41AEA7; Thu, 19 Oct 2000 09:18:24 -0500 (CDT) Date: Thu, 19 Oct 2000 09:18:24 -0500 From: Michael Urban To: tpirman@mirapoint.com Cc: freebsd-questions@freebsd.org Subject: Re: *** Error code 1, please help! Message-ID: <20001019091824.A476@tznet.com> References: <200010190519.AAN11254@mail.mirapoint.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010190519.AAN11254@mail.mirapoint.com>; from tpirman@mirapoint.com on Wed, Oct 18, 2000 at 10:20:25PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG First, try completely removing the directory /usr/obj/usr/src/sys/ROSEVILLEGW and then build again. This will make sure there are no stale object files laying around (I think the make buildkernel does clean out this directory before starting, but it won't hurt to delete the directory first just to be sure yu are starting with no stale object files). If that doesn't work, cvsup again. It's not unheard of for bad code to get put into the STABLE tree, but it is usually fixed within an hour or so. Probably no need to make a new world. Just cvsup the latest code and see if you can build a new kernel then. On Wed, Oct 18, 2000 at 10:20:25PM -0700, tpirman@mirapoint.com wrote: > Thanks for the quick response before. > > I did what you said but got the following this time: > > bt.o: In function `btfetchtransinfo': > bt.o(.text+0x26da): undefined reference to `xpt_setup_ccb' > bt.o(.text+0x26ea): undefined reference to `xpt_action' > bt.o(.text+0x27be): undefined reference to > `scsi_calc_syncparam' > bt.o(.text+0x27ee): undefined reference to `xpt_async' > bt.o: In function `bttimeout': > bt.o(.text+0x2865): undefined reference to `xpt_print_path' > bt.o(.text+0x288c): undefined reference to `xpt_print_path' > bt.o(.text+0x28be): undefined reference to `xpt_freeze_simq' > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/ROSEVILLEGW. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:11:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from magus.nostrum.com (magus.nostrum.com [216.90.209.2]) by hub.freebsd.org (Postfix) with ESMTP id A338237B4C5 for ; Thu, 19 Oct 2000 07:11:37 -0700 (PDT) Received: (from pckizer@localhost) by magus.nostrum.com (8.11.0/8.11.0) id e9JEBXh35648; Thu, 19 Oct 2000 09:11:33 -0500 (CDT) Message-Id: <200010191411.e9JEBXh35648@magus.nostrum.com> From: Philip Kizer To: Jason Denton Cc: questions@FreeBSD.ORG Subject: Re: UMASS storage device In-reply-to: Your message of "Thu, 19 Oct 2000 07:43:25 MDT." Date: Thu, 19 Oct 2000 09:11:32 -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jason Denton wrote: > - I'm trying to get a USB compact flash card reader working That would be the "SanDisk" reader? >Exactly what devices do I need in the kernel? da and scbus... is pass >required too? Why does the usb stuff require the scsi drivers and how does >not having a scsi adapter card installed (or compilied into the >kernel) affect this? Any other kernel devices required? Well, I have a SCSI card, so I have a few SCSI options in my kernel in general. I would think all you would need would be the following, though: device scbus # SCSI bus (required) device da # Direct Access (disks) In addition to the: device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device umass # Disks/Mass storage - Requires scbus and da >What nodes do I need to make in /dev? /dev/da0c says its not configured, >there does not appear to be a /dev/umass0 and MAKEDEV does not know how to >do it. How do I setup /dev? Just add something like this to your /etc/fstab: /dev/da0s1 /mnt/camera msdos rw,noauto 0 0 and then you can: mkdir /mnt/camera mount /mnt/camera Be sure to 'umount /mnt/camera' before pulling the card out. >Is camcontrol required to rescan the bus everytime I change >cards? Everytime the system boots? Or just everytime I plug the reader >into the usb port? When the camcontrol command wants a bus, what do I give >it? As long as you leave the SanDisk attached, you shouldn't have to perform any camcontrol(8) commands. >What device node does this thing show up on? /dev/da0s1 [Where the 0 may differ if you have other SCSI devices], see the fstab entry above for an easy way of accessing the cards. If you do not have the device, be sure to perform a: cd /dev ./MAKEDEV da0s1 -Philip -- Philip Kizer, USENIX Liaison to Texas A&M University Texas A&M CIS Operating Systems Group, Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:23:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from flatt.cs.colostate.edu (flatt.cs.colostate.edu [129.82.45.245]) by hub.freebsd.org (Postfix) with ESMTP id 7F00D37B479 for ; Thu, 19 Oct 2000 07:23:12 -0700 (PDT) Received: from localhost (denton@localhost) by flatt.cs.colostate.edu (8.9.3/8.9.3) with ESMTP id IAA26382; Thu, 19 Oct 2000 08:23:06 -0600 (MDT) Date: Thu, 19 Oct 2000 08:23:06 -0600 (MDT) From: Jason Denton To: Philip Kizer Cc: questions@FreeBSD.ORG Subject: Re: UMASS storage device In-Reply-To: <200010191411.e9JEBXh35648@magus.nostrum.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 > That would be the "SanDisk" reader? Actually, its the reader that cam with my i-jam 50 mp3 player. But I think it should be the same, windows reports it as a usb mass storage device. > Well, I have a SCSI card, so I have a few SCSI options in my kernel in > general. I would think all you would need would be the following, though: > > device scbus # SCSI bus (required) > device da # Direct Access (disks) > > In addition to the: > > device uhci # UHCI PCI->USB interface > device ohci # OHCI PCI->USB interface > device usb # USB Bus (required) > device umass # Disks/Mass storage - Requires scbus and da yep, go those. Except for ohci. My understanding is that ochi/uchi are chipsets for usb? You generally have one or the other but not both - I know I have uhci. Am I wrong on this? Also have ugen in the kernel. > mkdir /mnt/camera > mount /mnt/camera > > Be sure to 'umount /mnt/camera' before pulling the card out. I get a /dev/da0s1 not configured when I try this. What do I need to do to fix this? Already done a MAKEDEV. If it helps any, output from usbdevs is : addr 1: UHCI root hub, VIA addr 2: SCM Micro USBAT-02 , SHUTTLE Jason Denton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:27:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 8545A37B479 for ; Thu, 19 Oct 2000 07:27:19 -0700 (PDT) Received: from fmrl01.sul.t-online.de by mailout01.sul.t-online.com with smtp id 13mGf6-0005oi-00; Thu, 19 Oct 2000 16:27:16 +0200 Received: from icg-pc202.hofheim.icg-online.de (06192901197-0001@[217.1.128.93]) by fmrl01.sul.t-online.com with esmtp id 13mGez-0A4D1EC; Thu, 19 Oct 2000 16:27:09 +0200 Received: (from manfred@localhost) by icg-pc202.hofheim.icg-online.de (8.9.3/8.9.3) id QAA25596; Thu, 19 Oct 2000 16:31:24 +0200 (CEST) (envelope-from usselmann.m) Date: Thu, 19 Oct 2000 16:31:23 +0200 From: Manfred Usselmann To: Christopher Rued Cc: questions@freebsd.org Subject: Re: Windows takes up less memory than Unix Was: (no subject) Message-ID: <20001019163123.A25482@icg-pc202.hofheim.icg-online.de> References: <39EE0D68.E0102B92@wmptl.com> <200010182142.XAA24345@icg-pc202.hofheim.icg-online.de> <14830.7083.556001.759808@chris.xsb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <14830.7083.556001.759808@chris.xsb.com>; from c.rued@xsb.com on Wed, Oct 18, 2000 at 05:52:43PM -0400 Organization: ICG Informationstechnologie Consulting GmbH X-Sender: 06192901197-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG on Wed, Oct 18, 2000 at 05:52:43PM -0400, Christopher Rued wrote: > Manfred Usselmann writes: > > On Wed, 18 Oct 2000 16:51:52 -0400, Nathan Vidican wrote: > > > > >James A Wilde wrote: > > >> > > >> My limited experience indicates that Unix is much more damanding of the > > >> hardware than, say, Windows. > > >> > > >> You may have 192 Mb ram, but if 64 Mb of it is shaky from the Unix point of > > >> view you can get signal 11 and still be able to run Windows with just the > > >> occasional GPF, which makes you curse and reboot. Try taking out your RAM > > >> chips one at a time and see how you get on. If you find that install > > >> continues when, say, chip 2 is removed, try and sell that one to a Windows > > >> user and get yourself a new one. > > >> > > >> If I'm on the wrong track, hopefully someone will come in on this thread and > > >> correct me. > > >> > > >> mvh/regards > > >> > > >> James > > >> > > >> > -----Original Message----- > > >> > From: Mc Claude [mailto:privat-mc@gmx.de] > > >> > Sent: Sunday, October 15, 2000 12:43 > > >> > To: james.wilde@telia.com > > >> > Subject: > > >> > > > >> > > > >> > Hello! > > >> > > > >> > Yes it isn't Fault 11, it is Signal 11! But I think I can full fill all > > >> > hardware requirements! > > >> > 192 MB RAM, enough space on HD! I've downloaded the FreeBSD from server as > > >> > ISO then I burned it on a CD but this CD can't be loaded after BIOS > > >> > sequence! So I've made boot disks! And then I've did all which > > >> > you have read > > >> > in the last e-mail! So I hope you help me! > > >> > > > >> > CU! > > >> > > > >> > > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > > >> with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > >Your experience must be VERY limited then, because I've got 386/486 > > >machines running with 4-8megs of ram just fine (usually at under 10% of > > >capacity at that!), like to see that from any winblows box. > > > > I think you misunderstood James. I believe he wanted to say that > > Windows is more likely to accept / tolerate bad RAM chips. > > Are we to beleive that this is a *good* thing? IMO No. > I'd rather have the OS let me know something was wrong immediately > rather than have it run happily along without letting me know that > anything is wrong (except for the GPF, BSOD, and other apparently > random crashes). I agree. Manfred -- Manfred Usselmann usselmann.m@icg-online.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:27:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from copper.americanisp.net (copper.americanisp.net [208.244.174.41]) by hub.freebsd.org (Postfix) with SMTP id 81DAD37B65E for ; Thu, 19 Oct 2000 07:27:42 -0700 (PDT) Received: (qmail 21696 invoked from network); 19 Oct 2000 14:27:37 -0000 Received: from unknown (HELO oxygen.americanisp.net) (208.244.174.10) by copper.americanisp.net with SMTP; 19 Oct 2000 14:27:37 -0000 Date: Thu, 19 Oct 2000 14:27:17 +0000 (/etc/localtime) From: Peter To: "Kennie H. Jones" Cc: freebsd-questions@FreeBSD.org Subject: Re: Problems with pppd In-Reply-To: <39EE8106.85659CA1@w3rite.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 Do you have ppp/tun0 setup as your default route? Usually if you can ping the server you are connected to and not beyond it, ppp isn't your default route, I would tell ya exactly what to add to your config files, but I'm at work and no FBSD here :p. I use user ppp and it works great, had same problem both in linux and FBSD always forget to add default route to ppp scripts. Once you have that working everything else shouldn't be too hard........ --- www.nul.cjb.net --- The Power to Crash! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:27:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 4DF6537B661 for ; Thu, 19 Oct 2000 07:27:44 -0700 (PDT) Received: from anondaemon1 (1.it.21stcentury.net [216.80.81.1]) by mail.enteract.com (8.9.3/8.9.3) with SMTP id JAA33294; Thu, 19 Oct 2000 09:27:42 -0500 (CDT) (envelope-from dschrock@enteract.com) Message-ID: <002b01c039d8$bb83cc70$7f7014ac@anondaemon1> From: "Daniel Schrock" To: Cc: References: <065DE87AF392D411A3D800204840A0152E7F65@cbbc805.cb.ic.gc.ca> Subject: Re: Installing 4.1.1 on slave IDE disk Date: Thu, 19 Oct 2000 09:27:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Duriing install you will want to make sure that both disks are set to active Then Boot Easy will install on the master drive and you will be given a choice of operating systems at boot. It will default to bsd, so if booted unattended, your wife will be stuck in bsd. Make sure you teach her how to get out of it if this happens. Fscking fscks!! You can probably change the default OS but i have never tried so i couldn't tell you how to do it. If you find you no longer need/want bsd on that box, you should be able to do a 'format /mbr' in DOS to restore your master boot record to windows only. Also make sure your virus scanner is not set to fix errors on the mbr, it will wipe out the bsd mbr if given the chance. Daniel Schrock i-Help RCN/Enteract 312.955.2951 -direct 312.955.3030 -pod dschrock@enteract.com ----- Original Message ----- From: Newsgroups: muc.lists.freebsd.questions,mpc.lists.freebsd.questions Sent: Thursday, October 19, 2000 8:37 AM Subject: RE: Installing 4.1.1 on slave IDE disk > It's the wife's Windows Millennium. The master is split up in two 6.5GB > partitions. I can probably resize the 2nd parition to free up some space for > a small /boot partition for BSD *before* the 1024th cylinder. > > What do you think? Ideally, I'd want to leave the master disk untouched. I > tried BootMagic (from the PQMagic suite) and it doesn't seem to be able to > boot anything else than something on the master drive. > > Also, when I did set up FreeBSD, I did not mark the / partition on my slave > disk as bootable. As far as I know, you can't boot off a slave disk. > > Am I wrong? > > Thanks again! > > > Joël Dinel > Competition Bureau > > Tel. (819) 997-2514 > Fax (819) 953-9010 > dinel.joel@ic.gc.ca > > > > -----Original Message----- > From: Jim Judd [mailto:jimj@netrake.com] > Sent: October 19, 2000 9:06 AM > To: Dinel, Joël: #CB - BC > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: Installing 4.1.1 on slave IDE disk > > > Dinel.Joel@ic.gc.ca wrote: > > > For some odd reason, posts made from home never make it to the list, so > here > > goes again from work : > > > > I've got the following setup : > > > > Primary IDE master : 13 GB HD > > Primary IDE slave : 10 GB HD > > > > Secondary IDE master : CDROM > > Secondary IDE slave : CDRW > > > > The primary master is entirely FAT32. I want to dedicate the slave to > > FreeBSD. What do I do during the install to have BSD installed entirely on > > the slave, but have BootEasy write itself to the MBR of the master disk? I > > installed yesterday, with Booteasy (I am supposing it wrote itself to the > > MBR of my slave disk), and I never see the prompt when I boot. > > > > Is there any way of doing this without touching the master disk ? > > > > Thanks ! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > What do you have installed on the primary? Win98, WinNT, W2k... > > jj > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:32: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id DEBB837B4CF for ; Thu, 19 Oct 2000 07:32:00 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id D514A3293; Wed, 18 Oct 2000 06:55:24 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id C21C93292; Wed, 18 Oct 2000 06:55:24 +0000 (GMT) Date: Wed, 18 Oct 2000 06:55:24 +0000 (GMT) From: Rick Hamell To: Alexander Rudak Cc: freebsd-questions@freebsd.org Subject: Re: your mail In-Reply-To: <0447.001019@ro.com.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Excel 97 and Excel 2000 both have publish to web page options. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org On Thu, 19 Oct 2000, Alexander Rudak wrote: > Hello everybody, > > Is there any tool to convert Microsoft Excel files to the CSV or HTML? > I would appreciate any cooperation or ideas. > The puprose is that user can edit data from Excel and than it is immediately > posted to the web site. > > -- > Best regards, > Alexander mailto:ru@ro.com.ua > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:32:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailhub1.rjf.com (mailhub1.rjf.com [170.12.128.128]) by hub.freebsd.org (Postfix) with ESMTP id 0CA4037B4CF; Thu, 19 Oct 2000 07:32:50 -0700 (PDT) Received: from exmta5.rjf.com by mailhub1.rjf.com with ESMTP; Thu, 19 Oct 2000 10:31:02 -0400 Received: by exmta5.rjf.com with Internet Mail Service (5.5.2650.21) id <4W799BCP>; Thu, 19 Oct 2000 10:32:48 -0400 Message-Id: <6D5097D4B56AD31190D50008C7B1579BC97C67@exlan5.rjf.com> From: Ian Cartwright To: "FreeBSD Questions (E-mail)" , "'freebsd-hardware@freebsd.org'" Subject: Intel Etherexpress Timeouts Date: Thu, 19 Oct 2000 10:32:37 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, I recently installed FreeBSD 4.11-RELEASE on a new Compaq Deskpro EN. It has an Intel Etherexpress Pro 100 built into the motherboard. After compiling a new kernel (-STABLE) for it, the NIC is detected. I do have one problem with the NIC though: I keep getting timeout errors. Sometimes the NIC comes back, sometimes I have to reboot... I have included output from dmesg. Any help would be appreciated... Ian Cartwright Senior Network Engineer Raymond James & Associates icartwright@it.rjf.com dmesg output follows: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-STABLE #0: Thu Oct 12 10:44:34 EDT 2000 root@ian.batcave.com:/usr/src/sys/compile/compaq.411 Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (797.42-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383fbff real memory = 536870912 (524288K bytes) avail memory = 519147520 (506980K bytes) Preloaded elf kernel "kernel" at 0xc0397000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 10 pcib2: at device 30.0 on pci0 pci2: on pcib2 fxp0: port 0x1000-0x103f mem 0x40000000-0x40000fff irq 5 at device 8.0 on pci2 fxp0: Ethernet address 00:50:8b:f7:83:c2 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x2460-0x246f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x2440-0x245f irq 11 at device 31.4 on pci0 uhci0: (New UHCI DeviceId=0x24448086) usb0: on uhci0 usb0: USB revision 1.0 uhub0: (0x24448086) UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: (vendor=0x8086, dev=0x2445) at 31.5 irq 11 isa0: unexpected small tag 14 isa0: unexpected small tag 14 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/13 bytes threshold ppi0: on ppbus0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources ad0: 14324MB [29104/16/63] at ata0-master using UDMA100 acd0: CDROM at ata1-master using WDMA2 Mounting root from ufs:/dev/ad0s1a fxp0: device timeout To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:41:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.tbv.se (smtp2.tbv.se [193.15.92.33]) by hub.freebsd.org (Postfix) with ESMTP id 5963737B4C5 for ; Thu, 19 Oct 2000 07:41:05 -0700 (PDT) Received: (from uucp@localhost) by smtp2.tbv.se (8.9.1/8.9.1) id QAA11237 for ; Thu, 19 Oct 2000 16:41:00 +0200 (CEST) (envelope-from james.wilde@tbv.se) Received: from UNKNOWN(193.15.92.37), claiming to be "tbvhks12" via SMTP by smtp2.tbv.se, id smtpdk11235; Thu Oct 19 16:40:57 2000 From: "James A Wilde" To: "Send to questions" Subject: RE: Windows takes up less memory than Unix Was: (no subject) Date: Thu, 19 Oct 2000 16:43:04 +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.2911.0) In-Reply-To: <20001019163123.A25482@icg-pc202.hofheim.icg-online.de> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > >Your experience must be VERY limited then, because I've got 386/486 > > > >machines running with 4-8megs of ram just fine (usually at > under 10% of > > > >capacity at that!), like to see that from any winblows box. > > > > > > I think you misunderstood James. I believe he wanted to say that > > > Windows is more likely to accept / tolerate bad RAM chips. I've obviously missed this continuation of the original thread. That's exactly what I meant - that Windows is not very good at warning one about bad chips. I fully agree with the other speaker also, that UNIX will run in much less memory than Windows or, alternatively, will achieve far more in the same memory. I have a 486 at home running (at the moment) Solaris with CDE quite happily. I wouldn't dream of trying to run even Windows 95 on a machine of that spec with any expectation of acceptable performance. mvh/regards James To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:44:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by hub.freebsd.org (Postfix) with ESMTP id 4ABBC37B4FE for ; Thu, 19 Oct 2000 07:44:07 -0700 (PDT) Received: from fmrl01.sul.t-online.de by mailout03.sul.t-online.com with smtp id 13mGvM-0000HB-02; Thu, 19 Oct 2000 16:44:04 +0200 Received: from tanja.ncptiddische.net (520077084314-0001@[193.159.148.155]) by fmrl01.sul.t-online.com with esmtp id 13mGvJ-0CWH44C; Thu, 19 Oct 2000 16:44:01 +0200 Received: from daniela.ncptiddische.net (daniela.ncptiddische.net [192.168.0.3]) by tanja.ncptiddische.net (8.11.1/8.11.1) with ESMTP id e9JEkwY07293 for ; Thu, 19 Oct 2000 16:47:35 +0200 (CEST) (envelope-from nils@nightcastleproductions.org) Date: Thu, 19 Oct 2000 16:45:17 +0200 (CEST) From: Nils Holland To: questions@freebsd.org Subject: CD-Burning with ATAPI-Drive - Any suggestions Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Sender: 520077084314-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi folks, with the introduction of "burncd" in FreeBSD 4.0 I've been able to burn CDs under FreeBSD for quite some time now. But I'm still looking for a good way to do 1:1 copies of audio or data-CDs. With burncd I can burn audio and data tracks, but it doesn't seem to be easily able to simply copy a whole audio CD or a whole data CD. Since I have an ATAPI CD-Recorder (connected to the IDE bus) I have the feeling that most "third-party" utilities like cdrecord may not work for me. I'd be glad if someone could share their experiences for copying audio and data CDs using ATAPI CD-Writers with me. Thanks in advance, Nils The night is so much darker than it has any right to be (Jim Steinman) ----------------------------------------------------------------- Nils Holland NightCastle Productions * http://www.nightcastleproductions.org ----------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:56: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from clyde.goodleaf.net (piscator.seanet.com [199.181.165.218]) by hub.freebsd.org (Postfix) with ESMTP id A1B7737B479 for ; Thu, 19 Oct 2000 07:56:00 -0700 (PDT) Received: by clyde.goodleaf.net (Postfix, from userid 1001) id 904C45BE2; Thu, 19 Oct 2000 07:54:54 -0700 (PDT) From: J.Goodleaf@goodleaf.net To: questions@freebsd.org Subject: Somewhat OT: Database design tools? Date: Thu, 19 Oct 2000 14:54:54 GMT Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20001019145454.904C45BE2@clyde.goodleaf.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does anybody know of a good tool that allows one to draw E-R diagrams? I'm in a database design course and I must do my homework. I guess I could sit down with a piece of paper, but come on now, something's gotta be out there, right? Thanks, John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 7:58:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from emu.prod.itd.earthlink.net (emu.prod.itd.earthlink.net [207.217.121.31]) by hub.freebsd.org (Postfix) with ESMTP id 2975237B4F9 for ; Thu, 19 Oct 2000 07:58:15 -0700 (PDT) Received: from do.mi.no (dialup-63.208.220.219.Baltimore1.Level3.net [63.208.220.219]) by emu.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with ESMTP id HAA27099 for ; Thu, 19 Oct 2000 07:58:14 -0700 (PDT) Received: (from pat@localhost) by do.mi.no (8.9.3/8.9.3) id KAA06891 for freebsd-questions@FreeBSD.ORG; Thu, 19 Oct 2000 10:56:20 -0400 (EDT) (envelope-from pat) Date: Thu, 19 Oct 2000 10:56:19 -0400 From: pat To: freebsd-questions@FreeBSD.ORG Subject: Re: canon djc-4000 printer Message-ID: <20001019105619.A6875@do.mi.no> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from SCARLETTRETT@aol.com on Tue, Oct 17, 2000 at 05:54:46PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Oct 17, 2000 at 05:54:46PM -0400, SCARLETTRETT@aol.com wrote: > I am having troble with my printer printing it goes through the motions, but > does not print. I have refilled my Ink.It wont print on line or off line. I don't have my little Canon printing yet, but here's where to look: gimp-print.sourceforge.net These guys have been working on printer drivers for Canon/Epson/and other difficult printers, originally for the Gimp, but the package can also be wrapped up to run as a new driver for Ghostscript. The instructions for doing this are pretty complicated but if you follow them exactly you will indeed roll a new driver into the ghostscript package for you. Maybe it'll work for you. This is, so far as I know, your _only_ hope for using your printer with FreeBSD. You can find a whole lot of interesting printing stuff at www.linuxprinting.org HTH, Pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8: 2:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tori.COM (L0004P01.dipool.highway.telekom.at [62.46.64.97]) by hub.freebsd.org (Postfix) with ESMTP id 4E46737B4CF for ; Thu, 19 Oct 2000 08:02:33 -0700 (PDT) Received: (from philipp@localhost) by tori.COM (8.11.0/8.9.3) id e9JBoPb00347; Thu, 19 Oct 2000 13:50:25 +0200 (CEST) (envelope-from philipp) Date: Thu, 19 Oct 2000 13:50:18 +0200 From: Philipp Huber To: "O. Hartmann" Cc: questions@freebsd.org Subject: Re: Some crucial questions about Linux vs. FreeBSD Message-ID: <20001019135018.A244@tori.mini.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from ohartman@ipamzlx.physik.uni-mainz.de on Thu, Oct 19, 2000 at 12:46:49PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi! have a look at http://innominate.org/~graichen/slides/performance there's a comparision of several osses, including the bsd's linux and solaris. Philipp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8: 3:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 1upmc-msx1.isdip.upmc.edu (1upmc-msx1.isdip.upmc.edu [128.147.16.38]) by hub.freebsd.org (Postfix) with ESMTP id 2836737B4CF for ; Thu, 19 Oct 2000 08:03:38 -0700 (PDT) Received: by 1UPMC-MSX1 with Internet Mail Service (5.5.2650.21) id <4873XPA7>; Thu, 19 Oct 2000 11:02:38 -0400 Message-ID: From: "Person, Roderick" To: "'J.Goodleaf@goodleaf.net'" , questions@freebsd.org Subject: RE: Somewhat OT: Database design tools? Date: Thu, 19 Oct 2000 11:02:57 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C039DD.9E8464EA" 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_01C039DD.9E8464EA Content-Type: text/plain; charset="iso-8859-1" Try dia. I used it to do some DB design and Programming Flows. Roderick P. Person Programmer II Crystal Administrator (412)454-2616 personrp@ccbh.com "Don't believe me. Believe what you see..." - The Buddha -----Original Message----- From: J.Goodleaf@goodleaf.net [mailto:J.Goodleaf@goodleaf.net] Sent: October 19, 2000 10:55 AM To: questions@freebsd.org Subject: Somewhat OT: Database design tools? Does anybody know of a good tool that allows one to draw E-R diagrams? I'm in a database design course and I must do my homework. I guess I could sit down with a piece of paper, but come on now, something's gotta be out there, right? Thanks, John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message ------_=_NextPart_001_01C039DD.9E8464EA Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: Somewhat OT: Database design tools?

Try dia.

I used it to do some DB design and Programming = Flows.

Roderick P. Person
Programmer II
Crystal Administrator
(412)454-2616
personrp@ccbh.com
 
"Don't believe me. Believe what you = see..."
          &nb= sp;           &nb= sp;           &nb= sp;           &nb= sp;           - The = Buddha




-----Original Message-----
From: J.Goodleaf@goodleaf.net [mailto:J.Goodleaf@goodleaf.net]
Sent: October 19, 2000 10:55 AM
To: questions@freebsd.org
Subject: Somewhat OT: Database design tools?



Does anybody know of a good tool that allows one to = draw E-R diagrams? I'm
in a database design course and I must do my = homework. I guess I could sit
down with a piece of paper, but come on now, = something's gotta be out
there, right?

Thanks,
John


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

------_=_NextPart_001_01C039DD.9E8464EA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8: 7:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 145B737B479 for ; Thu, 19 Oct 2000 08:07:34 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id LAA08569 for ; Thu, 19 Oct 2000 11:07:31 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id LAA05417 for ; Thu, 19 Oct 2000 11:07:02 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2ONCH00.TW0; Thu, 19 Oct 2000 11:07:29 -0400 Message-ID: <39EF0E41.4D0D55CC@mitre.org> Date: Thu, 19 Oct 2000 11:07:45 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: J.Goodleaf@goodleaf.net Cc: questions@FreeBSD.ORG Subject: Re: Somewhat OT: Database design tools? References: <20001019145454.904C45BE2@clyde.goodleaf.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG J.Goodleaf@goodleaf.net wrote: > > Does anybody know of a good tool that allows one to draw E-R diagrams? I'm > in a database design course and I must do my homework. I guess I could sit > down with a piece of paper, but come on now, something's gotta be out > there, right? Well, I used to use xfig, which does a pretty decent job of drawing diagrams and stuff, although the interface takes a little getting used to. Its in the graphics section of the ports. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:13:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id 9739B37B4D7 for ; Thu, 19 Oct 2000 08:13:18 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.179]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3629100; Thu, 19 Oct 2000 10:13:14 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 39E7AA7; Thu, 19 Oct 2000 10:20:38 -0500 (CDT) Date: Thu, 19 Oct 2000 10:20:38 -0500 From: 'Michael Urban' To: Matt Bettinger Cc: freebsd-questions@freebsd.org Subject: Re: Problems with pppd Message-ID: <20001019102038.A605@tznet.com> References: <71F816A89AA9D3119F4C00D0B7094EFC1FF741@FIN_SYN> <71F816A89AA9D3119F4C00D0B7094EFC1990C6@FIN_SYN> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <71F816A89AA9D3119F4C00D0B7094EFC1990C6@FIN_SYN>; from mattb@finsyn.com on Thu, Oct 19, 2000 at 09:28:02AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My user PPP does not work when trying to connect to my ISP. I can only use kernel PPP and that works fine. However, I know that I have user PPP set up correctly because it works with other ISPs. Just not mine. Unfortunatly, this was a long time ago, and I do not have the log anymore. But I do remember what the last entries had to do with before the disconnect. "Bad vjcomp header recieved". I would get that several times and then it would just hang up. This was after it negotiated an IP address usually. It would give me an IP address, and then a few seconds later just disconnect for no apparent reason. According to the logs, those were the last entries before the disconnect. No problems at all with kernel PPP though. Another interesting side note: I am also unable to connect to this ISP with BeOS, although once again, with BeOS I do not have any problems with another ISP. On Thu, Oct 19, 2000 at 09:28:02AM -0500, Matt Bettinger wrote: > I am a little confused. YOUR user ppp does not work or the other > fellows??... how far does it get in the connection process? can we see some > logs? > > matt > > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Michael Urban > Sent: Thursday, October 19, 2000 9:10 AM > To: Heredity Choice > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: Problems with pppd > > > Just something interesting that might help out. Not sure. > > User PPP, for whatever reason, refuses to work with my ISP (and I > know my setup is correct because I tried it with another ISP and it > worked great). However, kernel PPP works fine with this same ISP that > User PPP will not work as.. I called my ISP and they are dumbfounded, > but my have me attempt to connect while 3com is running diagnostics > to see if we can isolate the problem. So if you can't get user PPP to > work, you might want to get kernel PPP a try. > > > I have the same problems as Kennie with FreeBSD 4.1 Intel. I cannot get > > User PPP to work, and KDE seems confused whether it is trying to run User > > PPP or Kernel PPP. I am trying to configure User PPP for a dialup, no > > local network, and dynamic IP addresses. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:19:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from x400gate-01.ic.gc.ca (x400gate-01.ic.gc.ca [192.197.186.121]) by hub.freebsd.org (Postfix) with ESMTP id 9157637B479 for ; Thu, 19 Oct 2000 08:19:17 -0700 (PDT) Received: by x400gate-01.ic.gc.ca with Internet Mail Service (5.5.2650.21) id ; Thu, 19 Oct 2000 11:13:51 -0400 Message-ID: <065DE87AF392D411A3D800204840A0152E7F68@cbbc805.cb.ic.gc.ca> From: Dinel.Joel@ic.gc.ca To: dschrock@enteract.com Cc: freebsd-questions@freebsd.org Subject: RE: Installing 4.1.1 on slave IDE disk Date: Thu, 19 Oct 2000 11:20:00 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey thanks for the great advice. So, if I understood correctly : Disk 1 partition 1 (Windows) : set active (already is) Disk 2 partition 1 (BSD) : set active (will do) Then everything should be ok ? Jo=EBl Dinel=20 Competition Bureau=20 Tel. (819) 997-2514=20 Fax (819) 953-9010=20 dinel.joel@ic.gc.ca=20 -----Original Message----- From: Daniel Schrock [mailto:dschrock@enteract.com] Sent: October 19, 2000 10:27 AM To: Dinel, Jo=EBl: #CB - BC Cc: freebsd-questions@freebsd.org Subject: Re: Installing 4.1.1 on slave IDE disk Duriing install you will want to make sure that both disks are set to = active Then Boot Easy will install on the master drive and you will be given a choice of operating systems at boot. It will default to bsd, so if = booted unattended, your wife will be stuck in bsd. Make sure you teach her = how to get out of it if this happens. Fscking fscks!! You can probably = change the default OS but i have never tried so i couldn't tell you how to do = it. If you find you no longer need/want bsd on that box, you should be able = to do a 'format /mbr' in DOS to restore your master boot record to windows only. Also make sure your virus scanner is not set to fix errors on the mbr, = it will wipe out the bsd mbr if given the chance. Daniel Schrock i-Help RCN/Enteract 312.955.2951 -direct 312.955.3030 -pod dschrock@enteract.com ----- Original Message ----- From: Newsgroups: muc.lists.freebsd.questions,mpc.lists.freebsd.questions Sent: Thursday, October 19, 2000 8:37 AM Subject: RE: Installing 4.1.1 on slave IDE disk > It's the wife's Windows Millennium. The master is split up in two = 6.5GB > partitions. I can probably resize the 2nd parition to free up some = space for > a small /boot partition for BSD *before* the 1024th cylinder. > > What do you think? Ideally, I'd want to leave the master disk = untouched. I > tried BootMagic (from the PQMagic suite) and it doesn't seem to be = able to > boot anything else than something on the master drive. > > Also, when I did set up FreeBSD, I did not mark the / partition on my slave > disk as bootable. As far as I know, you can't boot off a slave disk. > > Am I wrong? > > Thanks again! > > > Jo=EBl Dinel > Competition Bureau > > Tel. (819) 997-2514 > Fax (819) 953-9010 > dinel.joel@ic.gc.ca > > > > -----Original Message----- > From: Jim Judd=90=90 [mailto:jimj@netrake.com] > Sent: October 19, 2000 9:06 AM > To: Dinel, Jo=EBl: #CB - BC > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: Installing 4.1.1 on slave IDE disk > > > Dinel.Joel@ic.gc.ca wrote: > > > For some odd reason, posts made from home never make it to the = list, so > here > > goes again from work : > > > > I've got the following setup : > > > > Primary IDE master : 13 GB HD > > Primary IDE slave : 10 GB HD > > > > Secondary IDE master : CDROM > > Secondary IDE slave : CDRW > > > > The primary master is entirely FAT32. I want to dedicate the slave = to > > FreeBSD. What do I do during the install to have BSD installed = entirely on > > the slave, but have BootEasy write itself to the MBR of the master = disk? I > > installed yesterday, with Booteasy (I am supposing it wrote itself = to the > > MBR of my slave disk), and I never see the prompt when I boot. > > > > Is there any way of doing this without touching the master disk ? > > > > Thanks ! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > What do you have installed on the primary? Win98, WinNT, W2k... > > jj > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:26: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id B6A7437B479 for ; Thu, 19 Oct 2000 08:26:01 -0700 (PDT) Received: from anondaemon1 (1.it.21stcentury.net [216.80.81.1]) by mail.enteract.com (8.9.3/8.9.3) with SMTP id KAA70620; Thu, 19 Oct 2000 10:25:59 -0500 (CDT) (envelope-from dschrock@enteract.com) Message-ID: <003c01c039e0$e0749c50$7f7014ac@anondaemon1> From: "Daniel Schrock" To: Cc: References: <065DE87AF392D411A3D800204840A0152E7F68@cbbc805.cb.ic.gc.ca> Subject: Re: Installing 4.1.1 on slave IDE disk Date: Thu, 19 Oct 2000 10:25:26 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You will be good to go at that point. ( It took me 4 installs to figure this one out so i definitely understand your troubles :)...sshh...don't tell anyone :-P) Have a great day and let us know if you have any more problems. Daniel Schrock i-Help RCN/Enteract 312.955.2951 -direct 312.955.3030 -pod dschrock@enteract.com ----- Original Message ----- From: To: Cc: Sent: Thursday, October 19, 2000 10:20 AM Subject: RE: Installing 4.1.1 on slave IDE disk Hey thanks for the great advice. So, if I understood correctly : Disk 1 partition 1 (Windows) : set active (already is) Disk 2 partition 1 (BSD) : set active (will do) Then everything should be ok ? Joël Dinel Competition Bureau Tel. (819) 997-2514 Fax (819) 953-9010 dinel.joel@ic.gc.ca -----Original Message----- From: Daniel Schrock [mailto:dschrock@enteract.com] Sent: October 19, 2000 10:27 AM To: Dinel, Joël: #CB - BC Cc: freebsd-questions@freebsd.org Subject: Re: Installing 4.1.1 on slave IDE disk Duriing install you will want to make sure that both disks are set to active Then Boot Easy will install on the master drive and you will be given a choice of operating systems at boot. It will default to bsd, so if booted unattended, your wife will be stuck in bsd. Make sure you teach her how to get out of it if this happens. Fscking fscks!! You can probably change the default OS but i have never tried so i couldn't tell you how to do it. If you find you no longer need/want bsd on that box, you should be able to do a 'format /mbr' in DOS to restore your master boot record to windows only. Also make sure your virus scanner is not set to fix errors on the mbr, it will wipe out the bsd mbr if given the chance. Daniel Schrock i-Help RCN/Enteract 312.955.2951 -direct 312.955.3030 -pod dschrock@enteract.com ----- Original Message ----- From: Newsgroups: muc.lists.freebsd.questions,mpc.lists.freebsd.questions Sent: Thursday, October 19, 2000 8:37 AM Subject: RE: Installing 4.1.1 on slave IDE disk > It's the wife's Windows Millennium. The master is split up in two 6.5GB > partitions. I can probably resize the 2nd parition to free up some space for > a small /boot partition for BSD *before* the 1024th cylinder. > > What do you think? Ideally, I'd want to leave the master disk untouched. I > tried BootMagic (from the PQMagic suite) and it doesn't seem to be able to > boot anything else than something on the master drive. > > Also, when I did set up FreeBSD, I did not mark the / partition on my slave > disk as bootable. As far as I know, you can't boot off a slave disk. > > Am I wrong? > > Thanks again! > > > Joël Dinel > Competition Bureau > > Tel. (819) 997-2514 > Fax (819) 953-9010 > dinel.joel@ic.gc.ca > > > > -----Original Message----- > From: Jim Judd [mailto:jimj@netrake.com] > Sent: October 19, 2000 9:06 AM > To: Dinel, Joël: #CB - BC > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: Installing 4.1.1 on slave IDE disk > > > Dinel.Joel@ic.gc.ca wrote: > > > For some odd reason, posts made from home never make it to the list, so > here > > goes again from work : > > > > I've got the following setup : > > > > Primary IDE master : 13 GB HD > > Primary IDE slave : 10 GB HD > > > > Secondary IDE master : CDROM > > Secondary IDE slave : CDRW > > > > The primary master is entirely FAT32. I want to dedicate the slave to > > FreeBSD. What do I do during the install to have BSD installed entirely on > > the slave, but have BootEasy write itself to the MBR of the master disk? I > > installed yesterday, with Booteasy (I am supposing it wrote itself to the > > MBR of my slave disk), and I never see the prompt when I boot. > > > > Is there any way of doing this without touching the master disk ? > > > > Thanks ! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > What do you have installed on the primary? Win98, WinNT, W2k... > > jj > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:28:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id A8A4837B4C5 for ; Thu, 19 Oct 2000 08:28:13 -0700 (PDT) Received: (qmail 48566 invoked by uid 100); 19 Oct 2000 15:28:12 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.4876.840047.540620@guru.mired.org> Date: Thu, 19 Oct 2000 10:28:12 -0500 (CDT) To: "James A Wilde" Cc: questions@freebsd.org Subject: RE: a few questions In-Reply-To: <9598826@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG James A Wilde writes: > > 3 - Which modems does FreeBSD support ? > Someone else field this. I think the answer is any except winmodems. Not quite anything. USB modem support isn't in -stable yet. What's in -current only works with USB modems that support the ACM mode of CDC modems. And all of this is new enough that modem quirks aren't well-supported. In other words - only buy USB modems that someone else has reported working, unless you feel like working on the driver (and if you don't, why are you running -current :-). ; Thu, 19 Oct 2000 08:30:35 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.179]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 3639600; Thu, 19 Oct 2000 10:30:32 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 7E8F2A7; Thu, 19 Oct 2000 10:37:54 -0500 (CDT) Date: Thu, 19 Oct 2000 10:37:54 -0500 From: Michael Urban To: freebsd-questions@freebsd.org Subject: su root exploit? Message-ID: <20001019103754.A667@tznet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does this particular root explit affect su on FreeBSD? The article says it affects all versions of su. I built and tried to use the code they included on my system, but I couldn't get anything to happen. Does anyone know if FreeBSD is vunerable? Here is the full URL: http://www.securiteam.com/exploits/_bin_su_local_libc_exploit_yielding_a_root_shell.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:31:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 03C0937B479 for ; Thu, 19 Oct 2000 08:31:49 -0700 (PDT) Received: (qmail 48668 invoked by uid 100); 19 Oct 2000 15:31:48 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.5092.508866.393982@guru.mired.org> Date: Thu, 19 Oct 2000 10:31:48 -0500 (CDT) To: Jason Denton Cc: questions@freebsd.org Subject: Re: UMASS storage device In-Reply-To: <103214540@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jason Denton writes: > > In addition to the: > > > > device uhci # UHCI PCI->USB interface > > device ohci # OHCI PCI->USB interface > > device usb # USB Bus (required) > > device umass # Disks/Mass storage - Requires scbus and da > > yep, go those. Except for ohci. My understanding is that ochi/uchi are > chipsets for usb? You generally have one or the other but not both - I > know I have uhci. Am I wrong on this? Also have ugen in the kernel. You're right. You only need both if you've got both kinds of USB controllers in your machine. Having ugen shouldn't hurt. ; Thu, 19 Oct 2000 08:37:41 -0700 (PDT) Message-ID: <20001019153740.11454.qmail@web4403.mail.yahoo.com> Received: from [194.177.210.231] by web4403.mail.yahoo.com; Thu, 19 Oct 2000 08:37:40 PDT Date: Thu, 19 Oct 2000 08:37:40 -0700 (PDT) From: Xenofon Subject: Support for greek 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 How can i display greek (ISO8859_7) text in xterm? How can i write greek text? Thanks in advance __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:38:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id B9F2E37B4D7 for ; Thu, 19 Oct 2000 08:38:37 -0700 (PDT) Received: (qmail 48824 invoked by uid 100); 19 Oct 2000 15:38:37 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.5501.157941.41536@guru.mired.org> Date: Thu, 19 Oct 2000 10:38:37 -0500 (CDT) To: Olivier Regula Cc: questions@freebsd.org Subject: Re: Kernel version ? In-Reply-To: <12356457@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Olivier Regula writes: > Help me please !!, my current version of freebsd is the 4.1 > released, and i want to install a soft, which's running on > the ver 4.0... > Is there a great difference between the old kernel and the > new one ? > Please answer me quicly, it's important... No, there aren't great differences. On the other hand, the minor ones could trip some software :-(. ; Thu, 19 Oct 2000 08:49:24 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Thu, 19 Oct 2000 11:47:08 -0400 Message-ID: <39EF17E0.FACC2790@tellurian.com> Date: Thu, 19 Oct 2000 11:48:48 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: David Harnick-Shapiro Cc: freebsd-questions@freebsd.org Subject: Re: lost X when I ran virtual terminal References: <200010190409.VAA19249@irv1-mail2.intelenet.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Check /etc/ttys file to see which terminal your xterm runs on. Mine runs on ttyv3 (ctrl+alt+F4). Or maybe your "experimentation" included something that disabled xdm ? David Harnick-Shapiro wrote: > OK, I'm an idiot. I hit ctl-alt-F2, my X session got hidden, and > ttyv1 popped up -- all good. I finished my little experimentation... > and I can't get back to X. When I hit alt-F1, I just see the text > that gets spewed by the X server before it takes over, things like > > (--) SVGA: RIVA 128: Using hardware cursor > > BTW, I log in in text mode, and start X with xstart. > > I *promise* I looked before asking here (lynx to the handbook, the > pcvt and screen man pages), but I couldn't find an answer: is there > a way to make the X server come back? > > David H-S > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 8:55:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1b.mail.yahoo.com (smtp3.mail.yahoo.com [128.11.68.135]) by hub.freebsd.org (Postfix) with SMTP id C364537B479 for ; Thu, 19 Oct 2000 08:55:44 -0700 (PDT) Received: from adsl-64-161-89-218.dsl.lsan03.pacbell.net (HELO ideal-gate.idealfasteners.com) (64.161.89.218) by smtp.mail.vip.suc.yahoo.com with SMTP; 19 Oct 2000 15:55:16 -0000 X-Apparently-From: Message-Id: <5.0.0.25.0.20001019085507.009f0c30@mail.idealfasteners.com> X-Sender: kurtis@mail.idealfasteners.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Thu, 19 Oct 2000 08:55:11 -0700 To: freebsd-questions@freebsd.org From: Kurtis Smith Subject: ppp dialup with natd for Internet share newbie one... 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 4.0 Release Custome Kernel... Hi, Here goes my question again for you guru's and not so guru's that have this setup and functioning for your small web servers and email servers. I have gotten regular ppp to work just fine dial out and what not... I am having a problem ever since I recompiled the kernel with pseudo device tun1. here is my ppp.conf 1. default: 2. 3. # 4. # blah blah blah "device" references... blah blah 5. # 6. 7. set device /dev/cuaa1 8. set log Phase Chat LCP IPCP CCP tun command 9. set speed 115200 10. set dial "abort blah blah..." 11. set timeout 12. set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 13.add default HISADDR 14.enable dns 15. 16.papchap: 17. 18.PACBELL: 19. 20.set phone 956-4566 21.set authname test 22.set authkey 123456 this is what I do... hotshoppe# ppp -auto PACBELL working in auto mode Using interface: tun0 Warning: Bad label in /etc/ppp/ppp.conf (line 21) -missing colon ... so on ... error again with date... Now I do have DHCPD running on de0. I also have ipfirewall and ipdivert in kernel I try to load natd but it does not come up since there is no active connection.... Can someone point me to a how to or give me some info dam starting to pull hair out because I had it working fine earlier today now its 3pm already heheh.... Mind you this worked as is just like this before I recompiled kernel and also did not have ipdivert or ipfirewall or change psuedo device tun 1 instead of blank. Thanks, -Kurt _________________________________________________________ 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 Thu Oct 19 9: 8: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hqfs1.servervault.com (office.servervault.com [216.12.128.6]) by hub.freebsd.org (Postfix) with ESMTP id 1B92337B4C5 for ; Thu, 19 Oct 2000 09:07:57 -0700 (PDT) Received: from daywalker.servervault.com (DAYWALKER [192.168.1.101]) by hqfs1.servervault.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id VBCMD748; Thu, 19 Oct 2000 12:07:35 -0400 Received: (from emf@localhost) by daywalker.servervault.com (8.11.1/8.9.3) id e9JG7hB33018 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 12:07:43 -0400 (EDT) (envelope-from emf) Date: Thu, 19 Oct 2000 12:07:43 -0400 From: Erik Fichtner To: freebsd-questions@freebsd.org Subject: ssh, pam, and pam_radius Message-ID: <20001019120743.H365@servervault.com> Reply-To: emf@servervault.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Help. FreeBSD 4.1.1-STABLE's sshd will not listen to PAM. Step 1: we go into /usr/src/secure/usr.bin/sshd, and we add the following to the Makefile: CFLAGS+= -DHAVE_LIBPAM LDADD+= -lpam Now we type make. Whoops.. cc -O -pipe -DLIBWRAP -DLOGIN_ACCESS -DLOGIN_CAP -I/usr/src/secure/usr.sbin/sshd/../../../usr.bin/login -DHAVE_LIBPAM -DSKEY -DNO_IDEA -c /usr/src/secure/usr.sbin/sshd/../../../crypto/openssh/auth1.c /usr/src/secure/usr.sbin/sshd/../../../crypto/openssh/auth1.c: In function `do_authloop': /usr/src/secure/usr.sbin/sshd/../../../crypto/openssh/auth1.c:161: syntax error before `int' *** Error code 1 Step 2: we comment out the offending int pam_retval at line 161 of auth1.c, as it's not referenced *anywhere*.. (which is a dramatically bad omen, if you ask me...) make. Yay. it builds. make install. ldd /usr/sbin/sshd /usr/sbin/sshd: libpam.so.1 => /usr/lib/libpam.so.1 (0x2808b000) libopie.so.2 => /usr/lib/libopie.so.2 (0x28094000) libmd.so.2 => /usr/lib/libmd.so.2 (0x2809d000) libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x280a7000) libcrypto.so.1 => /usr/lib/libcrypto.so.1 (0x280bc000) libutil.so.3 => /usr/lib/libutil.so.3 (0x28178000) libz.so.2 => /usr/lib/libz.so.2 (0x28181000) libwrap.so.3 => /usr/lib/libwrap.so.3 (0x2818e000) libc.so.4 => /usr/lib/libc.so.4 (0x28196000) Mmm.. nice. it's got libpam built in now. So I add an "sshd auth required pam_radius.so debug" line to my pam.conf file. (and, by the way, pam_radius works just fine with login and ftpd, and yes, the "other" fallthrough is calling radius as well.) To make the long story short, sshd won't consult pam. It just goes right for the password file. So, what do I need to do to fix this? and why isn't this fixed for me already? pam and openssh cooperate just fine on other platforms. ;) Thanks .. -- Erik Fichtner Security Administrator, ServerVault, Inc. 703-333-5900 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:13:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lcmail2.lc.ca.gov (lcmail2.lc.ca.gov [165.107.12.11]) by hub.freebsd.org (Postfix) with ESMTP id 6AB0837B4C5 for ; Thu, 19 Oct 2000 09:13:24 -0700 (PDT) Received: from CONVERSION-DAEMON by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) id <0G2O00D01QDFCN@lcmail2.lc.ca.gov> for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 09:12:52 -0700 (PDT) Received: from tagalong ([165.107.42.182]) by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) with SMTP id <0G2O00CK4QDED8@lcmail2.lc.ca.gov> for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 09:12:50 -0700 (PDT) Date: Thu, 19 Oct 2000 09:13:12 -0700 From: Drew Tomlinson Subject: VMware? (Was RE: installation woes) In-reply-to: To: 'Rick Hamell' Cc: freebsd-questions@freebsd.org Message-id: <8C224DC088D8D111B67D0000F67AC17E01A93F4B@ldcmsx01.lc.ca.gov> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset="us-ascii" Content-transfer-encoding: 7bit Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > -----Original Message----- > From: Rick Hamell [mailto:hamellr@heorot.1nova.com] > Sent: Tuesday, October 17, 2000 8:19 AM > To: xavian anderson macpherson > Cc: freebsd-questions@freebsd.org > Subject: Re: installation woes [big snip of annoying whining :) ] > > the floppies! i am impressed with the fact that NT will allow me to > > run other OS's concurrently. let freebsd do that, and then those > > folks can talk about superiority. they can't even make their own > > floppies! if you know how to boot freebsd inside of NT, i would > > appreciate hearing from you. also i need to know how to > read the data > > on my freebsd slice(s) from windows NT. > > You're looking for VMware... it runs anything on anything... In > fact NT will run better on FreeBSD then NT by itself from what I've > seen. It's obvious that you've a skewed outlook on how the computer It sounds too good to be true. Is VMware a real thing? Where can I find more information on it. Thanks, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:15:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nbf-27.umd.edu (nbf-27.umd.edu [128.8.38.27]) by hub.freebsd.org (Postfix) with ESMTP id 6805A37B4CF for ; Thu, 19 Oct 2000 09:15:00 -0700 (PDT) Received: from glue.umd.edu (localhost [127.0.0.1]) by nbf-27.umd.edu (8.11.1/8.11.1) with ESMTP id e9JGEBm37609; Thu, 19 Oct 2000 12:14:27 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <39EF1DD3.731586B4@glue.umd.edu> Date: Thu, 19 Oct 2000 12:14:11 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Michael Urban Cc: Geoff Cooper , freebsd-questions@FreeBSD.ORG Subject: Re: Enlightenment problems References: <001201c0396d$7019ee60$020aa8c0@aims.private> <20001018220225.B748@tznet.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You'll want to try upgrading to enlightenment 16.5 too, lots of bug fixes and improvements. Michael Urban wrote: > > Only one thing really comes to mind. Enlightenment uses imlib, and > older verions of imlib had a memory leak in them. Now really, I am > just drawing straws here, but that is the first thing that came to my > mind. You might check what version of imlib you have, and perhaps > rebuild enlightenment with a newer version. No gurantees that will > accomplish anything at all. But it's just a thought. > > P.S. In the future, please give a subject when posting to the list. > > On Thu, Oct 19, 2000 at 12:39:34PM +1100, Geoff Cooper wrote: > > > > Hi all, > > after using Enlightenment for a couple of months I've > > been getting a strange problem. When it starts up it's fine, > > but after it has run for a while you can no longer move windows > > around by holding down ALT and holding down left-mouse. > > Has anyone heard of this problem, and hopefully it's solution? > > > > The only solution I have at the moment is to shutdown x. I've > > tried using the 'restart enlightenment' option on the menu to > > no avail. > > > > Versions: Enlightenment version 0.16.3, BSD version 4.0-RELEASE > > > > > > > > Geoff Cooper > > geoff@aims.com.au > > | Microsoft: Where do you want to go today? > > | Linux: Where do you want to go tomorrow? > > | BSD: Are you guys coming, or what? > > > > > > > > Geoff Cooper > > geoff@aims.com.au > > | Microsoft: Where do you want to go today? > > | Linux: Where do you want to go tomorrow? > > | BSD: Are you guys coming, or what? > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:17:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id 2B2F737B4CF for ; Thu, 19 Oct 2000 09:17:17 -0700 (PDT) Received: (qmail 15599 invoked from network); 19 Oct 2000 16:17:08 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 19 Oct 2000 16:17:08 -0000 Received: (qmail 18710 invoked from network); 19 Oct 2000 16:16:44 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 19 Oct 2000 16:16:44 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBL8C9>; Thu, 19 Oct 2000 17:15:44 +0100 Message-ID: From: Daniel Bye To: 'Drew Tomlinson' Cc: freebsd-questions@freebsd.org Subject: RE: VMware? (Was RE: installation woes) Date: Thu, 19 Oct 2000 17:10:23 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cd /usr/ports/emulators/vmware2 I didn't ever manage to get it working under FreeBSD, but then I didn't try that hard :o) What I have seen of it, if you have a capable system, it is pretty cool. Dan > -----Original Message----- > From: Drew Tomlinson [mailto:drewt@writeme.com] > Sent: Thursday, October 19, 2000 5:13 PM > To: 'Rick Hamell' > Cc: freebsd-questions@freebsd.org > Subject: VMware? (Was RE: installation woes) > > > > > > -----Original Message----- > > From: Rick Hamell [mailto:hamellr@heorot.1nova.com] > > Sent: Tuesday, October 17, 2000 8:19 AM > > To: xavian anderson macpherson > > Cc: freebsd-questions@freebsd.org > > Subject: Re: installation woes > > [big snip of annoying whining :) ] > > > > the floppies! i am impressed with the fact that NT will > allow me to > > > run other OS's concurrently. let freebsd do that, and then those > > > folks can talk about superiority. they can't even make their own > > > floppies! if you know how to boot freebsd inside of NT, i would > > > appreciate hearing from you. also i need to know how to > > read the data > > > on my freebsd slice(s) from windows NT. > > > > You're looking for VMware... it runs anything on anything... In > > fact NT will run better on FreeBSD then NT by itself from what I've > > seen. It's obvious that you've a skewed outlook on how the computer > > It sounds too good to be true. Is VMware a real thing? > Where can I find > more information on it. > > Thanks, > > Drew > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:17:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bumper.jellybaby.net (bumper.jellybaby.net [194.159.247.1]) by hub.freebsd.org (Postfix) with ESMTP id 69AE837B479 for ; Thu, 19 Oct 2000 09:17:34 -0700 (PDT) Received: (from simond@localhost) by bumper.jellybaby.net (8.9.2/8.9.2) id RAA20124; Thu, 19 Oct 2000 17:17:22 +0100 (BST) (envelope-from simond) Date: Thu, 19 Oct 2000 17:17:22 +0100 From: simond@irrelevant.org To: Drew Tomlinson Cc: "'Rick Hamell'" , freebsd-questions@FreeBSD.ORG Subject: Re: VMware? (Was RE: installation woes) Message-ID: <20001019171722.I7373@irrelevant.org> References: <8C224DC088D8D111B67D0000F67AC17E01A93F4B@ldcmsx01.lc.ca.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <8C224DC088D8D111B67D0000F67AC17E01A93F4B@ldcmsx01.lc.ca.gov>; from drewt@writeme.com on Thu, Oct 19, 2000 at 09:13:12AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 09:13:12AM -0700, Drew Tomlinson wrote: > > -----Original Message----- > > From: Rick Hamell [mailto:hamellr@heorot.1nova.com] > > Sent: Tuesday, October 17, 2000 8:19 AM > > To: xavian anderson macpherson > > Cc: freebsd-questions@freebsd.org > > Subject: Re: installation woes > > [big snip of annoying whining :) ] > > > > the floppies! i am impressed with the fact that NT will allow me to > > > run other OS's concurrently. let freebsd do that, and then those > > > folks can talk about superiority. they can't even make their own > > > floppies! if you know how to boot freebsd inside of NT, i would > > > appreciate hearing from you. also i need to know how to > > read the data > > > on my freebsd slice(s) from windows NT. > > > > You're looking for VMware... it runs anything on anything... In > > fact NT will run better on FreeBSD then NT by itself from what I've > > seen. It's obvious that you've a skewed outlook on how the computer > > It sounds too good to be true. Is VMware a real thing? Where can I find > more information on it. Try http://www.vmware.com/ -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:19:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lcmail2.lc.ca.gov (lcmail2.lc.ca.gov [165.107.12.11]) by hub.freebsd.org (Postfix) with ESMTP id AA3FD37B479 for ; Thu, 19 Oct 2000 09:19:20 -0700 (PDT) Received: from CONVERSION-DAEMON by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) id <0G2O00D01QNGC9@lcmail2.lc.ca.gov> for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 09:18:53 -0700 (PDT) Received: from tagalong ([165.107.42.182]) by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) with SMTP id <0G2O00C93QNENV@lcmail2.lc.ca.gov> for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 09:18:51 -0700 (PDT) Date: Thu, 19 Oct 2000 09:19:13 -0700 From: Drew Tomlinson Subject: RE: VMware? (Was RE: installation woes) In-reply-to: To: 'Daniel Bye' Cc: freebsd-questions@freebsd.org Message-id: <8C224DC088D8D111B67D0000F67AC17E01A93F4C@ldcmsx01.lc.ca.gov> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset="iso-8859-1" Content-transfer-encoding: 7bit Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thank you. I'll take a look! Drew > -----Original Message----- > From: Daniel Bye [mailto:Daniel.Bye@uk.uu.net] > Sent: Thursday, October 19, 2000 9:10 AM > To: 'Drew Tomlinson' > Cc: freebsd-questions@freebsd.org > Subject: RE: VMware? (Was RE: installation woes) > > > cd /usr/ports/emulators/vmware2 > > I didn't ever manage to get it working under FreeBSD, but > then I didn't try > that hard :o) What I have seen of it, if you have a capable > system, it is > pretty cool. > > Dan > > > -----Original Message----- > > From: Drew Tomlinson [mailto:drewt@writeme.com] > > Sent: Thursday, October 19, 2000 5:13 PM > > To: 'Rick Hamell' > > Cc: freebsd-questions@freebsd.org > > Subject: VMware? (Was RE: installation woes) > > > > > > > > > > > -----Original Message----- > > > From: Rick Hamell [mailto:hamellr@heorot.1nova.com] > > > Sent: Tuesday, October 17, 2000 8:19 AM > > > To: xavian anderson macpherson > > > Cc: freebsd-questions@freebsd.org > > > Subject: Re: installation woes > > > > [big snip of annoying whining :) ] > > > > > > the floppies! i am impressed with the fact that NT will > > allow me to > > > > run other OS's concurrently. let freebsd do that, and > then those > > > > folks can talk about superiority. they can't even make > their own > > > > floppies! if you know how to boot freebsd inside of NT, i would > > > > appreciate hearing from you. also i need to know how to > > > read the data > > > > on my freebsd slice(s) from windows NT. > > > > > > You're looking for VMware... it runs anything on anything... In > > > fact NT will run better on FreeBSD then NT by itself from > what I've > > > seen. It's obvious that you've a skewed outlook on how > the computer > > > > It sounds too good to be true. Is VMware a real thing? > > Where can I find > > more information on it. > > > > Thanks, > > > > Drew > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:21:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lcmail2.lc.ca.gov (lcmail2.lc.ca.gov [165.107.12.11]) by hub.freebsd.org (Postfix) with ESMTP id 3D1A937B479 for ; Thu, 19 Oct 2000 09:21:51 -0700 (PDT) Received: from CONVERSION-DAEMON by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) id <0G2O00D01QRJIX@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.ORG; Thu, 19 Oct 2000 09:21:23 -0700 (PDT) Received: from tagalong ([165.107.42.182]) by lcmail2.lc.ca.gov (PMDF V5.2-27 #40821) with SMTP id <0G2O00CQBQRID8@lcmail2.lc.ca.gov> for freebsd-questions@FreeBSD.ORG; Thu, 19 Oct 2000 09:21:18 -0700 (PDT) Date: Thu, 19 Oct 2000 09:21:41 -0700 From: Drew Tomlinson Subject: RE: VMware? (Was RE: installation woes) In-reply-to: <20001019171722.I7373@irrelevant.org> To: simond@irrelevant.org Cc: freebsd-questions@FreeBSD.ORG Message-id: <8C224DC088D8D111B67D0000F67AC17E01A93F4D@ldcmsx01.lc.ca.gov> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset="us-ascii" Content-transfer-encoding: 7bit Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG And thank you as well. :) Drew > -----Original Message----- > From: simond@irrelevant.org [mailto:simond@irrelevant.org] > Sent: Thursday, October 19, 2000 9:17 AM > To: Drew Tomlinson > Cc: 'Rick Hamell'; freebsd-questions@FreeBSD.ORG > Subject: Re: VMware? (Was RE: installation woes) > > > On Thu, Oct 19, 2000 at 09:13:12AM -0700, Drew Tomlinson wrote: > > > -----Original Message----- > > > From: Rick Hamell [mailto:hamellr@heorot.1nova.com] > > > Sent: Tuesday, October 17, 2000 8:19 AM > > > To: xavian anderson macpherson > > > Cc: freebsd-questions@freebsd.org > > > Subject: Re: installation woes > > > > [big snip of annoying whining :) ] > > > > > > the floppies! i am impressed with the fact that NT > will allow me to > > > > run other OS's concurrently. let freebsd do that, and > then those > > > > folks can talk about superiority. they can't even make > their own > > > > floppies! if you know how to boot freebsd inside of NT, i would > > > > appreciate hearing from you. also i need to know how to > > > read the data > > > > on my freebsd slice(s) from windows NT. > > > > > > You're looking for VMware... it runs anything on anything... In > > > fact NT will run better on FreeBSD then NT by itself from > what I've > > > seen. It's obvious that you've a skewed outlook on how > the computer > > > > It sounds too good to be true. Is VMware a real thing? > Where can I find > > more information on it. > > Try http://www.vmware.com/ > > -- > Simon Dick simond@irrelevant.org > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:27:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from malkav.snowmoon.com (ip-208-20-126-237.cdcsd.k12.ny.us [208.20.126.237]) by hub.freebsd.org (Postfix) with SMTP id 2D1F337B4CF for ; Thu, 19 Oct 2000 09:27:23 -0700 (PDT) Received: (qmail 53314 invoked by uid 1003); 19 Oct 2000 16:27:00 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 19 Oct 2000 16:27:00 -0000 Date: Thu, 19 Oct 2000 12:27:00 -0400 (EDT) From: "Marius M. Rex" To: freeBSD-questions@FreeBSD.org Subject: TCP-ack traffic 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 heard somewhere recently that Yahoo had come up with a modification to FreeBSD to help protect against DOS attacks. It waits until the first true byte of actual data comes through before opening a path to it's services. Is this code available, and where so? I also heard say that it was ported over to a Linux kernel patch. Basically at my company we have clustered webservers. Some clusters serve images, others static pages, others handle databse calls, etc. We have recently had some problems where one server in a cluster gets a request, spawns a bunch of child processes for Apache to server the requests, but then gets no data for a significant amount of time. (say 30 seconds) That leaves the server that is trying to serve those requests crunching processor time for no reason, and other servers sitting around and doing nothing. Webservers end up acting non-responcive, and my beeper goes off. (You see where my priorities lie, don't-cha?) Looking at the numbers, I think this happens to to our linux boxes more then our FreeBSD boxes. (We have more linux boxes then FreeBSD. We use FreeBSD for the -heavy- traffic servers, and linux for everything else.) It may be that we just have so many more linux boxes that then numbers are obviously skewed. Or perhaps this modification has just been added to the FreeBSd code? (I am tracking stable) Unfortunately I am working on rumors. If any of my babbling rings a bell for someone, could they please point me to more info? I also want to track down that Linux kernel patch, if I can. ------------------------------------------------------------------------- Marius M. Rex "Well," Brahma said, "even after ten thousand explanations, a fool is no wiser, but an intelligent man requires only two thousand five hundred." -- The Mahabharata To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:28:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id 2CC9037B4E5 for ; Thu, 19 Oct 2000 09:28:15 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 8FAE23293; Wed, 18 Oct 2000 08:51:45 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 7CB843292; Wed, 18 Oct 2000 08:51:45 +0000 (GMT) Date: Wed, 18 Oct 2000 08:51:45 +0000 (GMT) From: Rick Hamell To: Drew Tomlinson Cc: freebsd-questions@freebsd.org Subject: Re: VMware? (Was RE: installation woes) In-Reply-To: <8C224DC088D8D111B67D0000F67AC17E01A93F4B@ldcmsx01.lc.ca.gov> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > You're looking for VMware... it runs anything on anything... In > > fact NT will run better on FreeBSD then NT by itself from what I've > > seen. It's obvious that you've a skewed outlook on how the computer > > It sounds too good to be true. Is VMware a real thing? Where can I find > more information on it. I'd start at www.vmware.com :) Failing that a quick search through the ports and the VMware description should give you a link. Rick ******************************************************************* Rick's FreeBSD Web page http://heorot.1nova.com/freebsd Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware ***FreeBSD - The Power to Serve! http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:37:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fastlane.de (fastlane.webmad.de [194.77.138.32]) by hub.freebsd.org (Postfix) with ESMTP id 6EE6937B479 for ; Thu, 19 Oct 2000 09:37:17 -0700 (PDT) Received: from fastlanep2x7jl (really [194.9.194.3]) by fastlane.de via smail with smtp id (Debian Smail3.2.0.101) for ; Thu, 19 Oct 2000 18:36:04 +0200 (CEST) Message-ID: <012301c039ea$a7494020$03c209c2@fastlanep2x7jl> From: "Christian Holz" To: Subject: DES and MD5 Date: Thu, 19 Oct 2000 18:35:55 +0200 Organization: Fastlane GmbH 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.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there! I've got a question concerning DES and MD5 encryption: I've installed my server using DES encryption. Many of our customers are runnung a perl program which uses crypt() to create the passwords for .htaccess files. Since apache doesn't support DES encryptet passwords i'd like to change to MD5 encryption or at least force perl/frontpage to use MD5 (Crypt::PasswdMD5 should be doing this, but instead returns DES encryptet passwords). I couldn't find any hint in the manual how to do it. There aren't many accounts on the server, so i wouldn't mind to create all user accounts again. The only thing I did was changing the links in /usr/lib/ for libcrypt etc. But that didn't help. Any advice welcome!!! Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 9:44: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from taxismtp1.alchemyfx.com (taxismtp1.alchemy.net [209.132.220.151]) by hub.freebsd.org (Postfix) with ESMTP id DB00237B4E5 for ; Thu, 19 Oct 2000 09:43:58 -0700 (PDT) Received: from joey (1Cust237.tnt2.long-beach.ca.da.uu.net [63.28.162.237]) by taxismtp1.alchemyfx.com (8.9.3/8.9.3) with SMTP id JAA16418 for ; Thu, 19 Oct 2000 09:43:57 -0700 Reply-To: From: "Joey Garcia" To: Subject: Samba 2.0.7 homes share problem with NT 4.0 w/ serv pack 6 (follow up) Date: Thu, 19 Oct 2000 09:38:54 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG For those of that took interest in my first posting of this question, I'd like to let you know that I (thanks to Mike Fedyk from the Samba list) have found the answer to my particular problem with Samba. Those of you with Samba experience already know about the [homes] share and what it does exactly. Well, say your logged into an NT4 box as administrator and you're trying to access your administrator share on the FreeBSD box (assuming you have an administrator home directory and all the entries to the password lists are in place) it will not work. The reason is that share names cannot be longer than 12 characters. Administrator is a 13 character share name, therefore it will not work. What I ended up doing is creating a user map. I had to basically rename administrator to ntadmin on the FreeBSD box so that the share name can be a shorter name. Then with the username map = filename directive in the smb.conf I created a file name that mapped my unix user name to my windows user name. I'll attach my smb.conf file at the end of this message. Now it works just fine. Sure I see my home directory share as ntadmin now, but I can deal with that. At least now the [homes] share works the way it's meant to work. Thanks to those of you that helped me with this problem. I'm sure you also overlooked the character length of the share such as I did. It seems as though the character length limitation isn't stated in the Samba documentation so I guess it's not entirely our faults. :) But then again, I bet an NT admin would have known of the limitation but that's another story. Thanks for the help! Joey # smb.conf file # Global parameters [global] workgroup = MIS netbios name = FREEBSD server string = Samba Server interfaces = xl0 encrypt passwords = Yes log file = /var/log/log.%m max log size = 50 os level = 33 local master = No dns proxy = No username map = /usr/local/etc/username.map [homes] comment = Home Directories writeable = Yes browseable = No [printers] comment = All Printers path = /var/spool/samba printable = Yes browseable = No [tmp] comment = Temporary file space path = /tmp writeable = Yes guest ok = Yes # usermap.map file # unix user = windows user ntadmin = administrator To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:16:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www15.gmx.net (www.gmx.net [194.221.183.55]) by hub.freebsd.org (Postfix) with SMTP id 577CE37B479 for ; Thu, 19 Oct 2000 10:16:01 -0700 (PDT) Received: (qmail 20503 invoked by uid 0); 19 Oct 2000 17:15:57 -0000 Date: Thu, 19 Oct 2000 19:15:57 +0200 (MEST) From: Kai Kaminski To: freebsd-questions@freebsd.org MIME-Version: 1.0 Subject: using X without a mouse X-Priority: 3 (Normal) X-Authenticated-Sender: #0007158753@gmx.net X-Authenticated-IP: [131.220.116.29] Message-ID: <20415.971975757@www15.gmx.net> X-Mailer: WWW-Mail 1.5 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, is there a window manager which can be used 'keyboard only'? Does perhaps someone have a working version of plwm ("The Pointless Window Manager")? Bye, Kai Kaminski To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:17:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 52DEA37B4D7 for ; Thu, 19 Oct 2000 10:17:35 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 1C3481F22; Thu, 19 Oct 2000 10:17:31 -0700 (PDT) Subject: Re: BSD Router progress made but... In-Reply-To: <000101c039aa$0e2938e0$320aa8c0@PIII> "from Julian Steinberg at Oct 19, 2000 01:53:30 am" To: Julian@imaginetrix.com Date: Thu, 19 Oct 2000 10:17:31 -0700 (PDT) Cc: questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001019171731.1C3481F22@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > I found and followed documentation and believe I have most everything > configured correctly except when I reboot I get the error : > > "natd: unable to bind divert socket: address already in use" > > any suggestions? Make sure you only have one copy of natd running. -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Love is like pi--natural, irrational, and very important." -- Lisa Hoffman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:21:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 93B7A37B4C5 for ; Thu, 19 Oct 2000 10:21:15 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 5AB841F2A; Thu, 19 Oct 2000 10:21:15 -0700 (PDT) Subject: Re: DES and MD5 In-Reply-To: <012301c039ea$a7494020$03c209c2@fastlanep2x7jl> "from Christian Holz at Oct 19, 2000 06:35:55 pm" To: Christian Holz Date: Thu, 19 Oct 2000 10:21:15 -0700 (PDT) Cc: freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001019172115.5AB841F2A@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > Hi there! > > I've got a question concerning DES and MD5 encryption: > > I've installed my server using DES encryption. > Many of our customers are runnung a perl program which uses crypt() to > create the passwords for .htaccess files. > Since apache doesn't support DES encryptet passwords i'd like to > change to How did you come up with this? I'm not entirely sure, but I think Apache just uses crypt() like everybody else. I don't see a reason why it would want to roll its own. Also, some other operating systems only have support for DES (NetBSD, I think, is one), and Apache runs fine on them. > MD5 encryption or at least > force perl/frontpage to use MD5 (Crypt::PasswdMD5 should be doing this, but > instead returns DES encryptet passwords). > > I couldn't find any hint in the manual how to do it. There aren't many > accounts on the server, so i wouldn't mind to create all user > accounts again. > > The only thing I did was changing the links in /usr/lib/ for > libcrypt etc. Make sure the links are pointing to the MD5 libraries (libscrypt*). Note that if all of your passwords are DES, once you do that, nobody will be able to log in. You don't need to recreate the accounts, but you do need to reset the passwords (don't forget root, too!). Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "Love is the triumph of imagination over intelligence." -- Henry Louis Mencken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:23:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from VL-MS-MR003.sc1.videotron.ca (relais.videotron.ca [24.201.245.36]) by hub.freebsd.org (Postfix) with ESMTP id E7FAA37B4CF for ; Thu, 19 Oct 2000 10:23:37 -0700 (PDT) Received: from anathema ([24.201.57.157]) by VL-MS-MR003.sc1.videotron.ca (Netscape Messaging Server 4.15) with SMTP id G2NNML01.NIE for ; Wed, 18 Oct 2000 22:15:57 -0400 Message-ID: <001301c03972$bdbfea20$9d39c918@videotron.ca> From: "Joel Dinel" To: Subject: Booting FreeBSD from a slave disk Date: Wed, 18 Oct 2000 22:17: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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've got a 10GB HD as slave on the primary IDE controller. I'd like to set up FreeBSD on that disk without touching the primary master disk. How can I set (and where do I install it) Booteasy to accomplish this ? Thanks ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:24:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 1EFF737B479; Thu, 19 Oct 2000 10:24:41 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id DCE561F30; Thu, 19 Oct 2000 10:24:40 -0700 (PDT) Subject: Re: NFS client process becomes D ??? In-Reply-To: <20001019081855.5410.qmail@web2103.mail.yahoo.com> "from xiyuan qian at Oct 19, 2000 01:18:55 am" To: xiyuan qian Date: Thu, 19 Oct 2000 10:24:40 -0700 (PDT) Cc: freebsd-isp@freebsd.org, freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001019172440.DCE561F30@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, I have a box using nfs-client. That is mounting > another server's export dir to this box. Everything > works well except that when the box up for one or two > days, the program using the mounted file usually > becomes D in "ps -ax" processed showing. And I can not > kill the process to re-run this program. Why? What's You can't kill a process in the disk state. > wrong with my NFS client or what's wrong with this > program? Did the NFS server go down? Under certain circumstances(sp?), if the NFS server goes down, the client will just keep trying. Unless you mounted the filesystem with the 'intr' option, I don't think you can effectively stop it. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. Drive defensively; buy a tank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:25:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from x400gate-01.ic.gc.ca (x400gate-01.ic.gc.ca [192.197.186.121]) by hub.freebsd.org (Postfix) with ESMTP id DFC4E37B4D7 for ; Thu, 19 Oct 2000 10:25:20 -0700 (PDT) Received: by x400gate-01.ic.gc.ca with Internet Mail Service (5.5.2650.21) id ; Thu, 19 Oct 2000 13:19:54 -0400 Message-ID: <065DE87AF392D411A3D800204840A0152E7F6C@cbbc805.cb.ic.gc.ca> From: Dinel.Joel@ic.gc.ca To: kint@videotron.ca, freebsd-questions@FreeBSD.ORG Subject: RE: Booting FreeBSD from a slave disk Date: Thu, 19 Oct 2000 13:26:04 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please disregard this post. This is the message I sent from home = yesterday that just made it in ... ERgg.... Jo=EBl Dinel=20 Competition Bureau=20 Tel. (819) 997-2514=20 Fax (819) 953-9010=20 dinel.joel@ic.gc.ca=20 -----Original Message----- From: Joel Dinel [mailto:kint@videotron.ca] Sent: October 18, 2000 10:18 PM To: freebsd-questions@FreeBSD.ORG Subject: Booting FreeBSD from a slave disk I've got a 10GB HD as slave on the primary IDE controller. I'd like to = set up FreeBSD on that disk without touching the primary master disk. How = can I set (and where do I install it) Booteasy to accomplish this ? Thanks ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 10:36:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 527DA37B4CF for ; Thu, 19 Oct 2000 10:36:46 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 153E71F35; Thu, 19 Oct 2000 10:36:46 -0700 (PDT) Subject: Re: su root exploit? In-Reply-To: <20001019103754.A667@tznet.com> "from Michael Urban at Oct 19, 2000 10:37:54 am" To: Michael Urban Date: Thu, 19 Oct 2000 10:36:45 -0700 (PDT) Cc: freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001019173646.153E71F35@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Does this particular root explit affect su on FreeBSD? The article > says it affects all versions of su. I built and tried to use the code > they included on my system, but I couldn't get anything to happen. DISCLAIMER: I'm not a security expert. I just spent five minutes looking at the exploit, and below are my conclusions. Don't take this as an official statement. - I think the "all versions of su" at the top refer to Linux versions of su. Considering that they expect it to be in /bin, they certainly haven't tried it on any of the BSDs. - Although the actual code to be executed is in the environment, the format string bug appears to be in the handling of the "-u" flag to su. I can't find a reference to it in the manual pages. Conclusion (again, not official): This particular exploit probably can't be used against FreeBSD. That's not to say that a similar problem doesn't exist which will allow this exploit to work with slight modifications. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. If two wrongs don't make a right, try three! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 11:36:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web120.yahoomail.com (web120.mail.yahoo.com [205.180.60.121]) by hub.freebsd.org (Postfix) with SMTP id 9F5E037B4C5 for ; Thu, 19 Oct 2000 11:36:14 -0700 (PDT) Received: (qmail 26092 invoked by uid 60001); 19 Oct 2000 18:36:13 -0000 Message-ID: <20001019183613.26091.qmail@web120.yahoomail.com> Received: from [24.21.87.62] by web120.yahoomail.com; Thu, 19 Oct 2000 11:36:13 PDT Date: Thu, 19 Oct 2000 11:36:13 -0700 (PDT) From: Chris Dempsey Subject: Re: GeForce 2 To: Bjorn Tornqvist Cc: Pete Young , xpert@xfree86.org, 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 --- Bjorn Tornqvist wrote: > > Just a quick note that it works fine for me (and it > didn't before I > "patched" it as described (many thanks!)), > > FreeBSD 4.1.1 (couple of days old) > XFree86 4.0.1_3 (also a couple of days old - > installed from /usr/ports) > SMP kernel > 3D Blaster GeForce 2 GTS > > Actually, I've had some conversation with NVidia > about this, and it was > supposed to work with the GeForce256 driver all > along, but it apparently > had a bug. > > > > That is really bizzare. According to NVidia it > > should not even be working. I noticed also that > you > > said you are using XFree86 4.1. Aren't they only > at > > 4.0.1 right now? I have tried several different > ways > > of doing it, using FreeBSD-4.1.1-Stable and the > xc-all > > source, both from yesterday. When I do it > normally, > > it complains about not finding a kernel driver. > When > > I changed the #include vbe.h in the nv_include.h > file > > it craps out saying > > (II) Loading > > /usr/X11R6/lib/modules/drivers/nvidia_drv.o > > (II) Module nvidia: vendor="NVIDIA Corporation" > > compiled for 4.0.1, module version = 1.0.5 > > (II) Loading > /usr/X11R6/lib/modules/drivers/mga_drv.o > > (II) Module mga: vendor="The XFree86 Project" > > compiled for 4.0.1c, module version = > 1.0.0 > > (II) Loading > > /usr/X11R6/lib/modules/drivers/glint_drv.o > > (II) Module glint: vendor="The XFree86 Project" > > compiled for 4.0.1c, module version = > 1.0.0 > > (II) Loading > /usr/X11R6/lib/modules/drivers/nv_drv.o > > Duplicate symbol RivaEnterLeave in > > /usr/X11R6/lib/modules/drivers/nv_drv.o > > Also defined in > > /usr/X11R6/lib/modules/drivers/nvidia_drv.o > > Fatal server error: > > Module load failure > > > > I am using the ASUS V7700, a GTS-based card, so > > nothing > > should be different. I've cc'd this to both > xpert@ > > xfree86.org and freebsd-questions@freebsd.org. > > > > __________________________________________________ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message I tried again, using the recipe. Still getting the same error as above. Any hackers out there that can help me with this? I am not using a Riva card, so perhaps that section of the driver can be deleted? __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 11:44:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id 9C21D37B4D7 for ; Thu, 19 Oct 2000 11:44:18 -0700 (PDT) Received: from phobos.IRO.UMontreal.CA (IDENT:root@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.9.3/8.9.3) with ESMTP id OAA19807 for ; Thu, 19 Oct 2000 14:44:09 -0400 Received: from localhost (beaupran@localhost) by phobos.IRO.UMontreal.CA (8.9.3/8.9.3) with ESMTP id OAA24048 for ; Thu, 19 Oct 2000 14:44:08 -0400 Full-Name: Antoine Beaupre Date: Thu, 19 Oct 2000 14:44:08 -0400 (EDT) From: Antoine Beaupre To: freebsd-questions@freebsd.org Subject: Adding the package concept to the ports collection 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 everybody! I ask this question here by default, please, redirect me to proper resource if this one's not. I was wondering if it would be possible to add the 'package' concept to the ports collection in a sense that the database would include the name of the package or if there's none, why. An install target would then only have to download the package and save the compilation time. I also think that the package would be smaller than the source, and so, faster to download. I think the port collection as it is now has several drawbacks, in terms of a software indexing facility, that is. Upgrading ports is a nightmare. The more we go, the more various ports have dependency lists that grow and grow. So when a single package such as GTK or ORBit gets updated, a whole chunk of ports have to be updated too. The problem is that "updated" means: 1- download the new distfiles. 2- remove the older distfiles (not necessarly obvious since the databse does not contain the older filenames!) 3- recompile the dependencies. 4- install the dependecies With the package system integrated into the ports, it would be simpler: 1- download the packages 2- install the packages We could still keep the older port system for packages that do not allow freebsd to distribute packages. The problem with the current package system is that it does not resolve dependency problems by itself as the ports does. How could it anyways? A package is all it says: a package of information regarding a particular piece of software. It might include information on which other packages are needed by this one, but nothing else. Another thing about the port collection is that there is (yet) no wformal way to "update" a package. We all probably have benn through the same thing: installing a package that depends on an outdated one with the ports usually lead to duplicates packages installed, if one is not careful . When the port collection was a bit older this was a nightmare with no way out. But now, with the appearance of things such as 'pkg_version(1)' and the "PORTVERSION" variable , we could start considering adding some flexibility to the ports tree. Is it me or all this woudn't be that hard to implement? Just a PACKAGENAME variable along with a version variable of some sort (PORTVERSION would probably be OK) and a PACKAGE_SITE hierarchy of variables. That would be the biggest desgin problem... And for the "updateing" part, one would need to add the location of the pkg database with some variable and have something to check the existence of a "PACKAGENAME"* dir. Of course, dependy problems would have to be addressed, but I won't get into this here.... I would be personnally ready to work on the ports for this to happen but I want to know wether or not this would be a good idea, or if there's already some work in pregress. Thanks for any comment A. Si l'image donne l'illusion de savoir C'est que l'adage pretend que pour croire, L'important ne serait que de voir Lofofora To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12: 5:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id F1DF837B4CF for ; Thu, 19 Oct 2000 12:05:11 -0700 (PDT) Received: from jade (jade.cs.binghamton.edu [128.226.140.161]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with ESMTP id PAA18543; Thu, 19 Oct 2000 15:05:09 -0400 (EDT) Date: Thu, 19 Oct 2000 15:05:19 -0400 (EDT) From: Zhiui Zhang X-Sender: zzhang@jade To: Alfred Perlstein Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kick start installation In-Reply-To: <20001018160012.N272@fw.wintelcom.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 Wed, 18 Oct 2000, Alfred Perlstein wrote: > * Zhiui Zhang [001018 15:17] wrote: > > > > I hope that FreeBSD has or will have the ability to do kick start > > installation - After you boot from CD-ROM, it will install everything > > automatically according to previously made selectiosn (saved in a > > configuration file). This will make maintenance of many machines easy. > > This is available via the sysinstall.cfg file, have a look at > http://people.freebsd.org/~alfred/pxe/ > > it has a sample sysinstall.cfg that you can use along with other > suggestions on how to make a completely hands-off install process. > I would like to try it. Can you give me more clarification: (1) Can I use a Sun workstation as the server? Note that I am only a normal user of the Sun workstation, but I guess that I can put all install files under my directory. I also do not use DHCP - my freebsd boxes will use fixed IP addresses. (2) I wonder whether the install.cfg is produced by /stand/sysinstall. If so, I should be able to install one machine manually and the rest will be installed kick-start. (3) Does this process also include disk slicing/partitioning? Thanks. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:21:24 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.screaming.net (smtp.screaming.net [212.49.224.20]) by hub.freebsd.org (Postfix) with ESMTP id 60B1F37B4C5 for ; Thu, 19 Oct 2000 12:21:22 -0700 (PDT) Received: from lexx.my.domain (dyn37-ras47.screaming.net [212.188.142.37]) by smtp.screaming.net (8.9.3/8.9.3) with SMTP id TAA27499 for ; Thu, 19 Oct 2000 19:24:45 GMT From: John Murphy To: questions@freebsd.org Subject: man2html misses lines and man man2html fails Date: Thu, 19 Oct 2000 20:20:53 +0100 Organization: The Organisation Reply-To: bigotfo@bigfoot.com Message-ID: X-Mailer: Forte Agent 1.8/32.548 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 Using FreeBSD-4.1 and man2html via man.cgi I find that when it converts man pages (eg: tcpdump) that have page numbering, it misses the last line of text above the page break, and the first line of text below the page break. Unfortunately #man man2html fails with: zcat: /usr/local/man/cat1/man2html.1.gz: not in gzip format #cd /usr/local/man/cat1 #file man2html.1.gz man2html.1.gz: data Any clues appreciated John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:31: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id ECBD137B479 for ; Thu, 19 Oct 2000 12:31:04 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13mLP1-0000cu-01; Thu, 19 Oct 2000 21:30:59 +0200 Received: (from daemon@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9JJR8Z74560 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 21:27:08 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Commandline Access to a Serial Port Date: Thu, 19 Oct 2000 19:27:08 +0000 (UTC) Message-ID: <8snhuc$28nn$1@kemoauc.mips.inka.de> References: <5.0.0.25.0.20001019093826.00a83588@mail.ideal.net.au> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chris Aitken wrote: > Does anyone have any suggestions as to a tool I can use on my FreeBSD 3.4 > Stable box that can allow me to communicate with my Serial Port ? cu, tip, ports/comms/kermit. The latter is scriptable. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:37:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from operamail.com (OperaMail.com [199.29.68.79]) by hub.freebsd.org (Postfix) with ESMTP id 7EBC137B4CF for ; Thu, 19 Oct 2000 12:37:23 -0700 (PDT) X-WM-Posted-At: operamail.com; Thu, 19 Oct 00 15:37:22 -0400 X-WebMail-UserID: jud Date: Thu, 19 Oct 2000 15:37:22 -0400 From: Jud Fink To: freebsd-questions@FreeBSD.ORG X-EXP32-SerialNo: 00000000 Subject: Fixing MAKEDEV After Upgrade Message-ID: <39F0E951@operamail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: InterChange (Hydra) SMTP v3.61.08 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm a complete newbie (FreeBSD is my 1st Unix, installed 3 weeks ago), so the usual thousand pardons. I updated from 4.1 to latest 4-STABLE using cvsup and MAKE WORLD. Now using mergemaster to finish up before reconfiguring kernel and rebooting. Through series of bad choices, screwed up MAKEDEV with mergemaster - merged and edited rather than installing update. Now have mostly blank MAKEDEV file and don't think (not at home at the moment) I have a "clean" updated MAKEDEV left in var/tmp. What to do to recreate/install updated MAKEDEV? This is on 12gb FreeBSD partition that shares a 20 gb HD with Windows. Also have 2gb HD with limited remaining space that has FreeBSD 4.1 installed. TIA, Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:38:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 8200537B479 for ; Thu, 19 Oct 2000 12:38:06 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id PAA29887 for ; Thu, 19 Oct 2000 15:38:04 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id PAA23872 for ; Thu, 19 Oct 2000 15:37:35 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2OZVE00.S9G; Thu, 19 Oct 2000 15:38:02 -0400 Message-ID: <39EF4DAB.BABA081A@mitre.org> Date: Thu, 19 Oct 2000 15:38:19 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: bigotfo@bigfoot.com Cc: questions@FreeBSD.ORG Subject: Re: man2html misses lines and man man2html fails References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Murphy wrote: > > Using FreeBSD-4.1 and man2html via man.cgi I find that when it > converts man pages (eg: tcpdump) that have page numbering, it > misses the last line of text above the page break, and the first > line of text below the page break. > > Unfortunately #man man2html fails with: > zcat: /usr/local/man/cat1/man2html.1.gz: not in gzip format > > #cd /usr/local/man/cat1 > #file man2html.1.gz > man2html.1.gz: data > > Any clues appreciated > John. Try looking at the first few lines of the file. That should give you a clue what type of file it is. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:46: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web106.yahoomail.com (web106.mail.yahoo.com [205.180.60.73]) by hub.freebsd.org (Postfix) with SMTP id AF59C37B4D7 for ; Thu, 19 Oct 2000 12:46:05 -0700 (PDT) Received: (qmail 19433 invoked by uid 60001); 19 Oct 2000 19:46:05 -0000 Message-ID: <20001019194605.19432.qmail@web106.yahoomail.com> Received: from [24.21.87.62] by web106.yahoomail.com; Thu, 19 Oct 2000 12:46:05 PDT Date: Thu, 19 Oct 2000 12:46:05 -0700 (PDT) From: Chris Dempsey Subject: Re: GeForce 2 To: Pete Young , freebsd-questions@freebsd.org, xpert@xfree86.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --- Pete Young wrote: > On Tue, 17 Oct 2000 22:20:24 -0500, Ian Fricker > wrote: > > >Hello, > >I recently installed freebsd. I have a Creative > Labs 3D Annihilator 2 with Nvidia's GeForce 2 > chipset. It isn't supported, and I was wondering if > you knew if there were bsd drivers for my card and > where I can get them. I've looked several places on > the web and haven't been able to find any, but maybe > I'm overlooking something. If you need any more > info, let me know. Thanks. > >Ian > > > > I managed to get the geforce 2 under Freebsd 4.1 and > XFree86 4.1. > The drivers have been written but the last XFree86 > release does not > contain them. > > I used the FreeBSD port system. Here are the steps > that worked. > > cd /usr/ports/x11/XFree86-4 > make patch > > I then copied these files from the XFree86.org > anoncvs repository to > the same > directories under /usr/ports/x11/XFree86-4/work/ > > xc/programs/Xserver/hw/xfree86/common/xf86PciInfo.h > > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_driver.c > > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_include.h > > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_local.h > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_type.h > > xc/programs/Xserver/hw/xfree86/drivers/nv/riva_tbl.h > xc/programs/Xserver/hw/xfree86/drivers/nv/nv_xaa.c > > Edit nv_include.h and remove the line #include > "vbe.h" . Finish > with > > cd /usr/ports/x11/XFree86-4 > make install > XFree86 -configure > > And it worked! > > I got it to work! Woo hoo! A little bit of cvs help was all I needed. This should really be made into a FAQ or something. A lot of people are having trouble getting their cards to work. I'll post this to xpert and freebsd-questions. Thanks again! __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:46:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1b.mail.yahoo.com (smtp3.mail.yahoo.com [128.11.68.135]) by hub.freebsd.org (Postfix) with SMTP id ECDD437B4C5 for ; Thu, 19 Oct 2000 12:46:18 -0700 (PDT) Received: from 216-102-143-156.flashpc.com (HELO btr0727) (216.102.143.156) by smtp.mail.vip.suc.yahoo.com with SMTP; 19 Oct 2000 19:46:17 -0000 X-Apparently-From: Message-ID: <000501c03a05$26c3fd80$c2bafea9@btr0727> From: "Baatar S." To: "Joe Loughry" Cc: References: <200010181729.LAA02443@miranda.dnvr.uswest.net> Subject: Re: Unexpected PPP termination: Unacceptable Address !? What it might be? Date: Thu, 19 Oct 2000 12:41:51 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday, October 18, 2000 10:29 AM Joe Loughry wrote: > > I encountered the same problem last night, trying to install 4.1.1-RELEASE by FTP > over a PPP dialup connection to my provider. > > The solution is to give the following command to PPP: > > After PPP displays "Phase: PPP Started (interactive mode)", at the prompt that > says "ppp ON laptop> ", enter this: > > set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0 > > It's the "/0" at then end of the first two addresses that is the important part. > The actual addresses you specify do not matter at all. The "/0" at the end of > each says "I don't care about any of the bits of this address" -- so PPP is free > to change it. Thank you, Joe. You're right. Actually, I found the solution earlier while browsing through ppp man page. And I hadn't had to type those zeros and ones, I just typed 'set ifaddr', and everything worked out. Interesting, huh? Anyway, it's better to play safe and type all the fictitious numbers, as you suggest. > > I think you can do the same trick from the sysinstall screen where you enter > your hostname, domain, nameserver address, etc., by specifying your IP address > as 10.0.0.1/0 and your gateway address as 10.0.0.2/0 but I haven't tried this. > I'll try it tonight, as I ran out of disk space on the laptop partway through > the install and need to try it again anyway. > > -Joe > I've tried that, too. But sysinstall wouldn't undersdand /0 at the end of IP address. At least in 3.4-RELEASE (PAO-nized) sysinstall thinks this is a bad address. > "Baatar" wrote: > > Hello, > > I'm trying to install FreeBSD-3.4 (PAO distribution) on my 486 > subnotebook > through FTP using an PCMCIA modem. Everything goes OK until it comes to > ppp. It starts, negotiates the IP address, and as soon as it recieves > the IP > address it dies. Following is the output of ppp session: > > Working in interactive mode > Using interface: tun0 > Warning: No default entry found in config file. > Warning: ParseAddr: DHCP: Bad address > Warning: set ifaddr: Failed 1 # ?! Maybe the problem lies here? > Phase: PPP Started (interactive mode). > ppp ON korvin> dial > Phase: bundle; Establish > Phase: deflink: closed -> opening > Phase: deflink: Connected! > Phase: deflink: opening -> dial > Phase: Phone: 1234567 > ppp ON korvin> Phase: deflink: dial -> carrier > Phase: deflink: /dev/cuaa3: CD detected > Phase: deflink: carrier -> login > Phase: deflink: login -> lcp > Phase: bundle: Authenticate > Phase: deflink: his = PAP, mine = none > Phase: Pap Output: my_auth_name ******** > Ppp ON korvin> Phase: Pap Input: SUCCESS (Login Succeeded) > Phase: deflink: lcp -> open > Phase: bundle: Network > PPp ON korvin> Phase: 216.102.143.194: Unacceptable address! > Phase; bundle: terminate > Phase: deflink: open -> lcp > ppp ON korvin> Phase: deflink: Carrier lost > Phase: deflink: Disconnected! > Phase: deflink: lcp -> logout > Phase: deflink: Disconnected! > Phase: deflink: logout -> hangup > Phase: deflink: Connect time: 27 secs: 345 octets in, 284 octets out > Phase: total 23 bytes/sec, peak 123 bytes/sec on Tue Aug 22 08:11:20 > 2000 > Phase: deflink: hangup -> closed > Phase: bundle: Dead > ... Besides I had to give ppp 'enable dns' command, otherwise all the efforts would be gone. But if you specify your DNS server, netmask, and default gateway correctly in the sysinstall screen, I don't think there would be much problem with installing over FTP. I guess, mine was "little bit" misconfigured. ;-) BTW, about the other ways of installing FreeBSD (particularly on laptop). I was trying to install it from my desktop PC using PCMCIA network card which is Portable Add-Ons IC Card+, but PAO seems can't bring up the interface. However after installing FreeBSD (with PAO-enabled kernel) from ftp over ppp connection, I was able to get it working. PAO does dums out CIS-tulip of my network card, but fails to assign resources to it, giving me a message saying 'particular card is not in card database. Is there anyway to getting such a card working at the install stage? I've been through PAO man pages but can't find a glue. IMHO pccardc could do some jobs in this direction. Any ideas? Thanks in advance, and best regards. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:46:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fremont.bolingbroke.com (adsl-216-102-90-210.dsl.snfc21.pacbell.net [216.102.90.210]) by hub.freebsd.org (Postfix) with ESMTP id F215337B4D7 for ; Thu, 19 Oct 2000 12:46:45 -0700 (PDT) Received: from fremont.bolingbroke.com (fremont.bolingbroke.com [216.102.90.210]) by fremont.bolingbroke.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id MAA82218; Thu, 19 Oct 2000 12:46:42 -0700 (PDT) Date: Thu, 19 Oct 2000 12:46:42 -0700 (PDT) From: Ken Bolingbroke To: Jud Fink Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Fixing MAKEDEV After Upgrade In-Reply-To: <39F0E951@operamail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You have one in your sources, copy it over from /usr/src/etc/MAKEDEV. Ken On Thu, 19 Oct 2000, Jud Fink wrote: > I'm a complete newbie (FreeBSD is my 1st Unix, installed 3 weeks ago), so the > usual thousand pardons. > > I updated from 4.1 to latest 4-STABLE using cvsup and MAKE WORLD. Now using > mergemaster to finish up before reconfiguring kernel and rebooting. Through > series of bad choices, screwed up MAKEDEV with mergemaster - merged and edited > rather than installing update. Now have mostly blank MAKEDEV file and don't > think (not at home at the moment) I have a "clean" updated MAKEDEV left in > var/tmp. > > What to do to recreate/install updated MAKEDEV? > > This is on 12gb FreeBSD partition that shares a 20 gb HD with Windows. Also > have 2gb HD with limited remaining space that has FreeBSD 4.1 installed. > > TIA, > > Jud > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:48: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from virtual.sysadmin-inc.com (lists.sysadmin-inc.com [209.16.228.140]) by hub.freebsd.org (Postfix) with ESMTP id C6B4A37B4D7 for ; Thu, 19 Oct 2000 12:48:01 -0700 (PDT) Received: from 98wkst ([10.10.1.71]) by virtual.sysadmin-inc.com (8.9.1/8.9.1) with SMTP id PAA15670 for ; Thu, 19 Oct 2000 15:48:02 -0400 Reply-To: From: "Peter Brezny" To: Subject: 4.1.1 hang after install on machine where 3.5.1 works fine Date: Thu, 19 Oct 2000 15:48:08 -0400 Message-ID: <000801c03a05$81e09340$47010a0a@fire.sysadmininc.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 CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i have an old hp vectra 486/66 that 3.5.1 installs fine one, however, when i install 4.1.1 on it, just after it says BTX loader 1.00 BTX version is 1.01 it spits out a lot of junk/numbers and ends with BTX halted. I have an identical problem with an old 486 laptop that i was able to get to bring down 4.1.1 through it's pc network card, and the install completes successfully, but the BTX halts. any suggestions would be greatly appreciated. Peter Brezny SysAdmin Services, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 12:53:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f176.law9.hotmail.com [64.4.9.176]) by hub.freebsd.org (Postfix) with ESMTP id 30A7537B479 for ; Thu, 19 Oct 2000 12:53:38 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Oct 2000 12:53:38 -0700 Received: from 207.91.82.137 by lw9fd.law9.hotmail.msn.com with HTTP; Thu, 19 Oct 2000 19:53:38 GMT X-Originating-IP: [207.91.82.137] From: "Tom Hines" To: freebsd-questions@freebsd.org Subject: 40upgrade kit Date: Thu, 19 Oct 2000 15:53:38 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Oct 2000 19:53:38.0097 (UTC) FILETIME=[45C29A10:01C03A06] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. Relative newbie here. I was browsing the freebsd web site the other day and noticed the section on upgrade kits at http://www.freebsd.org/ports/. Because I run 4.0-RELEASE, I installed the 4.0 to 4-stable upgrade kit, and now I can't install any ports. It fails on fetch with the message "bad system call". I noticed that one of the files upgraded by the kit was libc.so, which is a symlink that was pointing to libc.so.3 and now points to the new libc.so.4. I suspect that might be the problem. I tried deleting the package with pkg_delete, but got a message saying that was impossible because it would render my system useless. What can I do? Can I just point libc.so back to libc.so.3? I vaguely recall a utility to do such things called ldd or something but I can't remember. tia, tom _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 13: 8:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 7A16937B479; Thu, 19 Oct 2000 13:08:16 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Thu, 19 Oct 2000 16:08:04 -0400 Message-ID: <39EF5505.7B7C2BFD@tellurian.com> Date: Thu, 19 Oct 2000 16:09:41 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: FreeBSD questions , freebsd-hackers@freebsd.org Subject: Routing issue with cable modem Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I guess no one knew the answer to my original question about getting RCN cable modem (with analog upstream line dialup) to work. So here's a somewhat simplified question. I narrowed the problem down to routing. Cable modem does dial out when I try to ping something on it's subnet (10.17.56.###), however it does not respond to any broadcast ARP queries about location of DNS server. Goal -- to add cable modem as the default gateway to internet. Symptom -- "add net default: gateway 10.17.56.XXX: Network is unreachable" Problem -- I think modem gateway cannot be added because it's on a different subnet then my NICs. Attempted -- aliasing ed0 to modem subnet.... all 10.17.56 IPs seem to be occupied. Any ideas would be greatly appreciated. It's been 2 weeks now that I'm stuck to using windows box :( Marko P.S. If someone on the freebsd-hackers mailing list knows the answer, please reply to my address because I'm not subscribed to freebsd-hackers (yet). P.S.S. On a side note: it would be very interesting to know how MSWin98 does it's network setup, that it has no trouble using the modem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 13: 9:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from VL-MS-MR001.sc1.videotron.ca (relais.videotron.ca [24.201.245.36]) by hub.freebsd.org (Postfix) with ESMTP id E0BDE37B4F9 for ; Thu, 19 Oct 2000 13:09:16 -0700 (PDT) Received: from anathema ([24.201.57.157]) by VL-MS-MR001.sc1.videotron.ca (Netscape Messaging Server 4.15) with SMTP id G2NMNS05.DNX for ; Wed, 18 Oct 2000 21:55:04 -0400 Message-ID: <000b01c0396f$d2e43c60$9d39c918@videotron.ca> From: "Joel Dinel" To: Subject: FreeBSD on slave IDE disk Date: Wed, 18 Oct 2000 21:56:40 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Here's my setup : Primary IDE Master: 13GB HD Primary IDE Slave: 10GB HD Secondary IDE Master: CDROM Secondary IDE Slave: CDRW I want to use my Primary IDE slave disk for FreeBSD. Can it be done? Where (MBR on master, MBR on slave?) would I want to install BootEasy ? Thanks ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 13:37:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id B5A4D37B4FE for ; Thu, 19 Oct 2000 13:37:10 -0700 (PDT) Received: from parish ([62.253.89.30]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001019203709.JRXR19709.mta05-svc.ntlworld.com@parish>; Thu, 19 Oct 2000 21:37:09 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e9JKaYe01814; Thu, 19 Oct 2000 21:36:34 +0100 (BST) (envelope-from mark) Date: Thu, 19 Oct 2000 21:36:28 +0100 From: Mark Ovens To: Rick Hamell Cc: Alexander Rudak , freebsd-questions@freebsd.org Subject: Re: your mail Message-ID: <20001019213628.C255@parish> References: <0447.001019@ro.com.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: ; from hamellr@heorot.1nova.com on Wed, Oct 18, 2000 at 06:55:24AM +0000 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Oct 18, 2000 at 06:55:24AM +0000, Rick Hamell wrote: > > Excel 97 and Excel 2000 both have publish to web page options. > FWIW, I find Staroffice to be vastly superior than Excel97 in producing HTML versions of Excel spreadsheets. > Rick > > > ******************************************************************* > Rick's FreeBSD Web page http://heorot.1nova.com/freebsd > Ace Logan's Hardware Guide http://www.shatteredcrystal.net/hardware > ***FreeBSD - The Power to Serve! http://www.freebsd.org > > On Thu, 19 Oct 2000, Alexander Rudak wrote: > > > Hello everybody, > > > > Is there any tool to convert Microsoft Excel files to the CSV or HTML? > > I would appreciate any cooperation or ideas. > > The puprose is that user can edit data from Excel and than it is immediately > > posted to the web site. > > > > -- > > Best regards, > > Alexander mailto:ru@ro.com.ua > > > > > > > > > > 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 -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 13:42:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 92FB437B4C5; Thu, 19 Oct 2000 13:42:21 -0700 (PDT) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.9.3/8.9.3) with ESMTP id NAA48556; Thu, 19 Oct 2000 13:42:13 -0700 (PDT) Message-ID: <39EF5FF7.BF89947D@transbay.net> Date: Thu, 19 Oct 2000 13:56:23 -0700 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Rob Winters Cc: freebsd-questions@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: new IBM Thinkpads rejecting FreeBSD References: <5.0.0.25.0.20001018145632.00ac76f8@mail.fiderus.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Rob Winters wrote: > Someone else wrote: > > > The rep at IBM Tech Support claims that IBM is aware of this problem. He > > > claimed that FreeBSD was "writing the boot sector somewhere above the usual > > > boot sector location". His explanation doesn't make sense, and he was > > unable > > > to provide me with any specifics... > Jonas Bulow wrote: > I just killed a ThinkPad A20p by installing 4.1-RELEASE. Apparently IBM allows > for boot sector programs of a certain size, i.e. "LILO-sized". After that, the > BIOS stores power management information ON THE BOOT SECTOR. If the BIOS finds > unpalatable information in that location (presumably whatever FreeBSD puts > there), > then it gets very confused: I recovered a system recently on which the 'booteasy' boot sector had gotten clobbered. Rewriting the boot0 file, I noticed it is 1024 and not 512 bytes - the 2nd sector on the disk is used as well as the 1st. That explains both the above remarks. I'd guess LILO's boot block is one sector long. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 13:50:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 67EB237B4F9 for ; Thu, 19 Oct 2000 13:50:18 -0700 (PDT) Received: from parish ([62.253.89.30]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001019205016.GAQO16640.mta01-svc.ntlworld.com@parish>; Thu, 19 Oct 2000 21:50:16 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e9JKnhb01892; Thu, 19 Oct 2000 21:49:43 +0100 (BST) (envelope-from mark) Date: Thu, 19 Oct 2000 21:49:37 +0100 From: Mark Ovens To: "Andresen,Jason R." Cc: bigotfo@bigfoot.com, questions@freebsd.org Subject: Re: man2html misses lines and man man2html fails Message-ID: <20001019214937.D255@parish> References: <39EF4DAB.BABA081A@mitre.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <39EF4DAB.BABA081A@mitre.org>; from jandrese@mitre.org on Thu, Oct 19, 2000 at 03:38:19PM -0400 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 03:38:19PM -0400, Andresen,Jason R. wrote: > > > John Murphy wrote: > > > > Using FreeBSD-4.1 and man2html via man.cgi I find that when it > > converts man pages (eg: tcpdump) that have page numbering, it > > misses the last line of text above the page break, and the first > > line of text below the page break. > > > > Unfortunately #man man2html fails with: > > zcat: /usr/local/man/cat1/man2html.1.gz: not in gzip format > > > > #cd /usr/local/man/cat1 > > #file man2html.1.gz > > man2html.1.gz: data > > > > Any clues appreciated > > John. > > Try looking at the first few lines of the file. That should give > you a clue what type of file it is. > It will have "Formatting page, please wait..." at the start. The man2html port has just been fixed. What was happening was that STDERR was being closed before man.cgi called man(1). If the catpage didn't exist you get the "Formatting....." message but, since STDERR is closed, it goes to STDOUT and so ends up at the start of the catpage, before the output from gzip. Then when man(1) tries to view the page gzip(1) can't understand the file. If you can't update the port just move the line ``close(STDERR)'' in man.cgi thus: # Convert output from man to html #-------------------------------- From here>>># close(STDERR); open(MANPRG, "-|") or exec($ManPrg, @manargs); $Man2Html::InFH = \*MANPRG; # set input filehandle require $ManConvPrg or error("Problem executing man->HTML converter"); To here>>> close(STDERR); The problem with missing lines can be cured by setting ``-topm'' and ``-botm'' to 0, either in man.cgi itself (the ``@ConvArgs'' line) or as an option when man.cgi is run. I haven't figured out exactly why this occurs, but it seems to be due to FreeBSD manpages being in 2 formats; -mdoc and -man. > -- > _ _ _ ___ ____ ___ ______________________________________ > / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org > / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those > /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 13:51:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r14.mail.aol.com (imo-r14.mx.aol.com [152.163.225.68]) by hub.freebsd.org (Postfix) with ESMTP id 5429E37B4CF for ; Thu, 19 Oct 2000 13:51:08 -0700 (PDT) Received: from froekjaerf@netscape.net by imo-r14.mx.aol.com (mail_out_v28.31.) id n.5.16cf5b (16229) for ; Thu, 19 Oct 2000 16:51:00 -0400 (EDT) Received: from netscape.com (aimmail05.aim.aol.com [205.188.144.197]) by air-in02.mx.aol.com (v76_r1.8) with ESMTP; Thu, 19 Oct 2000 16:51:00 -0400 Date: Thu, 19 Oct 2000 16:51:00 -0400 From: froekjaerf@netscape.net (Flemming Froekjaer) To: freebsd-questions@freebsd.org Subject: Noise instead of sound Mime-Version: 1.0 Message-ID: <25D636C0.782D39AA.0F2A144B@netscape.net> X-Mailer: Franklin Webmailer 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have put the pcm driver in the kernel, and made the snd0 device. I can run cdcontrol and get it to play cd's. But if i try to run amp i get noise instead of music. There is no error messages. What could be wrong? \Flemming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:11: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vcnet.com (mail.vcnet.com [209.239.239.15]) by hub.freebsd.org (Postfix) with SMTP id BA17737B4C5 for ; Thu, 19 Oct 2000 14:11:04 -0700 (PDT) Received: (qmail 46020 invoked by uid 1001); 19 Oct 2000 21:11:03 -0000 Date: Thu, 19 Oct 2000 14:11:03 -0700 From: Jon Rust To: freebsd-questions@freebsd.org Subject: PMAP_SHPGPERPROC and vm.v_free_ Message-ID: <20001019141103.C32978@mail.vcnet.com> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: http://www.freebsd.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG from LINT on 4.1.1-STABLE (built last night) >>> Set the number of PV entries per process. Increasing this can stop panics related to heavy use of shared memory. However, that can (combined with large amounts of physical memory) cause panics at boot time due the kernel running out of VM space. If you're tweaking this, you might also want to increase the sysctls "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target". <<< Are any guidelines available here? If I increase the PMAP_SHPGPERPROC value by 200 (to 400), what should I increase the vm.v_free_* values to? Currently they are: vm.v_free_reserved: 164 vm.v_free_min: 481 vm.v_free_target: 1607 Any pointers greatly appreciated. Jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:27:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortes.cibnor.mx (cortes.cibnor.mx [200.23.161.225]) by hub.freebsd.org (Postfix) with ESMTP id AD03137B4E5 for ; Thu, 19 Oct 2000 14:27:49 -0700 (PDT) Received: from localhost (cestrada@localhost) by cortes.cibnor.mx (8.9.3/8.9.3) with ESMTP id PAA24736; Thu, 19 Oct 2000 15:27:02 -0600 (MDT) Date: Thu, 19 Oct 2000 15:27:02 -0600 (MDT) From: "Cesar Estrada [INF]" To: achilov@granch.ru Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DHCP In-Reply-To: <39EEE3E4.5078CAEF@sentry.granch.ru> 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 > > /usr/ports/net/isc-dhcp2 or /usr/ports/net/isc-dhcp3. Download and read > manuals first time. When you do this, I can help you to create your own > dhcpd.conf file. Ok, I think, I have dhcpd, but I need to create a dhcpd.conf file, do you have a example file ?? Thanks. PD. Do you have any page for download dhcp.?? > -- > With Best Regards. > Rashid N. Achilov (RNA1-RIPE), Brainbench ID: 28514 > Granch Ltd. system administrator, e-mail: achilov@granch.ru > tel/fax (383-2) 24-2363 > Ing. Cesar Estrada Enriquez Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico Division de Diseno Tecnologico, Redes. Tel.(112) 5 36 33 Ext. 3177,3124 E-mail: cestrada@cibnor.mx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:40:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.ruraltel.net (mail.ruraltel.net [24.225.0.33]) by hub.freebsd.org (Postfix) with ESMTP id 549CC37B4CF for ; Thu, 19 Oct 2000 14:40:37 -0700 (PDT) Received: from darryl ([24.225.30.240]) by mail1.ruraltel.net (Post.Office MTA v3.5.3 release 223 ID# 0-68608U15000L4100S0V35) with SMTP id net for ; Wed, 18 Oct 2000 15:48:35 -0500 Reply-To: From: "Darryl Hoar" To: Subject: Web Based Mail Date: Wed, 18 Oct 2000 15:46:45 -0500 Message-ID: <001301c03944$879481f0$0701a8c0@ruraltel.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, 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 Greetings, I know I have seen this on the list, but can't seem to find it. I am setting up a mail server for a school (for free), and thought that a web based mail service (ie, like hotmail) where students and faculty could use a browser to send/receive , etc internet email. Anybody have a recommendation on software (ports or otherwise)? The school has a policy and would like to be able to put together information if a student is abusing email, and thus violating policy. Any ideas greatly appreciated. thanks, Darryl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:41:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id 56DC637B4D7 for ; Thu, 19 Oct 2000 14:41:35 -0700 (PDT) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.9.3/8.8.7) with ESMTP id RAA41607; Thu, 19 Oct 2000 17:41:34 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Thu, 19 Oct 2000 17:41:22 -0400 (EDT) From: Stephen Hovey To: Darryl Hoar Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Web Based Mail In-Reply-To: <001301c03944$879481f0$0701a8c0@ruraltel.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 Forget CWMAIL - its bug riddled. On Wed, 18 Oct 2000, Darryl Hoar wrote: > Greetings, > I know I have seen this on the list, but can't seem to find it. I am > setting up a mail server for a school (for free), and thought that > a web based mail service (ie, like hotmail) where students and > faculty could use a browser to send/receive , etc internet email. > > Anybody have a recommendation on software (ports or otherwise)? > > The school has a policy and would like to be able to put together > information if a student is abusing email, and thus violating policy. > > Any ideas greatly appreciated. > > thanks, > Darryl > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:41:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bogon.kjsl.com (bogon.kjsl.com [206.55.236.195]) by hub.freebsd.org (Postfix) with ESMTP id E3FF837B4D7 for ; Thu, 19 Oct 2000 14:41:40 -0700 (PDT) Received: from karenium.kjsl.com (karenium.kjsl.com [206.55.236.202]) by bogon.kjsl.com (8.9.3/8.9.3) with ESMTP id OAA01544; Thu, 19 Oct 2000 14:41:39 -0700 (PDT) Received: (from javier@localhost) by karenium.kjsl.com (8.9.3/8.9.3) id OAA00689; Thu, 19 Oct 2000 14:41:39 -0700 (PDT) From: Javier Henderson MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.27283.246529.659884@karenium.kjsl.com> Date: Thu, 19 Oct 2000 14:41:39 -0700 (PDT) To: Cc: Subject: Web Based Mail In-Reply-To: <001301c03944$879481f0$0701a8c0@ruraltel.net> References: <001301c03944$879481f0$0701a8c0@ruraltel.net> X-Mailer: VM 6.75 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Darryl Hoar writes: > Greetings, > I know I have seen this on the list, but can't seem to find it. I am > setting up a mail server for a school (for free), and thought that > a web based mail service (ie, like hotmail) where students and > faculty could use a browser to send/receive , etc internet email. > > Anybody have a recommendation on software (ports or otherwise)? I like IMP. See http://www.horde.org/ It requires PHP. -jav To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:49:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.telestream.com (mail.telestream.com [205.238.4.5]) by hub.freebsd.org (Postfix) with ESMTP id 3C46737B4C5 for ; Thu, 19 Oct 2000 14:49:24 -0700 (PDT) Received: from localhost (keith@localhost) by mail.telestream.com (8.11.0/8.11.0) with ESMTP id e9JLmmw23128; Thu, 19 Oct 2000 14:48:48 -0700 Date: Thu, 19 Oct 2000 14:48:47 -0700 (PDT) From: To: Darryl Hoar Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Web Based Mail In-Reply-To: <001301c03944$879481f0$0701a8c0@ruraltel.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 I found neomail to be increadibly easy to setup and install. Keith ================================= Keith W. At the helm My non work related site www.cydonia.net ================================= On Wed, 18 Oct 2000, Darryl Hoar wrote: > Greetings, > I know I have seen this on the list, but can't seem to find it. I am > setting up a mail server for a school (for free), and thought that > a web based mail service (ie, like hotmail) where students and > faculty could use a browser to send/receive , etc internet email. > > Anybody have a recommendation on software (ports or otherwise)? > > The school has a policy and would like to be able to put together > information if a student is abusing email, and thus violating policy. > > Any ideas greatly appreciated. > > thanks, > Darryl > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 14:55:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vcnet.com (mail.vcnet.com [209.239.239.15]) by hub.freebsd.org (Postfix) with SMTP id B2A8C37B479 for ; Thu, 19 Oct 2000 14:55:39 -0700 (PDT) Received: (qmail 73275 invoked by uid 1001); 19 Oct 2000 21:55:38 -0000 Date: Thu, 19 Oct 2000 14:55:38 -0700 From: Jon Rust To: freebsd-questions@freebsd.org Subject: Re: Web Based Mail Message-ID: <20001019145538.B57892@mail.vcnet.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <001301c03944$879481f0$0701a8c0@ruraltel.net> <14831.27283.246529.659884@karenium.kjsl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14831.27283.246529.659884@karenium.kjsl.com>; from javier@KJSL.COM on Thu, Oct 19, 2000 at 02:41:39PM -0700 X-Operating-System: http://www.freebsd.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 02:41:39PM -0700, Javier Henderson wrote: > Darryl Hoar writes: > > Greetings, > > I know I have seen this on the list, but can't seem to find it. I am > > setting up a mail server for a school (for free), and thought that > > a web based mail service (ie, like hotmail) where students and > > faculty could use a browser to send/receive , etc internet email. > > > > Anybody have a recommendation on software (ports or otherwise)? > > I like IMP. See http://www.horde.org/ > > It requires PHP. And IMAP IIRC. I use Mailman from Endymion: http://endymion.com/products/mailman/ Not real super cool, but it works through POP3, so a) works with many servers, and b) it can live on another machine besides your mail server. But c), it's a little slow. I'm planning on switching to sqwebmail soon: http://www.inter7.com/sqwebmail/ Just a simple, fast interface. Requires qmail. jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15: 1: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vcnet.com (mail.vcnet.com [209.239.239.15]) by hub.freebsd.org (Postfix) with SMTP id A2AA537B4C5 for ; Thu, 19 Oct 2000 15:00:59 -0700 (PDT) Received: (qmail 76383 invoked by uid 1001); 19 Oct 2000 22:00:59 -0000 Date: Thu, 19 Oct 2000 15:00:59 -0700 From: Jon Rust To: "Cesar Estrada [INF]" Cc: freebsd-questions@freebsd.org Subject: Re: DHCP Message-ID: <20001019150059.C57892@mail.vcnet.com> Mail-Followup-To: "Cesar Estrada [INF]" , freebsd-questions@freebsd.org References: <39EEE3E4.5078CAEF@sentry.granch.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from cestrada@cibnor.mx on Thu, Oct 19, 2000 at 03:27:02PM -0600 X-Operating-System: http://www.freebsd.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 03:27:02PM -0600, Cesar Estrada [INF] wrote: > > > > /usr/ports/net/isc-dhcp2 or /usr/ports/net/isc-dhcp3. Download and read > > manuals first time. When you do this, I can help you to create your own > > dhcpd.conf file. > > Ok, I think, I have dhcpd, but I need to create a dhcpd.conf file, do you > have a example file ?? Here's what mine looks like: # Configuration file for ISC dhcpd server-identifier host.domain.com; # option definitions common to all supported networks... option domain-name "domain.com"; option domain-name-servers 192.168.100.254; option subnet-mask 255.255.255.0; option routers 192.168.100.254; default-lease-time 72000; max-lease-time 144000; #Dynamic allocation to non registered machines from a pool subnet 192.168.100.0 netmask 255.255.255.0 { range 192.168.100.10 192.168.100.50; } # The subnet attached to dc1 doesn't want DHCP # but dhcpd wants us to define it anyway subnet 10.0.0.0 netmask 255.255.255.248 { } # Fixed IP addresses can also be specified for hosts. #host luser { # hardware ethernet 00:01:02:03:04:05; # fixed-address luser.domain.com; #} HTH, jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15: 1:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id 3680B37B4D7 for ; Thu, 19 Oct 2000 15:01:43 -0700 (PDT) Received: (qmail 23620 invoked from network); 19 Oct 2000 22:01:40 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 19 Oct 2000 22:01:40 -0000 Received: (qmail 17492 invoked from network); 19 Oct 2000 22:01:56 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 19 Oct 2000 22:01:56 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.0/8.11.0) id e9JM1Yb09559; Thu, 19 Oct 2000 15:01:34 -0700 (PDT) (envelope-from mikko) Date: Thu, 19 Oct 2000 15:01:34 -0700 (PDT) From: Mikko Tyolajarvi Message-Id: <200010192201.e9JM1Yb09559@explorer.rsa.com> To: marko@tellurian.com Cc: freebsd-questions@freebsd.org Subject: Re: Routing issue with cable modem Newsgroups: local.freebsd-questions References: <39EF5505.7B7C2BFD@tellurian.com> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In local.freebsd-questions you write: [...] >Goal -- to add cable modem as the default gateway to internet. >Symptom -- "add net default: gateway 10.17.56.XXX: Network is >unreachable" [...] [...] >P.S.S. On a side note: it would be very interesting to know how MSWin98 >does it's network setup, that it has no trouble using the modem. Check in the Control Panel, somewhere in the incomprehensible mess under "Network", also run "winipcfg" and "netstat -r". Whatever values windows is using for IP, netmask, default gateway, dns server etc should work just fine with FreeBSD as well. If values are retrieved via DHCP, you'll have to run DHCP on FreeBSD too. $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15:13:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r11.mail.aol.com (imo-r11.mx.aol.com [152.163.225.65]) by hub.freebsd.org (Postfix) with ESMTP id 14B7737B4CF for ; Thu, 19 Oct 2000 15:13:45 -0700 (PDT) Received: from Amandasmn@aol.com by imo-r11.mx.aol.com (mail_out_v28.31.) id n.a5.c9b6cc2 (4204) for ; Thu, 19 Oct 2000 18:13:31 -0400 (EDT) From: Amandasmn@aol.com Message-ID: Date: Thu, 19 Oct 2000 18:13:31 EDT Subject: (no subject) To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Windows AOL sub 114 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To whom it may concern, My name is Dane Dedmon and I am in college. I was interested in being an advertisement for you. I would like to wear a t-shirt with your company on it. I feel that I would make a good advertisement as I am walking around the college campus. If you approve of this, my name and address is as follows. Dane Dedmon Wetzel Hall 1223 710 W. University Dr. Macomb, IL 61455 Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15:35:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from giroc.albury.net.au (giroc.albury.NET.AU [203.15.244.13]) by hub.freebsd.org (Postfix) with ESMTP id 47CB737B4CF for ; Thu, 19 Oct 2000 15:35:30 -0700 (PDT) Received: (from nicks@localhost) by giroc.albury.net.au (8.9.3/8.9.3) id JAA59542; Fri, 20 Oct 2000 09:35:28 +1100 (EST) Date: Fri, 20 Oct 2000 09:35:28 +1100 From: Nick Slager To: Kal Torak Cc: freebsd-questions Subject: Re: FreeBSD with PC-Cards Message-ID: <20001020093527.A55490@albury.net.au> References: <39EC4CC4.BB576E22@quake.com.au> <20001018095911.D91516@albury.net.au> <39ED04E5.A8F0DEE@quake.com.au> <20001018142717.A25002@albury.net.au> <39ED9701.6D3B244@quake.com.au> <20001019101314.C25138@albury.net.au> <39EEEB69.CDB07B92@quake.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39EEEB69.CDB07B92@quake.com.au>; from kaltorak@quake.com.au on Thu, Oct 19, 2000 at 10:39:05PM +1000 X-Homer: Whoohooooooo! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Kal Torak (kaltorak@quake.com.au): > Yeah, according to IBM its a O2Micro OZ6832/6833 CardBus > Controller... > It dose have a USB port... Is USB ethernet very developed > yet? Some are supported, yes. See ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-stable/src/release/texts/HARDWARE.TXT Regards, Nick -- From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15:37:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from titan.ols.com (titan.ols.com [207.112.223.10]) by hub.freebsd.org (Postfix) with ESMTP id E058537B4C5 for ; Thu, 19 Oct 2000 15:37:12 -0700 (PDT) Received: from spaz (d2.as0.burl.wi.voyager.net [169.207.96.66]) by titan.ols.com (8.9.3/8.9.3) with SMTP id RAA41303; Thu, 19 Oct 2000 17:37:46 -0500 (CDT) (envelope-from adam@wiredrave.com) From: "Adam Fladwood" To: "The Hermit Hacker" Cc: Subject: RE: Jail! Date: Fri, 20 Oct 2000 17:36:05 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.2919.6700 Importance: Normal In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't think that I worded my problem too well as I read over it. I've read the manual and everything, however when I get to the part where you have to use the make commands it failes. I get make: don't know how to make hierarchy. Stop. Is there a Makefile that needs to be in /usr/src that I don't have? If so do you know where I can obtain it? Thanks, Adam -----Original Message----- From: The Hermit Hacker [mailto:scrappy@hub.org] Sent: Thursday, October 19, 2000 6:34 AM To: Adam Fladwood Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Jail! from the man page: D=/here/is/the/jail cd /usr/src make hierarchy DESTDIR=$D On Fri, 20 Oct 2000, Adam Fladwood wrote: > Hey everyone, > > I'm trying to setup jail on FreeBSD 4.1, however I'm a little confused as to > where I'm supposed to grab the Makefile from. I mean, how can I do the: make > hierarchy? If there's something that I'm missing let me know, thanks! > > Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15:40:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from titan.ols.com (titan.ols.com [207.112.223.10]) by hub.freebsd.org (Postfix) with ESMTP id 509AA37B479 for ; Thu, 19 Oct 2000 15:40:40 -0700 (PDT) Received: from spaz (d2.as0.burl.wi.voyager.net [169.207.96.66]) by titan.ols.com (8.9.3/8.9.3) with SMTP id RAA41362 for ; Thu, 19 Oct 2000 17:41:26 -0500 (CDT) (envelope-from adam@wiredrave.com) From: "Adam Fladwood" To: Subject: RE: (no subject) Date: Fri, 20 Oct 2000 17:39:46 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.2919.6700 Importance: Normal In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Whoa... now this is funny, espcially the fact it's coming from an AOL address...heh. Adam -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Amandasmn@aol.com Sent: Thursday, October 19, 2000 5:14 PM To: freebsd-questions@FreeBSD.ORG Subject: (no subject) Importance: Low To whom it may concern, My name is Dane Dedmon and I am in college. I was interested in being an advertisement for you. I would like to wear a t-shirt with your company on it. I feel that I would make a good advertisement as I am walking around the college campus. If you approve of this, my name and address is as follows. Dane Dedmon Wetzel Hall 1223 710 W. University Dr. Macomb, IL 61455 Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15:45:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from irv1-mail2.intelenet.net (irv1-mail2.intelenet.net [204.182.160.3]) by hub.freebsd.org (Postfix) with ESMTP id D573837B4CF for ; Thu, 19 Oct 2000 15:45:23 -0700 (PDT) Received: from boris.intelenet.net (davidhs@boris.intelenet.net [207.38.65.11]) by irv1-mail2.intelenet.net (8.9.3/8.9.3) with ESMTP id PAA23904 for ; Thu, 19 Oct 2000 15:45:23 -0700 (PDT) Message-Id: <200010192245.PAA23904@irv1-mail2.intelenet.net> To: freebsd-questions@freebsd.org Subject: SUMMARY: lost X when I ran virtual terminal Date: Thu, 19 Oct 2000 15:45:23 -0700 From: David Harnick-Shapiro Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The short of it: to get back to the graphics display, check /etc/ttys for the xdm line; you get to the virtual terminal on ttyv"N" by pressing (the old "start at 0 vs. start at 1" thingy). In my case: ttyv8 "/usr/X11R6/bin/xdm -nodaemon" xterm off secure means I pressed , and all is wonderful again. David Harnick-Shapiro Thank you all for making me less stupid :-} I've included the (rather heavily edited) original replies below: ------- Forwarded Messages Date: Thu, 19 Oct 2000 00:20:53 -0400 From: "Matthew Emmerton" I don't know about you, but my /etc/ttys defines the last virtual terminal (ttyv8) to be where the X server displays results. So even if you launch X from ttyv1, it's probably displaying the graphics on ttyv8. - -- Matthew Emmerton GSI Computer Services +1 (800) 217 5409 (Canada) ------- Message 2 Date: Wed, 18 Oct 2000 21:24:25 -0700 From: Alfred Perlstein Alt+f8 (or 9 or 10) depends on your config. - -- - -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." ------- Message 3 Date: Wed, 18 Oct 2000 21:38:25 -0700 From: Joseph Stein press the print screen key until the x window pops up. don't hold it down, press it and wait a second, then press it again, etc. joe ------- Message 4 Date: Thu, 19 Oct 2000 09:37:07 -0400 From: "Potts, Ross" Just try all the screens with CTL-ALT F<1-12> ------- Message 5 Date: Thu, 19 Oct 2000 11:48:48 -0400 From: Marko Ruban Check /etc/ttys file to see which terminal your xterm runs on. Mine runs on ttyv3 (ctrl+alt+F4). Or maybe your "experimentation" included something that disabled xdm ? [Thankfully, no, I didn't do anything that severe /dbh-s] ------- End of Forwarded Messages To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 15:55: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id AEC8137B4CF for ; Thu, 19 Oct 2000 15:54:59 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id PAA12385 for ; Thu, 19 Oct 2000 15:50:21 -0700 (PDT) From: "Otter" To: Subject: FW: booting problems with SMP enabled Date: Thu, 19 Oct 2000 18:55:42 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I sent this last night, but I never saw it on the list, so I'm resending... I've got a new install of 4.1-RELEASE here. Hardware consists of a dual processor board (unknown brand), 2 Intel P2-300's, a single 128MB DIMM, onboard scsi (disabled), on a 13GB IDE drive. The machine boots and runs fine with a single processor. For testing purposes, I've swapped them around to make sure that both CPU's are working as they should. No problems there. When I boot up with the SMP kernel (only the SMP and APIC_IO lines uncommented) it hangs in the boot process at where it says "APIC_IO: testing 8254 interrupt delivery". At this point, the machine locks and requires me cycling power via the switch on the power supply. I'm at a loss. I've got a bank of dipdswitches on the board and have changed a few at random, but no luck so far. Without knowing the brand of the board, I'm not sure how I can take this any further. Any tips/ideas/suggestions? TIA. -Otter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 16:14:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 9FB0037B4D7 for ; Thu, 19 Oct 2000 16:14:25 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Thu, 19 Oct 2000 19:14:28 -0400 Message-ID: <39EF80B6.5DCA1091@tellurian.com> Date: Thu, 19 Oct 2000 19:16:06 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: David Harnick-Shapiro Cc: freebsd-questions@freebsd.org Subject: Re: SUMMARY: lost X when I ran virtual terminal References: <200010192245.PAA23904@irv1-mail2.intelenet.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG LOL, maybe you'd get better replies, if you supplied more info initially ;) (nothing personal, just debugging) David Harnick-Shapiro wrote: > The short of it: to get back to the graphics display, check > /etc/ttys for the xdm line; you get to the virtual terminal on > ttyv"N" by pressing (the old "start at 0 vs. start > at 1" thingy). In my case: > > ttyv8 "/usr/X11R6/bin/xdm -nodaemon" xterm off secure > > means I pressed , and all is wonderful again. > > David Harnick-Shapiro > > Thank you all for making me less stupid :-} I've included the > (rather heavily edited) original replies below: > > ------- Forwarded Messages > > Date: Thu, 19 Oct 2000 00:20:53 -0400 > From: "Matthew Emmerton" > > I don't know about you, but my /etc/ttys defines the last virtual terminal > (ttyv8) to be where the X server displays results. > > So even if you launch X from ttyv1, it's probably displaying the graphics on > ttyv8. > > - -- > Matthew Emmerton > GSI Computer Services > +1 (800) 217 5409 (Canada) > > ------- Message 2 > > Date: Wed, 18 Oct 2000 21:24:25 -0700 > From: Alfred Perlstein > > Alt+f8 (or 9 or 10) depends on your config. > > - -- > - -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] > "I have the heart of a child; I keep it in a jar on my desk." > > ------- Message 3 > > Date: Wed, 18 Oct 2000 21:38:25 -0700 > From: Joseph Stein > > press the print screen key until the x window pops up. > > don't hold it down, press it and wait a second, then press it again, etc. > > joe > > ------- Message 4 > > Date: Thu, 19 Oct 2000 09:37:07 -0400 > From: "Potts, Ross" > > Just try all the screens with CTL-ALT F<1-12> > > ------- Message 5 > > Date: Thu, 19 Oct 2000 11:48:48 -0400 > From: Marko Ruban > > Check /etc/ttys file to see which terminal your xterm runs on. > Mine runs on ttyv3 (ctrl+alt+F4). > > Or maybe your "experimentation" included something that disabled xdm ? > > [Thankfully, no, I didn't do anything that severe /dbh-s] > > ------- End of Forwarded Messages > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 16:27:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from clyde.goodleaf.net (piscator.seanet.com [199.181.165.218]) by hub.freebsd.org (Postfix) with ESMTP id 527F537B4D7 for ; Thu, 19 Oct 2000 16:27:33 -0700 (PDT) Received: by clyde.goodleaf.net (Postfix, from userid 1001) id 6E5D55BE2; Thu, 19 Oct 2000 16:26:28 -0700 (PDT) References: <001301c03944$879481f0$0701a8c0@ruraltel.net> <14831.27283.246529.659884@karenium.kjsl.com> <20001019145538.B57892@mail.vcnet.com> In-Reply-To: <20001019145538.B57892@mail.vcnet.com> From: john@goodleaf.net To: Jon Rust Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Web Based Mail Date: Thu, 19 Oct 2000 23:26:28 GMT Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <20001019232628.6E5D55BE2@clyde.goodleaf.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been using sqwebmail from inter7. It may be a port now. Seems pretty solid and author is generally responsive to mailing list questions. Can be configured to use SSL, which is nice also. Better security... -John Jon Rust writes: > On Thu, Oct 19, 2000 at 02:41:39PM -0700, Javier Henderson wrote: > > Darryl Hoar writes: > > > Greetings, > > > I know I have seen this on the list, but can't seem to find it. I am > > > setting up a mail server for a school (for free), and thought that > > > a web based mail service (ie, like hotmail) where students and > > > faculty could use a browser to send/receive , etc internet email. > > > > > > Anybody have a recommendation on software (ports or otherwise)? > > > > I like IMP. See http://www.horde.org/ > > > > It requires PHP. > > And IMAP IIRC. I use Mailman from Endymion: > > http://endymion.com/products/mailman/ > > Not real super cool, but it works through POP3, so a) works with many > servers, and b) it can live on another machine besides your mail server. > But c), it's a little slow. > > I'm planning on switching to sqwebmail soon: > > http://www.inter7.com/sqwebmail/ > > Just a simple, fast interface. Requires qmail. > > jon > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 16:58:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f84.law9.hotmail.com [64.4.9.84]) by hub.freebsd.org (Postfix) with ESMTP id 205DB37B479 for ; Thu, 19 Oct 2000 16:58:31 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Oct 2000 16:58:25 -0700 Received: from 206.173.36.121 by lw9fd.law9.hotmail.msn.com with HTTP; Thu, 19 Oct 2000 23:58:25 GMT X-Originating-IP: [206.173.36.121] From: "Tom Hines" To: tomhines2@hotmail.com, freebsd-questions@freebsd.org Subject: Re: 40upgrade kit Date: Thu, 19 Oct 2000 19:58:25 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 19 Oct 2000 23:58:25.0950 (UTC) FILETIME=[78671BE0:01C03A28] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Whoa. It's much worse than I thought. Now none of my devices work. They're either not found or not configured. What happened? I need to reverse that upgrade kit, but it deleted my old libc.so.3. Please help. tom >From: "Tom Hines" >To: freebsd-questions@freebsd.org >Subject: 40upgrade kit >Date: Thu, 19 Oct 2000 15:53:38 EDT > >Hi. Relative newbie here. I was browsing the freebsd web site the other >day and noticed the section on upgrade kits at >http://www.freebsd.org/ports/. Because I run 4.0-RELEASE, I installed the >4.0 to 4-stable upgrade kit, and now I can't install any ports. It fails >on >fetch with the message "bad system call". I noticed that one of the files >upgraded by the kit was libc.so, which is a symlink that was pointing to >libc.so.3 and now points to the new libc.so.4. I suspect that might be the >problem. > >I tried deleting the package with pkg_delete, but got a message saying that >was impossible because it would render my system useless. What can I do? >Can I just point libc.so back to libc.so.3? I vaguely recall a utility to >do such things called ldd or something but I can't remember. > >tia, >tom > > >_________________________________________________________________________ >Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > >Share information about yourself, create your own public profile at >http://profiles.msn.com. > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 16:59:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from superman.imag.net (superman.imag.net [207.200.148.6]) by hub.freebsd.org (Postfix) with ESMTP id 72F1437B4E5 for ; Thu, 19 Oct 2000 16:59:15 -0700 (PDT) Received: from crap.imag.net (ws52.motionlink.net [192.168.44.52]) by superman.imag.net (8.10.2/8.10.2) with ESMTP id e9K046g01108 for ; Thu, 19 Oct 2000 17:04:07 -0700 (PDT) Message-Id: <5.0.0.25.2.20001019165816.035ff220@mail.imag.net> X-Sender: van2537@mail.imag.net X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Thu, 19 Oct 2000 17:02:38 -0700 To: questions@FreeBSD.ORG From: Luke Cowell Subject: access through modem 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 I have a freebsd 4.1 system complete with modem. I want to be able to dial in and administrate the box. How do I configure dialin access to take a tty ? is there a how to on this somewhere ? cc me in reply Thanks. ----------------------------------------------------------------------- Luke Cowell Motionlink Internet Senior Systems Administrator http://www.imag.net ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17: 9:50 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dnvrpop2.dnvr.uswest.net (dnvrpop2.dnvr.uswest.net [206.196.128.4]) by hub.freebsd.org (Postfix) with SMTP id 8A2E337B4CF for ; Thu, 19 Oct 2000 17:09:48 -0700 (PDT) Received: (qmail 33630 invoked by alias); 19 Oct 2000 23:26:30 -0000 Delivered-To: fixup-freebsd-questions@freebsd.org@fixme Received: (qmail 28134 invoked by uid 0); 19 Oct 2000 23:02:11 -0000 Received: from hdialup232.dnvr.uswest.net (HELO miranda.dnvr.uswest.net) (207.225.106.232) by dnvrpop2.dnvr.uswest.net with SMTP; 19 Oct 2000 23:02:11 -0000 Received: (from loughry@localhost) by miranda.dnvr.uswest.net (8.9.3/8.9.3) id RAA05232 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 17:02:09 -0600 (MDT) (envelope-from loughry) Date: Thu, 19 Oct 2000 17:02:09 -0600 (MDT) From: Joe Loughry Message-Id: <200010192302.RAA05232@miranda.dnvr.uswest.net> To: freebsd-questions@freebsd.org Subject: Re: Unexpected PPP termination: Unacceptable Address !? What it might be? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I tried entering addresses of the form 10.0.0.1/0 on the sysinstall screen last night in 4.1.1-RELEASE. It worked, and no "set ifaddr" required. It looks like a change from 3.4-RELEASE behavior. This ought to be documented better, but at least now it's in the mailing list archives, so others can find the solution. Thanks! -Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:19:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www.mvsk.ac.th (www.mvsk.ac.th [203.150.186.20]) by hub.freebsd.org (Postfix) with ESMTP id 5829B37B479 for ; Thu, 19 Oct 2000 17:19:15 -0700 (PDT) Received: from localhost (localhost [[UNIX: localhost]]) by www.mvsk.ac.th (8.9.3/8.9.1) id HAA02552; Fri, 20 Oct 2000 07:19:11 +0700 Message-Id: <200010200019.HAA02552@www.mvsk.ac.th> Content-Transfer-Encoding: 8bit Date: Fri, 20 Oct 2000 07:19:06 +0700 From: bpirorm To: questions@FreeBSD.org X-Mailer: IMHO for Roxen MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: Question about FreeBSD PPP Server Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sent cc to bpirom@hotmail.com too please. From: bpirorm To: brian@FreeBSD.org Date: Fri, 20 Oct 2000 07:01:55 +0700 I had read article "ppp [for Linux users] by a Linux user"that I think it for dial user's computer to ISP. I 'm not sure it's right or wrong. If right I want to know if I'm ISP . How to make or set my FreeBSD box act as ppp server for recieve user connections. (I'm use freebsd 3.3 and connect to internet with leased line) > > If improve FreeBSD manual I want to propose any idea about one. I'm a BSD newbie I don't know What the manual or some article on the > web make for such as I want to make my freebsd box act as ISP for > recieve call how to config it. When I read about ppp alias,gateway box > or "ppp link to work as gateway box" it like the same purpose but not > ppp server. The articles or thos mannual chould be have a short decribe "what he is talking made for what purpose". What about dial -in ppp.? Does dial-in ppp is make for ppp server.? > > > > Thanks. > pirom > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:25:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from superman.imag.net (superman.imag.net [207.200.148.6]) by hub.freebsd.org (Postfix) with ESMTP id C0BC637B4C5 for ; Thu, 19 Oct 2000 17:25:36 -0700 (PDT) Received: from crap.imag.net (ws52.motionlink.net [192.168.44.52]) by superman.imag.net (8.10.2/8.10.2) with ESMTP id e9K0UXg07930 for ; Thu, 19 Oct 2000 17:30:34 -0700 (PDT) Message-Id: <5.0.0.25.2.20001019172444.03b9d828@mail.imag.net> X-Sender: van2537@mail.imag.net X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Thu, 19 Oct 2000 17:29:06 -0700 To: questions@FreeBSD.ORg From: Luke Cowell Subject: encrypted password conversion 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 I have a solaris system and I need to copy some of those users from that system to a FreeBSD system. I have figured out a way to put the shadow and password entries into one file to make it compatible with the FreeBSD system with one exception. Solaris uses a different encryption scheme for the password file than freebsd. Is there a way to make a FreeBSD system use the same method ? TIA ----------------------------------------------------------------------- Luke Cowell Motionlink Internet Senior Systems Administrator http://www.imag.net ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:27:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from florida.melco.co.jp (florida.melco.co.jp [192.218.140.46]) by hub.freebsd.org (Postfix) with ESMTP id 6A79137B4C5 for ; Thu, 19 Oct 2000 17:27:07 -0700 (PDT) Received: by florida.melco.co.jp (florida) id JAA22537; Fri, 20 Oct 2000 09:26:32 +0900 (JST) Received: by mailgw.melco.co.jp (mailgw) id JAA20243; Fri, 20 Oct 2000 09:27:04 +0900 (JST) Received: by mr01.melco.co.jp (mr01) id JAA08748; Fri, 20 Oct 2000 09:27:03 +0900 (JST) Received: from islgw.isl.melco.co.jp by elgw.isl.melco.co.jp (8.8.8/3.6W) id JAA24320; Fri, 20 Oct 2000 09:27:01 +0900 (JST) Received: from isl.melco.co.jp by islgw.isl.melco.co.jp (8.8.8/3.6W) id JAA26999; Fri, 20 Oct 2000 09:27:00 +0900 (JST) Message-ID: <39EF915A.5782C017@isl.melco.co.jp> Date: Fri, 20 Oct 2000 09:27:06 +0900 From: Miyuki Hayashi Organization: Mitsubishi Electric Co. X-Mailer: Mozilla 4.7 [ja] (WinNT; I) X-Accept-Language: ja MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: FreeBSD license 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$F%a!<%k$$$?$7$^$9!";0I)EE5!$NNS$H?=$7$^$9!#(B $B!!(BFreeBSD$B$N%i%$%;%s%9$K$D$$$Fe$[$s$H$&$KLdBj$H$J$i$J$$$+$H$$$&$3$H$r3NG'$7$?$$$N$G$9!#(B $B!!!J#G#P#L2<$N$b$N$O=|$-$^$9!K(B $B!!@eB-$i$:$G?=$7Lu$J$$$N$G$9$,!"$h$m$7$/$*4j$$?=$7>e$2$^$9!#(B $B0J>e(B ---------------------------------------------- $BNS(B $BH~M35*(B $B;0I)EE5!(B($B3t(B) $B>pJs5;=QAm9g8&5f=j(B $BCNE*:b;:%;%s%?!<(B $BCx:n8"%0%k!<%W(B E-mail: tiantian@isl.melco.co.jp (Tel NTT) 0467-41-2078 (Fax) 0467-41-2133 $B!!(B To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:35:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from superman.imag.net (superman.imag.net [207.200.148.6]) by hub.freebsd.org (Postfix) with ESMTP id DCB2037B4D7 for ; Thu, 19 Oct 2000 17:35:43 -0700 (PDT) Received: from crap.imag.net (ws52.motionlink.net [192.168.44.52]) by superman.imag.net (8.10.2/8.10.2) with ESMTP id e9K0eeg10389 for ; Thu, 19 Oct 2000 17:40:40 -0700 (PDT) Message-Id: <5.0.0.25.2.20001019173826.03b8ab58@mail.imag.net> X-Sender: van2537@mail.imag.net X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Thu, 19 Oct 2000 17:39:12 -0700 To: From: Luke Cowell Subject: Re: encrypted password conversion In-Reply-To: <06ce01c03a2f$4d3e3410$6d0a280a@speedera.com> References: <5.0.0.25.2.20001019172444.03b9d828@mail.imag.net> 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 there a way to change this without reinstalling ? There are only 2 users on the system me and root. Luke At 05:47 PM 10/19/2000 -0700, Ras-Sol wrote: >I think you had to choose the "use older style DES password scheme" when you >installed. > >But I might be wrong- > >-- > >"Two notable things came out of Berkeley in the '60s: > LSD and BSD... I don't think the two are unrelated." >AIM: IMFDUP > >----- Original Message ----- >From: Luke Cowell >To: >Sent: Thursday, October 19, 2000 5:29 PM >Subject: encrypted password conversion > > > > I have a solaris system and I need to copy some of those users from that > > system to a FreeBSD system. I have figured out a way to put the shadow and > > password entries into one file to make it compatible with the FreeBSD > > system with one exception. Solaris uses a different encryption scheme for > > the password file than freebsd. Is there a way to make a FreeBSD system >use > > the same method ? > > > > TIA > > > > ----------------------------------------------------------------------- > > Luke Cowell > > Motionlink Internet > > Senior Systems Administrator > > http://www.imag.net > > ----------------------------------------------------------------------- > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message ----------------------------------------------------------------------- Luke Cowell Motionlink Internet Senior Systems Administrator http://www.imag.net ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:36:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from iserver.itworks.com.au (iserver.itworks.com.au [203.32.61.10]) by hub.freebsd.org (Postfix) with SMTP id C1FF437B4C5 for ; Thu, 19 Oct 2000 17:36:36 -0700 (PDT) Received: (qmail 84581 invoked from network); 20 Oct 2000 00:36:23 -0000 Received: from maybe.itworks.com.au (203.36.209.235) by iserver.itworks.com.au with SMTP; 20 Oct 2000 00:36:23 -0000 Received: (qmail 90652 invoked from network); 20 Oct 2000 00:36:22 -0000 Received: from maybe.itworks.com.au (HELO maybe) (203.36.209.235) by maybe.itworks.com.au with SMTP; 20 Oct 2000 00:36:22 -0000 Date: Fri, 20 Oct 2000 11:36:21 +1100 (EST) From: Gavin Cameron To: questions@freebsd.org Subject: Is the Advansys 38C0800 adapter stable under 4.1.1? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've got a machine with an Advansys 38C0800 Ultra 2 SCSI adapter in it and I'm having so many problems getting this machine working. I also have 3 Intel EtherExpress NICs in the box. I get reboots, hangs, compile errors... no two faults appear to be the same. They can happen with I'm doing net access or a compile. The only 'unknown' to me in this box is the SCSI card... Anyone have any ideas? Gavin []-----------------------------------+------------------------------------[] | Gavin Cameron | ITworks Consulting | | Ph : +61 3 9642 5477 | Level 8, 488 Bourke Street | | Fax : +61 3 9642 5499 | Melbourne, Victoria | | Email : gavin@itworks.com.au | Australia, 3000 | []-----------------------------------+------------------------------------[] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:47:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by hub.freebsd.org (Postfix) with ESMTP id 5FF5137B4E5 for ; Thu, 19 Oct 2000 17:47:06 -0700 (PDT) Received: from chimp.simianscience.com (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.11.0/8.11.0) with SMTP id e9K0kgq50444; Thu, 19 Oct 2000 20:46:47 -0400 (EDT) From: Mike Tancsa To: durham@w2xo.pgh.pa.us (Jim Durham) Cc: questions@freebsd.org Subject: Re: Radiusd with Portmaster2 on FreeBSD4.1 Date: Thu, 19 Oct 2000 20:46:41 -0400 Message-ID: References: In-Reply-To: X-Mailer: Forte Agent 1.8/32.548 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 18 Oct 2000 23:06:04 -0400, in sentex.lists.freebsd.questions you = wrote: >I'm using the cistron radiusd on FreeBSD 4.1 with an old Portmaster >2E to authenticate a user base of around 100 users. It does work, as we have several such boxes still in a few pops. What = does /var/log/radius show for the error ? ie. why is RADIUS rejected them ? Also, is your radius server running on a machine that has multiple interfaces ? If so, specify the address to bind to explicitly. ---Mike > >The portmaster had been running on its internal user list, and worked, > >I am using the default user config file and using AuthType =3D System so >I can use the Unix password file. > >The only way that the Radius server will authenticate a user is >if they are also in the Portmaster user table. If I take the >user out of the user table on the Portmaster, radiusd rejects the >authentication. I see this running radiusd in the "-x -x" mode. > >Yes, I have the authentication server and accounting server >values on the Portmaster pointing to the IP of the radius box. >I have CHAP and PAP off. One clue is that radiusd reports >that it is handed a CHAP password by the Portmaster, even >though CHAP is off. This does not happen when the user is >in the portmaster user table and is authenticated. > >I have read all the docs and the manuals on the Livingston site. > >Anyone know what's going on here? > >-Jim Durham > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message Mike Tancsa (mdtancsa@sentex.net) =09 Sentex Communications Corp, =09 Waterloo, Ontario, Canada "Given enough time, 100 monkeys on 100 routers=20 could setup a national IP network." (KDW2) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 17:54:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from darkstar.qx.net (darkstar.qx.net [208.235.88.101]) by hub.freebsd.org (Postfix) with ESMTP id 1145E37B479 for ; Thu, 19 Oct 2000 17:54:30 -0700 (PDT) Received: from bpierskalla (207-246-75-49.xdsl.qx.net [207.246.75.49]) by darkstar.qx.net (8.9.3/8.9.3) with SMTP id UAA20060 for ; Thu, 19 Oct 2000 20:54:20 -0400 From: "Bill Pierskalla" To: Subject: Failure to compile Date: Thu, 19 Oct 2000 20:48:54 -0400 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0014_01C03A0D.FE4E3CE0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C03A0D.FE4E3CE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit My new kernel wont compile it keeps exiting on a signal 11. I am running this on an old P200 with 64MB RAM. and a 4GB IDE disk. First I removed all the extraneous info and it failed and then I added only the essential IPFIREWALL options. I include the kernel "HEIMDALL" and the compile dump with exit. Any help would be appreciated. I usually work with Linux but a friend said "try FreeBSD it's better" but the documentation available for Linux is better. Bill Pierskalla -newbie to BSD- # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.11 2000/09/22 10:01:48 nyan Exp $ machine i386 cpu I386_CPU cpu I486_CPU cpu I586_CPU cpu I686_CPU ident GENERIC maxusers 32 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev options IPFIREWALL # Firewall install options IPFIREWALL_VERBOSE # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=2 # number of CPUs #options NBUS=4 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs device isa device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device amd # AMD 53C974 (Teckram DC-390(T)) #device isp # Qlogic family #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets) #options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured #device adv0 at isa? #device adw #device bt0 at isa? #device aha0 at isa? #device aic0 at isa? # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device dpt # DPT Smartcache - See LINT for options! # RAID controllers #device ida # Compaq Smart RAID #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family #device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support device card device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 device pcic1 at isa? irq 11 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) device tx # SMC 9432TX (83c170 ``EPIC'') device vx # 3Com 3c590, 3c595 (``Vortex'') device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ex device ep device fe0 at isa? port 0x300 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. device an # Xircom Ethernet device xe # The probe order of these is presently determined by i386/isa/isa_compat.c. device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 device le0 at isa? port 0x300 irq 5 iomem 0xd0000 device lnc0 at isa? port 0x280 irq 10 drq 0 device cs0 at isa? port 0x300 device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet ------=_NextPart_000_0014_01C03A0D.FE4E3CE0 Content-Type: text/plain; name="HEIMDALL.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="HEIMDALL.txt" # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you = are # in doubt as to the purpose or necessity of a line, check first in = LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.11 2000/09/22 10:01:48 = nyan Exp $ machine i386 cpu I386_CPU cpu I486_CPU cpu I586_CPU cpu I686_CPU ident GENERIC maxusers 32 #makeoptions DEBUG=3D-g #Build kernel with gdb(1) debug symbols options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=3D15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev options IPFIREWALL # Firewall install options IPFIREWALL_VERBOSE # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=3D2 # number of CPUs #options NBUS=3D4 # number of busses #options NAPIC=3D1 # number of IO APICs #options NINTR=3D24 # number of INTs device isa device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device amd # AMD 53C974 (Teckram DC-390(T)) #device isp # Qlogic family #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets) #options SYM_SETUP_LP_PROBE_MAP=3D0x40 # Allow ncr to attach legacy NCR devices when=20 # both sym and ncr are configured #device adv0 at isa? #device adw #device bt0 at isa? #device aha0 at isa? #device aic0 at isa? # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device dpt # DPT Smartcache - See LINT for options! # RAID controllers #device ida # Compaq Smart RAID #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family #device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT = lines #options PCVT_SCANSET=3D2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support device card device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 device pcic1 at isa? irq 11 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) device tx # SMC 9432TX (83c170 ``EPIC'') device vx # 3Com 3c590, 3c595 (``Vortex'') device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. device miibus # MII bus support device dc # DEC/Intel 21143 and various workalikes device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device ste # Sundance ST201 (D-Link DFE-550TX) device tl # Texas Instruments ThunderLAN device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 device ex device ep device fe0 at isa? port 0x300 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below = will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. device an # Xircom Ethernet device xe # The probe order of these is presently determined by = i386/isa/isa_compat.c. device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 device le0 at isa? port 0x300 irq 5 iomem 0xd0000 device lnc0 at isa? port 0x280 irq 10 drq 0 device cs0 at isa? port 0x300 device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet ------=_NextPart_000_0014_01C03A0D.FE4E3CE0 Content-Type: text/plain; name="compile.out.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="compile.out.txt" Script started on Thu Oct 19 20:37:20 2000 asgard# cd ../../compile/HEIMDALL ../../compile/HEIMDALL: No such file or directory. asgard# /usr/src/sys/i386//conf asgard# ls GENERIC HEIMDALL LINT NEWCARD asgard# /usr/sbin/config HEIMDALL Don't forget to do a ``make depend'' Kernel build directory is ../../compile/HEIMDALL asgard# cd ../../compile/HEIMDALL asgard# make depend rm -f .newdep mkdep -a -f .newdep -O -Wall -Wredundant-decls -Wnested-externs = -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline = -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. = -I/usr/include -D_KERNEL -include opt_global.h -elf = -mpreferred-stack-boundary=3D2 device_if.c bus_if.c ../../cam/cam.c = ../../cam/cam_xpt.c ../../cam/cam_extend.c ../../cam/cam_queue.c = ../../cam/cam_periph.c ../../cam/cam_sim.c ../../cam/scsi/scsi_all.c = ../../cam/scsi/scsi_da.c ../../cam/scsi/scsi_sa.c = ../../cam/scsi/scsi_cd.c ../../cam/scsi/scsi_pass.c = ../../dev/an/if_an.c ../../dev/an/if_an_isa.c ../../dev/an/if_an_pci.c = ../../dev/an/if_an_pccard.c ../../dev/ed/if_ed_pci.c = ../../dev/ep/if_ep.c ../../dev/ep/if_ep_isa.c ../../dev/ep/if_ep_eisa.c = ../../dev/ep/if_ep_pccard.c ../../dev/ex/if_ex.c ../../dev/fe/if_fe.c = ../../dev/fe/if_fe_pccard.c ../../dev/ie/if_ie.c ../../dev/md/md.c = ../../dev/mii/mii.c ../../dev/mii/mii_physubr.c ../../dev/mii/ukphy.c = ../../dev/mii/ukphy_subr.c ../../dev/mii/amphy.c ../../dev/mii/brgphy.c = ../../dev/mii/dcphy.c ../../dev/mii/exphy.c ../../dev/mii/mlphy.c = ../../dev/mii/nsphy.c ../../dev/mii/pnphy.c ../../dev/mii/tlphy.c = ../../dev/mii/rlphy.c ../../dev/mii/xmphy.c miibus_if.c power_if.c = card_if.c ppbus_if.c ../../dev/ppbus/if_plip.c ../../dev/ppbus/lpt.c = ../../dev/ppbus/ppb_base.c ../../dev/ppbus/ppb_1284.c = ../../dev/ppbus/ppb_msq.c ../../dev/ppbus/ppbconf.c = ../../dev/ppbus/ppi.c ../../dev/sn/if_sn.c ../../dev/sn/if_sn_isa.c = ../../dev/sn/if_sn_pccard.c ../../dev/vx/if_vx.c = ../../dev/vx/if_vx_eisa.c ../../dev/vx/if_vx_pci.c ../../dev/xe/if_xe.c = ../../isofs/cd9660/cd9660_bmap.c ../../isofs/cd9660/cd9660_lookup.c = ../../isofs/cd9660/cd9660_node.c ../../isofs/cd9660/cd9660_rrip.c = ../../isofs/cd9660/cd9660_util.c ../../isofs/cd9660/cd9660_vfsops.c = ../../isofs/cd9660/cd9660_vnops.c ../../kern/imgact_aout.c = ../../kern/imgact_elf.c ../../kern/imgact_shell.c ../../kern/init_main.c = ../../kern/init_sysent.c ../../kern/kern_intr.c = ../../kern/kern_module.c ../../kern/kern_linker.c = ../../kern/link_aout.c ../../kern/link_elf.c ../../kern/kern_acct.c = ../../kern/kern_acl.c ../../kern/kern_clock.c ../../kern/kern_conf.c = ../../kern/kern_descrip.c ../../kern/kern_environment.c = ../../kern/kern_event.c ../../kern/kern_exec.c ../../kern/kern_exit.c = ../../kern/kern_fork.c ../../kern/kern_jail.c ../../kern/kern_kthread.c = ../../kern/kern_ktrace.c ../../kern/kern_lock.c ../../kern/kern_lockf.c = ../../kern/kern_malloc.c ../../kern/kern_mib.c = ../../kern/kern_ntptime.c ../../kern/kern_physio.c = ../../kern/kern_proc.c ../../kern/kern_prot.c ../../kern/kern_random.c = ../../kern/kern_resource.c ../../kern/kern_shutdown.c = ../../kern/kern_sig.c ../../kern/kern_subr.c ../../kern/kern_switch.c = ../../kern/kern_synch.c ../../kern/kern_syscalls.c = ../../kern/kern_sysctl.c ../../kern/kern_time.c = ../../kern/kern_timeout.c ../../kern/kern_xxx.c ../../kern/md5c.c = ../../kern/subr_autoconf.c ../../kern/subr_bus.c = ../../kern/subr_devstat.c ../../kern/subr_disk.c = ../../kern/subr_diskslice.c ../../kern/subr_eventhandler.c = ../../kern/subr_log.c ../../kern/subr_module.c ../../kern/subr_prf.c = ../../kern/subr_prof.c ../../kern/subr_blist.c ../../kern/subr_scanf.c = ../../kern/subr_taskqueue.c ../../kern/subr_xxx.c = ../../kern/sys_generic.c ../../kern/sys_pipe.c ../../kern/sys_process.c = ../../kern/subr_rman.c ../../kern/sys_socket.c ../../kern/sysv_ipc.c = ../../kern/sysv_msg.c ../../kern/sysv_sem.c ../../kern/sysv_shm.c = ../../kern/tty.c ../../kern/tty_compat.c ../../kern/tty_conf.c = ../../kern/tty_cons.c ../../kern/tty_pty.c ../../kern/tty_subr.c = ../../kern/tty_tty.c ../../kern/uipc_accf.c ../../kern/uipc_domain.c = ../../kern/uipc_mbuf.c ../../kern/uipc_mbuf2.c ../../kern/uipc_proto.c = ../../kern/uipc_socket.c ../../kern/uipc_socket2.c = ../../kern/uipc_syscalls.c ../../kern/uipc_usrreq.c ../../kern/vfs_bio.c = ../../kern/vfs_cache.c ../../kern/vfs_cluster.c ../../kern/vfs_conf.c = ../../kern/vfs_default.c ../../kern/vfs_init.c ../../kern/vfs_lookup.c = ../../kern/vfs_subr.c ../../kern/vfs_syscalls.c ../../kern/vfs_vnops.c = ../../kern/kern_threads.c ../../kern/vfs_aio.c = ../../miscfs/deadfs/dead_vnops.c ../../miscfs/fifofs/fifo_vnops.c = ../../miscfs/procfs/procfs_ctl.c ../../miscfs/procfs/procfs_dbregs.c = ../../miscfs/procfs/procfs_fpregs.c ../../miscfs/procfs/procfs_map.c = ../../miscfs/procfs/procfs_mem.c ../../miscfs/procfs/procfs_note.c = ../../miscfs/procfs/procfs_regs.c ../../miscfs/procfs/procfs_status.c = ../../miscfs/procfs/procfs_subr.c ../../miscfs/procfs/procfs_type.c = ../../miscfs/procfs/procfs_vfsops.c ../../miscfs/procfs/procfs_vnops.c = ../../miscfs/procfs/procfs_rlimit.c ../../miscfs/specfs/spec_vnops.c = ../../msdosfs/msdosfs_conv.c ../../msdosfs/msdosfs_denode.c = ../../msdosfs/msdosfs_fat.c ../../msdosfs/msdosfs_lookup.c = ../../msdosfs/msdosfs_vfsops.c ../../msdosfs/msdosfs_vnops.c = ../../net/bpf.c ../../net/bpf_filter.c ../../net/if.c = ../../net/if_ethersubr.c ../../net/if_faith.c ../../net/if_gif.c = ../../net/if_loop.c ../../net/if_media.c ../../net/if_mib.c = ../../net/if_ppp.c ../../net/if_sl.c ../../net/if_tun.c = ../../net/net_osdep.c ../../net/ppp_tty.c ../../net/intrq.c = ../../net/radix.c ../../net/raw_cb.c ../../net/raw_usrreq.c = ../../net/route.c ../../net/rtsock.c ../../net/slcompress.c = ../../netinet/if_ether.c ../../netinet/in_gif.c ../../netinet/igmp.c = ../../netinet/in.c ../../netinet/in_pcb.c ../../netinet/in_proto.c = ../../netinet/in_rmx.c ../../netinet/ip_ecn.c ../../netinet/ip_encap.c = ../../netinet/ip_flow.c ../../netinet/ip_fw.c ../../netinet/ip_icmp.c = ../../netinet/ip_input.c ../../netinet/ip_mroute.c = ../../netinet/ip_output.c ../../netinet/raw_ip.c = ../../netinet/tcp_input.c ../../netinet/tcp_output.c = ../../netinet/tcp_subr.c ../../netinet/tcp_timer.c = ../../netinet/tcp_usrreq.c ../../netinet/udp_usrreq.c = ../../netinet6/dest6.c ../../netinet6/frag6.c ../../netinet6/icmp6.c = ../../netinet6/in6.c ../../netinet6/in6_cksum.c ../../netinet6/in6_gif.c = ../../netinet6/ip6_forward.c ../../netinet6/in6_ifattach.c = ../../netinet6/ip6_input.c ../../netinet6/ip6_mroute.c = ../../netinet6/ip6_output.c ../../netinet6/in6_src.c = ../../netinet6/in6_pcb.c ../../netinet6/in6_prefix.c = ../../netinet6/in6_proto.c ../../netinet6/in6_rmx.c = ../../netinet6/mld6.c ../../netinet6/nd6.c ../../netinet6/nd6_nbr.c = ../../netinet6/nd6_rtr.c ../../netinet6/raw_ip6.c = ../../netinet6/route6.c ../../netinet6/scope6.c = ../../netinet6/udp6_output.c ../../netinet6/udp6_usrreq.c = ../../nfs/nfs_bio.c ../../nfs/nfs_node.c ../../nfs/nfs_nqlease.c = ../../nfs/nfs_serv.c ../../nfs/nfs_socket.c ../../nfs/nfs_srvcache.c = ../../nfs/nfs_subs.c ../../nfs/nfs_syscalls.c ../../nfs/nfs_vfsops.c = ../../nfs/nfs_vnops.c ../../pccard/pccard.c ../../pccard/pccard_beep.c = ../../pccard/pccard_nbk.c ../../pccard/pcic.c ../../pci/pcic_p.c = ../../pci/if_dc.c ../../pci/if_de.c ../../pci/if_fxp.c = ../../pci/if_lnc_p.c ../../pci/if_rl.c ../../pci/if_sf.c = ../../pci/if_sis.c ../../pci/if_ste.c ../../pci/if_tl.c = ../../pci/if_tx.c ../../pci/if_vr.c ../../pci/if_wb.c ../../pci/if_wx.c = ../../pci/if_xl.c ../../pci/pci.c ../../pci/pci_compat.c = ../../pci/pcisupport.c pci_if.c ../../posix4/posix4_mib.c = ../../posix4/p1003_1b.c ../../posix4/ksched.c ../../ufs/ffs/ffs_alloc.c = ../../ufs/ffs/ffs_balloc.c ../../ufs/ffs/ffs_inode.c = ../../ufs/ffs/ffs_softdep_stub.c ../../ufs/ffs/ffs_softdep.c = ../../ufs/ffs/ffs_subr.c ../../ufs/ffs/ffs_tables.c = ../../ufs/ffs/ffs_vfsops.c ../../ufs/ffs/ffs_vnops.c = ../../ufs/mfs/mfs_vfsops.c ../../ufs/mfs/mfs_vnops.c = ../../ufs/ufs/ufs_bmap.c ../../ufs/ufs/ufs_disksubr.c = ../../ufs/ufs/ufs_ihash.c ../../ufs/ufs/ufs_inode.c = ../../ufs/ufs/ufs_lookup.c ../../ufs/ufs/ufs_quota.c = ../../ufs/ufs/ufs_vfsops.c ../../ufs/ufs/ufs_vnops.c = ../../vm/default_pager.c ../../vm/device_pager.c ../../vm/phys_pager.c = ../../vm/swap_pager.c ../../vm/vm_fault.c ../../vm/vm_glue.c = ../../vm/vm_init.c ../../vm/vm_kern.c ../../vm/vm_map.c = ../../vm/vm_meter.c ../../vm/vm_mmap.c ../../vm/vm_object.c = ../../vm/vm_page.c ../../vm/vm_pageout.c ../../vm/vm_pager.c = ../../vm/vm_swap.c ../../vm/vm_unix.c ../../vm/vnode_pager.c = ../../vm/vm_zone.c ../../pci/uhci_pci.c ../../pci/ohci_pci.c usb_if.c = ../../dev/usb/uhci.c ../../dev/usb/ohci.c ../../dev/usb/usb.c = ../../dev/usb/usbdi.c ../../dev/usb/usbdi_util.c = ../../dev/usb/usb_ethersubr.c ../../dev/usb/usb_subr.c = ../../dev/usb/usb_quirks.c ../../dev/usb/hid.c ../../dev/usb/ugen.c = ../../dev/usb/uhid.c ../../dev/usb/ums.c ../../dev/usb/ulpt.c = ../../dev/usb/ukbd.c ../../dev/usb/umass.c ../../dev/usb/uhub.c = ../../dev/usb/if_aue.c ../../dev/usb/if_cue.c ../../dev/usb/if_kue.c = isa_if.c ../../isa/isa_common.c ../../isa/isahint.c ../../isa/pnp.c = ../../isa/pnpparse.c ../../libkern/arc4random.c ../../libkern/bcd.c = ../../libkern/index.c ../../libkern/inet_ntoa.c ../../libkern/qsort.c = ../../libkern/random.c ../../libkern/rindex.c ../../libkern/scanc.c = ../../libkern/skpc.c ../../libkern/strcat.c ../../libkern/strcmp.c = ../../libkern/strcpy.c ../../libkern/strlen.c ../../libkern/strncmp.c = ../../libkern/strncpy.c ../../libkern/strtol.c ../../libkern/strtoq.c = ../../libkern/strtoul.c ../../libkern/strtouq.c ../../dev/ata/ata-all.c = ../../dev/ata/ata-dma.c ../../dev/ata/ata-disk.c = ../../dev/ata/atapi-all.c ../../dev/ata/atapi-cd.c = ../../dev/ata/atapi-fd.c ../../dev/ata/atapi-tape.c ../../dev/ed/if_ed.c = ../../dev/ed/if_ed_isa.c ../../dev/ed/if_ed_pccard.c = ../../dev/eisa/eisaconf.c ../../dev/fb/fb.c ../../dev/fb/splash.c = ../../dev/fb/vga.c ../../dev/fe/if_fe_isa.c ../../dev/kbd/atkbd.c = ../../dev/kbd/atkbdc.c ../../dev/kbd/kbd.c ../../dev/syscons/schistory.c = ../../dev/syscons/scmouse.c ../../dev/syscons/scterm.c = ../../dev/syscons/scterm-dumb.c ../../dev/syscons/scterm-sc.c = ../../dev/syscons/scvgarndr.c ../../dev/syscons/scvidctl.c = ../../dev/syscons/scvtb.c ../../dev/syscons/syscons.c = ../../dev/syscons/sysmouse.c ../../i386/apm/apm.c = ../../i386/i386/atomic.c ../../i386/i386/autoconf.c = ../../i386/i386/bios.c ../../i386/i386/busdma_machdep.c = ../../i386/i386/elf_machdep.c ../../i386/i386/i686_mem.c = ../../i386/i386/identcpu.c ../../i386/i386/in_cksum.c = ../../i386/i386/initcpu.c ../../i386/i386/k6_mem.c = ../../i386/i386/machdep.c ../../i386/i386/math_emulate.c = ../../i386/i386/mem.c ../../i386/i386/nexus.c ../../i386/i386/pmap.c = ../../i386/i386/procfs_machdep.c ../../i386/i386/sys_machdep.c = ../../i386/i386/trap.c ../../i386/i386/userconfig.c = ../../i386/i386/vm86.c ../../i386/i386/vm_machdep.c = ../../i386/isa/clock.c ../../i386/isa/elink.c ../../isa/fd.c = ../../i386/isa/if_cs.c ../../i386/isa/if_le.c ../../i386/isa/if_lnc.c = ../../i386/isa/if_wi.c ../../i386/isa/intr_machdep.c = ../../i386/isa/ipl_funcs.c ../../i386/isa/isa.c = ../../i386/isa/isa_compat.c ../../i386/isa/isa_dma.c = ../../i386/isa/npx.c ../../i386/isa/pcibus.c ../../isa/atkbd_isa.c = ../../isa/atkbdc_isa.c ../../isa/ppc.c ../../isa/psm.c ../../isa/sio.c = ../../isa/syscons_isa.c ../../isa/vga_isa.c ../../kern/subr_diskmbr.c = ../../libkern/divdi3.c ../../libkern/moddi3.c ../../libkern/qdivrem.c = ../../libkern/udivdi3.c ../../libkern/umoddi3.c ioconf.c param.c = vnode_if.c config.c ../../i386/i386/genassym.c env MKDEP_CPP=3D"cc -E" mkdep -a -f .newdep -x assembler-with-cpp = -DLOCORE -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I/usr/include = -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=3D2 = ../../i386/i386/bioscall.s ../../i386/i386/exception.s = ../../i386/i386/globals.s ../../i386/i386/support.s = ../../i386/i386/swtch.s ../../i386/i386/locore.s rm -f .depend mv -f .newdep .depend cd ../../modules && env = MAKEOBJDIRPREFIX=3D/usr/src/sys/compile/HEIMDALL/modules make obj depend =3D=3D=3D> accf_data =3D=3D=3D> accf_http =3D=3D=3D> agp =3D=3D=3D> aha =3D=3D=3D> amr =3D=3D=3D> an =3D=3D=3D> aue =3D=3D=3D> ccd =3D=3D=3D> cd9660 =3D=3D=3D> coda =3D=3D=3D> cue =3D=3D=3D> dc =3D=3D=3D> fdesc =3D=3D=3D> fxp =3D=3D=3D> if_disc =3D=3D=3D> if_ef =3D=3D=3D> if_ppp =3D=3D=3D> if_sl =3D=3D=3D> if_tap =3D=3D=3D> if_tun =3D=3D=3D> ipfilter =3D=3D=3D> ipfw =3D=3D=3D> ispfw =3D=3D=3D> joy =3D=3D=3D> kernfs =3D=3D=3D> kue =3D=3D=3D> md =3D=3D=3D> mfs =3D=3D=3D> mii =3D=3D=3D> mlx =3D=3D=3D> msdos =3D=3D=3D> ncp =3D=3D=3D> netgraph =3D=3D=3D> netgraph/async =3D=3D=3D> netgraph/bpf =3D=3D=3D> netgraph/bridge =3D=3D=3D> netgraph/cisco =3D=3D=3D> netgraph/echo =3D=3D=3D> netgraph/ether =3D=3D=3D> netgraph/frame_relay =3D=3D=3D> netgraph/hole =3D=3D=3D> netgraph/iface =3D=3D=3D> netgraph/ksocket =3D=3D=3D> netgraph/lmi =3D=3D=3D> netgraph/netgraph =3D=3D=3D> netgraph/ppp =3D=3D=3D> netgraph/pppoe =3D=3D=3D> netgraph/pptpgre =3D=3D=3D> netgraph/rfc1490 =3D=3D=3D> netgraph/socket =3D=3D=3D> netgraph/tee =3D=3D=3D> netgraph/tty =3D=3D=3D> netgraph/UI =3D=3D=3D> netgraph/vjc =3D=3D=3D> netgraph/mppc =3D=3D=3D> nfs =3D=3D=3D> ntfs =3D=3D=3D> nullfs =3D=3D=3D> nwfs =3D=3D=3D> portal =3D=3D=3D> procfs =3D=3D=3D> rl =3D=3D=3D> sf =3D=3D=3D> sis =3D=3D=3D> sk =3D=3D=3D> ste =3D=3D=3D> syscons =3D=3D=3D> syscons/blank =3D=3D=3D> syscons/daemon =3D=3D=3D> syscons/fade =3D=3D=3D> syscons/fire =3D=3D=3D> syscons/green =3D=3D=3D> syscons/logo =3D=3D=3D> syscons/rain =3D=3D=3D> syscons/snake =3D=3D=3D> syscons/star =3D=3D=3D> syscons/warp =3D=3D=3D> syscons/apm =3D=3D=3D> ti =3D=3D=3D> tl =3D=3D=3D> twe =3D=3D=3D> ugen =3D=3D=3D> uhid =3D=3D=3D> ukbd =3D=3D=3D> ulpt =3D=3D=3D> umapfs =3D=3D=3D> umass =3D=3D=3D> umodem =3D=3D=3D> ums =3D=3D=3D> union =3D=3D=3D> usb =3D=3D=3D> vinum =3D=3D=3D> vn =3D=3D=3D> vpo =3D=3D=3D> vr =3D=3D=3D> wb =3D=3D=3D> wx =3D=3D=3D> xl =3D=3D=3D> asr =3D=3D=3D> bktr =3D=3D=3D> bktr/bktr =3D=3D=3D> bktr/bktr_mem =3D=3D=3D> coff =3D=3D=3D> fpu =3D=3D=3D> gnufpu =3D=3D=3D> ibcs2 =3D=3D=3D> linprocfs =3D=3D=3D> linux =3D=3D=3D> splash =3D=3D=3D> splash/bmp =3D=3D=3D> splash/pcx =3D=3D=3D> streams =3D=3D=3D> svr4 =3D=3D=3D> vesa =3D=3D=3D> wi =3D=3D=3D> accf_data =3D=3D=3D> accf_http =3D=3D=3D> agp =3D=3D=3D> aha =3D=3D=3D> amr perl @/kern/makedevops.pl -h @/kern/bus_if.m *** Signal 11 Stop in /usr/src/sys/modules/amr. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/HEIMDALL. asgard#=09 asgard# exit exit Script done on Thu Oct 19 20:44:55 2000 ------=_NextPart_000_0014_01C03A0D.FE4E3CE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 18: 4:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id BCE8937B4CF for ; Thu, 19 Oct 2000 18:04:49 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id F18DF1D89 for ; Thu, 19 Oct 2000 21:04:47 -0400 (EDT) Date: Thu, 19 Oct 2000 21:04:47 EDT From: mike johnson To: questions@freebsd.org Subject: DMA66/33 ? Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001020010448.F18DF1D89@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Durring the boot I get this message ata0-master: DMA limited to UDMA33, non-ATA66 compliant cable Does this mean if i get a cable that can handle DMA 66 I can have 66 vs 33? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 18: 8:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from updraft.jp.freebsd.org (updraft.jp.FreeBSD.ORG [210.157.158.42]) by hub.freebsd.org (Postfix) with ESMTP id 1520B37B4C5 for ; Thu, 19 Oct 2000 18:08:45 -0700 (PDT) Received: from castle2.jp.FreeBSD.org (castle2.jp.FreeBSD.org [210.226.20.120]) by updraft.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id KAA97830; Fri, 20 Oct 2000 10:08:43 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by castle2.jp.FreeBSD.org (8.11.0+3.3W/8.11.0) with ESMTP/inet id e9K18gE55366; Fri, 20 Oct 2000 10:08:42 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: questions@freebsd.org In-Reply-To: <39EF915A.5782C017@isl.melco.co.jp> References: <39EF915A.5782C017@isl.melco.co.jp> X-Face: '*aj"d@ijeQ:/X}]oM5c5Uz{ZZZk90WPt>a^y4$cGQp8:!H\W=hSM;PuNiidkc]/%,;6VGu e+`&APmz|P;F~OL/QK%;P2vU>\j4X.8@i%j6[%DTs_3J,Fff0)*oHg$A.cDm&jc#pD24WK@{,"Ef!0 P\):.2}8jo-BiZ?X&t$V X-User-Agent: Mew/1.94.2 XEmacs/21.2 (Notus) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 7 From: Makoto MATSUSHITA To: tiantian@isl.melco.co.jp Subject: Re: FreeBSD license Date: Fri, 20 Oct 2000 10:08:39 +0900 Message-Id: <20001020100839Q.matusita@jp.FreeBSD.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > (all stuffs deleted) You should send an *english* mail to this list. -- - Makoto `MAR' MATSUSHITA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 18:12:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtppop1pub.verizon.net (smtppop1pub.gte.net [206.46.170.20]) by hub.freebsd.org (Postfix) with ESMTP id 3204537B4D7 for ; Thu, 19 Oct 2000 18:12:50 -0700 (PDT) Received: from xps (p230-57.atnt6.dialup.ftw1.flash.net [209.30.230.57]) by smtppop1pub.verizon.net with SMTP for ; id UAA12128462 Thu, 19 Oct 2000 20:08:14 -0500 (CDT) Message-ID: <000c01c03a43$9c34cde0$39e61ed1@xps> From: "Jason Halbert" To: Subject: Installation Problem Date: Thu, 19 Oct 2000 20:12:36 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C03A08.EC34B340" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C03A08.EC34B340 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable FreeBSD: I'm having a slight problem with the installation. I have a PIII 733 with 128m of PC133 ram, 10g Western Digital Ultra ATA = DMA 66 and 4g Seagate Ultra ATA DMA 33 hard drives, Voodoo3 3000 AGP = graphics card and I've been switching back and forth between a Netgear = 310 and 3Com PCI NICs. The problem... No matter what release (4.0-Release, 4.1-Release, 4.1.1-Release, = 5.0-Current) or what media (CD-ROM or FTP) I use, the install just dies. = When the files are being copied...it just dies. There's really no = other way to describe it. I watch the debug screen and the system just = decides to stop copying. There is no error given. It just stops. The = place it was stopping was copying the scontrib dist files. I tried not = installing those and it just stops somewhere else. I was running it just fine on a K6-2 500 with a Maxtor 30g drive. I'm really confused. If you can help I would really appreciate it. Thanks Jason Halbert Transmitter Engineer KDAF-TV WB33 res02jw5@gte.net ------=_NextPart_000_0009_01C03A08.EC34B340 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
FreeBSD:
 
I'm having a slight problem with the=20 installation.
 
I have a PIII 733 with 128m of PC133 = ram, 10g=20 Western Digital Ultra ATA DMA 66 and 4g Seagate Ultra ATA DMA 33 hard = drives,=20 Voodoo3 3000 AGP graphics card and I've been switching back and forth = between a=20 Netgear 310 and 3Com PCI NICs.
 
The problem...
No matter what release (4.0-Release, = 4.1-Release,=20 4.1.1-Release, 5.0-Current) or what media (CD-ROM or FTP) I use, the = install=20 just dies.  When the files are being copied...it just dies.  = There's=20 really no other way to describe it.  I watch the debug screen and = the=20 system just decides to stop copying.  There is no error = given.  It=20 just stops.  The place it was stopping was copying the scontrib = dist=20 files.  I tried not installing those and it just stops somewhere=20 else.
 
I was running it just fine on a K6-2 = 500 with a=20 Maxtor 30g drive.
 
I'm really confused.  If you can = help I would=20 really appreciate it.
 
Thanks
 
Jason Halbert
Transmitter Engineer
KDAF-TV WB33
 
 
------=_NextPart_000_0009_01C03A08.EC34B340-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 18:18:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ipfw.org (cr308584-a.wlfdle1.on.wave.home.com [24.114.52.208]) by hub.freebsd.org (Postfix) with ESMTP id 6661237B4CF for ; Thu, 19 Oct 2000 18:18:42 -0700 (PDT) Received: from apollo (apollo.objtech.com [192.168.111.5]) by mail.ipfw.org (Postfix) with ESMTP id 837E13183; Thu, 19 Oct 2000 21:18:34 -0400 (EDT) Date: Thu, 19 Oct 2000 21:18:34 -0400 From: Peter Chiu X-Mailer: The Bat! (v1.46d) Personal Reply-To: Peter Chiu X-Priority: 3 (Normal) Message-ID: <87233942251.20001019211834@yahoo.com> To: Jeremy Vandenhouten Cc: freebsd-questions@freebsd.org Subject: Re: DNS and Apache behind Firewall/gateway 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 amazon:peter$ cat /etc/natd.conf same_ports unregistered_only # forward ssh to mononoke redirect_port tcp 192.168.0.6:22 xxx.xxx.120.110:22 # forward DNS to mononoke redirect_port tcp 192.168.0.6:53 xxx.xxx.120.110:53 redirect_port udp 192.168.0.6:53 xxx.xxx.120.110:53 # forward HTTP to mononoke redirect_port tcp 192.168.0.6:80 xxx.xxx.120.109:80 # forward HTTPS to mononoke redirect_port tcp 192.168.0.6:443 xxx.xxx.120.109:443 If you look from outside, DNS is on xxx.xxx.120.110 and web is on xxx.xxx.120.109. At the gateway, I forward them to the same internal box. > I know that to allow a webserver to host behind a gateway/firewall it > is necessary to add redirects in natd.conf, but what exactly needs to > be done (could someone post a generic example or put up a link to an > example). Also in order to register a domain it is necessary to have 2 > DNS servers. Is it possible to set up one behind the firewall on an > internal IP address and route it through as well? Obviously the second > cannot be done the same way because the dns servers would have to be at > different "internet" IP addresses, don't they? check out http://www.centralinfo.net -- Peter \\|// (o o) +-------------------------oOOo-(_)-oOOo-----------------------------+ EMail : mailto:pccb(at)yahoo(dot)com PGP Key : http://www.pchiu.com/pgpkey.txt PGP Fingerprint: 949E 0F39 422D 53EA F463 8C06 9E07 5078 838B 4D20 +-------------------------------------------------------------------+ Plate voltage too low on demodulator tube To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 18:51:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from math.uic.edu (galois.math.uic.edu [131.193.178.114]) by hub.freebsd.org (Postfix) with SMTP id CECB037B4F9 for ; Thu, 19 Oct 2000 18:51:52 -0700 (PDT) Received: (qmail 13979 invoked by uid 31415); 20 Oct 2000 01:52:17 -0000 Date: 20 Oct 2000 01:52:17 -0000 Message-ID: <20001020015217.13978.qmail@math.uic.edu> From: vladimir@math.uic.edu To: freebsd-questions@freebsd.org Subject: FreeBSD's ppp and Windows Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry for a potentially off-topic question. We have a FreeBSD box that allows incoming PPP over tcp connections. Does anyone know a windows ppp client that has the same functionality (i.e. would be able to connect to a BSD box on a certain port and establish ppp connection with it over tcp)? Many Thanks, Vladimir To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 19:23:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pericles.IPAustralia.gov.au (pericles.IPAustralia.gov.au [202.14.186.30]) by hub.freebsd.org (Postfix) with ESMTP id E6D0737B4CF for ; Thu, 19 Oct 2000 19:23:10 -0700 (PDT) Received: (from smap@localhost) by pericles.IPAustralia.gov.au (8.9.3/8.9.3) id NAA09395 for ; Fri, 20 Oct 2000 13:23:09 +1100 (EST) (envelope-from anwsmh@IPAustralia.Gov.AU) Received: from disc-4-161.aipo.gov.au(10.0.4.161) by pericles.IPAustralia.gov.au via smap (V2.0) id xma009385; Fri, 20 Oct 00 13:23:05 +1100 Received: from localhost (anwsmh@localhost) by stan.aipo.gov.au (8.9.3/8.9.3) with ESMTP id NAA19572 for ; Fri, 20 Oct 2000 13:23:04 +1100 (EST) (envelope-from anwsmh@IPAustralia.Gov.AU) X-Authentication-Warning: stan.aipo.gov.au: anwsmh owned process doing -bs Date: Fri, 20 Oct 2000 13:23:04 +1100 (EST) From: Stanley Hopcroft X-Sender: anwsmh@stan.aipo.gov.au To: freebsd-questions@FreeBSD.oRG Subject: ReadLine support in Perl (perl -de 1, cpan shell etc) broken in 4.1-RELEASE ? 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 Ladies and Gentlemen, I am writing to ask, please would you provide me some suggestions about dealing with a vexing problme with Perl on two new 4.1-RELEASE installations ? The problem is that when Bundle::CPAN (1.57) is installed to get history and line editing (very useful in the debugger, where I spend a lot of time.), it doesn't work. When I press the uparrow key I hear a bleep and the previous lines input doesn't appear opposite the current debugger prompt eg this does *not* happen on the problem machines. DB<3> $x = "ReadLine fine here" DB<4> $x = "ReadLine fine here" # after pressing Up Arrow on a # 4.1-R box that was upgraded # with sysinstall. The problem occurs - under X and on a console - is not affected by changing the term type It does not happen on boxes that have been upgraded to 4.1-R with sysinstall. The commnand history and editing functions in the shell (/bin/csh) work fine. This may be a Perl problem rather than a FreeBSD problem; your telling me how to distinguish them would be helpful. Thank you, Yours sincerely. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 19:35: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id E885737B479 for ; Thu, 19 Oct 2000 19:34:56 -0700 (PDT) Received: (qmail 19008 invoked by uid 100); 20 Oct 2000 02:34:55 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.44879.402723.564087@guru.mired.org> Date: Thu, 19 Oct 2000 21:34:55 -0500 (CDT) To: Antoine Beaupre Cc: questions@freebsd.org Subject: Re: Adding the package concept to the ports collection In-Reply-To: <63199379@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Antoine Beaupre writes: > I was wondering if it would be possible to add the 'package' concept to > the ports collection in a sense that the database would include the name > of the package or if there's none, why. An install target would then only > have to download the package and save the compilation time. I also > think that the package would be smaller than the source, and so, faster to > download. Yup, that's the advantages of packages. However, you can't go from installing a port to installing packages. For instance, I set LOCALBASE=/usr/opt in /etc/make.conf. A prebuilt package with LOCALBASE=/usr/local won't work, because the libraries it's looking for won't be in the right place, even though the dependencies are met. Not to mention violating my system policies by installing what I consider an optional part of FreeBSD(*) in /usr/local. If you really want this, why don't you apply it to the port you're working on, and install the package instead of the port? Once you've got things set up right, it should all work as you describe. Caveat: I don't use packages, and so have never done this. > I think the port collection as it is now has several drawbacks, in terms > of a software indexing facility, that is. Upgrading ports is a nightmare. > The more we go, the more various ports have dependency lists that grow and > grow. So when a single package such as GTK or ORBit gets updated, a whole > chunk of ports have to be updated too. The problem is that > "updated" means: Well, the details aren't right (updating GTK may cause a package dependent on it to be updated, but it doesn't mean you have to get the new distfile for that package; just recompile it), but updating ports is certainly a problem. In theory, it's pretty easy: generate the dependency list for each package to be updated. merge and tsort the lists of ports foreach port in the list: try: make in pkg_delete the old version except: Tell the user it died and bail reverse the port list foreach port in the list: try: make install in except: Tell the user it died and bail Note that "pkg_version -c" tries to do this for you. However, "pkg_version -c" has at least one serious problem. All my installed packages are up to date - but I get *96* lines from "pkg_version -c", because there are multiple versions of some of the ports. In some of these cases, it just deinstalls and rebuilds the current port. In some, it's going to upgrade a package where I'm running an older one (which is still in the ports tree) on purpose. In the worst case - well, consider this: # # glib # multiple versions (index has 1.2.8,1.3.1) # cd /usr/ports/devel/glib13 make && pkg_delete -f glib-1.2.8 make install It's going to delete my glib 1.3, and install 1.2! I don't even want to think what it would have done if I'd had japanese/w3m installed instead of www/w3m. And right there is the root of the problem. A port name has two selectors - the category and the name: www/w3m; sysutils/grub, devel/glib13, etc. In that last case, the "name" is a composite of the package name and the version. Packages just capture the name and version, and don't notice when the version creeps into the name. That's what kept me from turning the above pseudo code into a real script: I couldn't figure out a reliable way to go from a package name to a port name. I figure that the script wouldn't be much longer than the pseudo, as a good HLL has most of the operations needed as primitives or in a library. But getting that is a pain. I though briefly about trying to do this by grovelling through the ports Makefile, but that's - well, you can see how well pkg_version does at it. > The problem with the current package system is that it does not resolve > dependency problems by itself as the ports does. How could it anyways? A > package is all it says: a package of information regarding a particular > piece of software. It might include information on which other packages > are needed by this one, but nothing else. First, packages *do* include the dependency information. And what else do you need? pkg_add will auto-install the required packages for you - which is exactly what you're wanting it to do, right? Come to that, if you don't believe that packages can do this job, then there's no way you can make ports that load packages do it, as the port may depend on a package that depends on things you don't have installed. Once you fix that, you might as well just install the package you're building instead of the port, and let the software that deals with package technologies work there. Except it's already been fixed, and packages behave like you want. > Is it me or all this woudn't be that hard to implement? Just a PACKAGENAME > variable along with a version variable of some sort (PORTVERSION would > probably be OK) and a PACKAGE_SITE hierarchy of variables. That would be > the biggest desgin problem... The package system needs a rewrite before you can add a formal "update" method for ports, which would be nice to have. If you're going to do that, jkh has a wishlist for packages that include things like an archive format with a directory, a secure scripting language, a device-independent UI library, etc. > I would be personnally ready to work on the ports for this to happen but I > want to know wether or not this would be a good idea, or if there's > already some work in pregress. Ok, the right place to talk about ports is ports@freebsd.org. However, this is a recurring topic there. Between that and it not being clear about whether you wanted to work on packages or ports, I left the discussion here. If you're wanting to work on the package system, check with jkh. The interface library is being worked on, but I'm not sure about the rest of it. ; Thu, 19 Oct 2000 19:48:39 -0700 (PDT) Received: (qmail 32468 invoked by uid 100); 20 Oct 2000 02:48:38 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.45702.690867.683694@guru.mired.org> Date: Thu, 19 Oct 2000 21:48:38 -0500 (CDT) To: "Tom Hines" Cc: questions@freebsd.org Subject: Re: 40upgrade kit In-Reply-To: <124693850@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Tom Hines writes: > Whoa. It's much worse than I thought. Now none of my devices work. > They're either not found or not configured. What happened? I need to > reverse that upgrade kit, but it deleted my old libc.so.3. Please help. Well, the obvious solution is to boot your disaster recovery disk and restore it from the backup. Failing that, there should be a copy of libc.so.3 on the fixit disk in /usr/lib/. But it sounds like much worse things are wrong - hardware problems, or possibly a disk in really, really sad shape. Check the log files for hardware errors, and contemplate restoring from backup or reinstalling. tom > > > >From: "Tom Hines" > >To: freebsd-questions@freebsd.org > >Subject: 40upgrade kit > >Date: Thu, 19 Oct 2000 15:53:38 EDT > > > >Hi. Relative newbie here. I was browsing the freebsd web site the other > >day and noticed the section on upgrade kits at > >http://www.freebsd.org/ports/. Because I run 4.0-RELEASE, I installed the > >4.0 to 4-stable upgrade kit, and now I can't install any ports. It fails > >on > >fetch with the message "bad system call". I noticed that one of the files > >upgraded by the kit was libc.so, which is a symlink that was pointing to > >libc.so.3 and now points to the new libc.so.4. I suspect that might be the > >problem. > > > >I tried deleting the package with pkg_delete, but got a message saying that > >was impossible because it would render my system useless. What can I do? > >Can I just point libc.so back to libc.so.3? I vaguely recall a utility to > >do such things called ldd or something but I can't remember. > > > >tia, > >tom > > > > > >_________________________________________________________________________ > >Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > > >Share information about yourself, create your own public profile at > >http://profiles.msn.com. > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of the message > > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 19:56:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id D04B537B4C5 for ; Thu, 19 Oct 2000 19:56:51 -0700 (PDT) Received: (qmail 39978 invoked by uid 100); 20 Oct 2000 02:56:51 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.46195.100129.699973@guru.mired.org> Date: Thu, 19 Oct 2000 21:56:51 -0500 (CDT) To: Marko Ruban Cc: questions@freebsd.org Subject: Re: Routing issue with cable modem In-Reply-To: <42827707@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Marko Ruban writes: > I guess no one knew the answer to my original question about getting RCN > cable modem (with analog upstream line dialup) to work. So here's a > somewhat simplified question. I narrowed the problem down to routing. > Cable modem does dial out when I try to ping something on it's subnet > (10.17.56.###), however it does not respond to any broadcast ARP queries > about location of DNS server. Where did you get the subnet number from? BTW, my (limited) experience with cable modems is that you get DHCP. Did you try that? > Goal -- to add cable modem as the default gateway to internet. I agree with Mikko - I've as yet to see a cable modem that had an IP address of it's own. You may well have problems trying to share it across multiple boxes. In which case, the easy solution is to put a second NIC in your FreeBSD box, and have an xover cable between it and the modem. That NIC is configured for the cable modem, the other is configured for your network, and then use nat to fix addresses. If the cable modem is doing DHCP and you set up the FreeBSD box as a DHCP server, your windows box will keep working without touching a thing. ; Thu, 19 Oct 2000 20:01:52 -0700 (PDT) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id XAA302930; Thu, 19 Oct 2000 23:01:46 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <8C224DC088D8D111B67D0000F67AC17E01A93F4B@ldcmsx01.lc.ca.gov> References: <8C224DC088D8D111B67D0000F67AC17E01A93F4B@ldcmsx01.lc.ca.gov> Date: Thu, 19 Oct 2000 23:01:45 -0400 To: Drew Tomlinson , "'Rick Hamell'" From: Garance A Drosihn Subject: Re: VMware? (Was RE: installation woes) Cc: freebsd-questions@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 9:13 AM -0700 10/19/00, Drew Tomlinson wrote: >someone else wrote: > > You're looking for VMware... it runs anything on > > anything... In fact NT will run better on FreeBSD then > > NT by itself from what I've seen. It's obvious that > > you've a skewed outlook on how the computer > >It sounds too good to be true. Is VMware a real thing? Where >can I find more information on it. It does not quite "run anything on anything", but it is very useful. There is a version for WinNT, and a version for Linux. There is a freebsd port which gets the linux version working under FreeBSD. The linux version works better under linux than it does under freebsd (which is not much of a surprise), but it is still quite useful under freebsd. I use it to run either linux netbsd or win2k systems without having to shutdown freebsd on my system. In my experience, the latest version of the vmware2 port will probably assume you are running the latest version of freebsd-stable. Some discussion of vmware on freebsd can be found on the mailing list freebsd-emulation@FreeBSD.ORG --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 20: 5:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id EACE637B479 for ; Thu, 19 Oct 2000 20:05:10 -0700 (PDT) Received: (qmail 40167 invoked by uid 100); 20 Oct 2000 03:05:10 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.46693.860465.246500@guru.mired.org> Date: Thu, 19 Oct 2000 22:05:09 -0500 (CDT) To: "Otter" Cc: questions@freebsd.org Subject: Re: FW: booting problems with SMP enabled In-Reply-To: <21530609@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Otter writes: > I've got a new install of 4.1-RELEASE here. > Hardware consists of a dual processor board (unknown brand), > 2 Intel P2-300's, a single 128MB DIMM, onboard scsi > (disabled), on a 13GB IDE drive. The machine boots and runs > fine with a single processor. For testing purposes, I've > swapped them around to make sure that both CPU's are working > as they should. No problems there. When I boot up with the > SMP kernel (only the SMP and APIC_IO lines uncommented) it > hangs in the boot process at where it says "APIC_IO: testing > 8254 interrupt delivery". At this point, the machine locks > and requires me cycling power via the switch on the power > supply. I'm at a loss. I've got a bank of dipdswitches on > the board and have changed a few at random, but no luck so > far. Without knowing the brand of the board, I'm not sure > how I can take this any further. Any tips/ideas/suggestions? TIA. Check the board manufacturers web site for a manual! Also notice that "An SMP kernel will ONLY run on an Intel MP spec. qualified motherboard" and "Be sure to disable 'cpu I386_CPU' && 'cpu I486_CPU' for SMP kernels." (The latter may not be required for your version, but won't hurt in any case). Also, check the stepping number of the P2's (on the chip, somewhere, one hopes, or possibly in dmesg when the system boots) and then check the intel web to make sure the two chips will work *together*. While each may work fine, if you've don't have compatible stepping numbers, they won't work together. ; Thu, 19 Oct 2000 20:07:55 -0700 (PDT) Received: (qmail 40253 invoked by uid 100); 20 Oct 2000 03:07:54 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14831.46858.679894.899373@guru.mired.org> Date: Thu, 19 Oct 2000 22:07:54 -0500 (CDT) To: Luke Cowell Cc: questions@freebsd.org Subject: Re: access through modem In-Reply-To: <86181639@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Luke Cowell writes: > I have a freebsd 4.1 system complete with modem. I want to be able to dial > in and administrate the box. How do I configure dialin access to take a > tty ? is there a how to on this somewhere ? cc me in reply Try editing /etc/ttys, and changing the "off" to "on" for the four dialup lines, then send a HUP to init. After you dial in, you can find out which tty you are on, turn the others off, and HUP init again. The man pages for ttys and getty might be worth a look as well. ; Thu, 19 Oct 2000 20:08:24 -0700 (PDT) Received: (from wonko@localhost) by entropy.tmok.com (8.9.3/8.9.3) id XAA95846 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 23:12:38 -0400 (EDT) From: Brian Hechinger Message-Id: <200010200312.XAA95846@entropy.tmok.com> Subject: PPP woes To: freebsd-questions@freebsd.org Date: Thu, 19 Oct 2000 23:12:38 -0400 (EDT) Reply-To: wonko@tmok.com X-Useless-Header: why? because i can. X-Organization: The Ministry of Knowledge X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i'm trying to setup a tunnel between two FreeBSD boxes, i followed the instructions in man ppp(1) about setting up a tunnel. i've done everything that is described there, but i get the following error: Oct 19 22:06:08 vpn ppp[218]: tun0: Phase: deflink: read (0): No route to host after: Oct 19 22:06:05 vpn ppp[218]: tun0: LCP: deflink: SendConfigReq(1) state = Req-S ent Oct 19 22:06:05 vpn ppp[218]: tun0: LCP: MRU[4] 1500 Oct 19 22:06:05 vpn ppp[218]: tun0: LCP: MAGICNUM[6] 0x7ebb5fae Oct 19 22:06:08 vpn ppp[218]: tun0: LCP: deflink: SendConfigReq(1) state = Req-S ent Oct 19 22:06:08 vpn ppp[218]: tun0: LCP: MRU[4] 1500 Oct 19 22:06:08 vpn ppp[218]: tun0: LCP: MAGICNUM[6] 0x7ebb5fae not a very useful error message. route to what host? did i maybe miss something? thanks, -brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 20:17:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from w2xo.pgh.pa.us (ipl-229-070.npt-sdsl.stargate.net [208.223.229.70]) by hub.freebsd.org (Postfix) with ESMTP id 4733337B4D7 for ; Thu, 19 Oct 2000 20:17:16 -0700 (PDT) Received: from w2xo.pgh.pa.us (shazam.w2xo.pgh.pa.us [192.168.5.3]) by w2xo.pgh.pa.us (8.9.3/8.9.3) with ESMTP id DAA84773; Fri, 20 Oct 2000 03:15:50 GMT (envelope-from durham@w2xo.pgh.pa.us) Message-ID: <39EFF1FB.33A2318A@w2xo.pgh.pa.us> Date: Fri, 20 Oct 2000 03:19:23 -0400 From: Jim Durham Organization: dis- X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Mike Tancsa Cc: questions@freebsd.org Subject: Re: Radiusd with Portmaster2 on FreeBSD4.1 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mike Tancsa wrote: > > On 18 Oct 2000 23:06:04 -0400, in sentex.lists.freebsd.questions you wrote: > > >I'm using the cistron radiusd on FreeBSD 4.1 with an old Portmaster > >2E to authenticate a user base of around 100 users. > > It does work, as we have several such boxes still in a few pops. What does > /var/log/radius show for the error ? ie. why is RADIUS rejected them ? > Also, is your radius server running on a machine that has multiple > interfaces ? If so, specify the address to bind to explicitly. > Since I posted, I played around with it today and discovered that turning on PAP authentication on the Portmaster made it work. The docs indicate that you have to have CHAP off for the authentication to work, but I don't believe it said that PAP must be on, although it did indicate that PAP would work. I just tried it in desperation, and it started working. There were no error messages with PAP and CHAP off and running radiusd in "-x -x" mode for max debugging. The only clue was that it kept reporting a CHAP password was being sent from the Portmaster, even though CHAP was off. I've been watching the log file all night, and I haven't seen a failed authentication yet, so I guess I'm all OK, but puzzled. Thanks for the interest. Jim Durham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 20:41:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f51.pav1.hotmail.com [64.4.31.51]) by hub.freebsd.org (Postfix) with ESMTP id 43D4A37B4F9 for ; Thu, 19 Oct 2000 20:41:20 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 19 Oct 2000 20:41:20 -0700 Received: from 24.29.105.205 by pv1fd.pav1.hotmail.msn.com with HTTP; Fri, 20 Oct 2000 03:41:19 GMT X-Originating-IP: [24.29.105.205] From: "Eric Osterweil" To: questions@FreeBSD.org Subject: Why does chflags cause make install to fail? Date: Fri, 20 Oct 2000 03:41:19 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Oct 2000 03:41:20.0075 (UTC) FILETIME=[9C00A1B0:01C03A47] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I needed to recompile my kernal (to enable natd) in freeBSD 4.1.1-stable, and when I run make install I get an error telling me that the "chflags noschg /kernal" command is not allowed. Then the "mv /kernal /kernal.old" fails and dumps the install process. I cannot find any reference to this on the freeBSD.org site. I also tried to run "chflags nouchg /kernal", but it also fails. Is there something else I should try? Thanks, Eric _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 20:59:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.tetronsoftware.com (ns1.tetronsoftware.com [64.217.1.41]) by hub.freebsd.org (Postfix) with ESMTP id 1A27C37B4E5 for ; Thu, 19 Oct 2000 20:59:32 -0700 (PDT) Received: from ns1.tetronsoftware.com (ns1.tetronsoftware.com [64.217.1.41]) by ns1.tetronsoftware.com (8.11.0/8.9.3) with ESMTP id e9K3xOl10457; Thu, 19 Oct 2000 22:59:24 -0500 (CDT) (envelope-from zeus@tetronsoftware.com) Date: Thu, 19 Oct 2000 22:59:24 -0500 (CDT) From: Gene Harris To: Luke Cowell Cc: questions@FreeBSD.ORG Subject: Re: access through modem In-Reply-To: <5.0.0.25.2.20001019165816.035ff220@mail.imag.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 It has been a while since I set this up, but it is really simple. I made the following changes to my /etc/ttys file: ttyd0 "/usr/libexec/getty std.38400" dialup on ttyd1 "/usr/libexec/getty std.57600" dialup on secure I attached two modems, one to each serial port on my motherboard. I then dumped two files into /etc/ppp: options.ttyd0 options.ttyd1 Each file contains two ip addresses, one for the server (modem) side, and one assigned to the dial up user e.g. 192.168.114.1:192.168.114.2 <<== contents of options.ttyd0 192.168.114.3:192.168.114.4 <<== contents of options.ttyd1 The only semi hard part was getting the 192.168 address added back into my firewall and NAT so user could go out on the internet, but it only took a few minutes of looking at the ipfw logs for rejected packets to get it figured out. Basically, I had to set the dial up client's DNS and that was it. You will also need to SIGHUP init to get it to reread the ttys file. HTH, Gene On Thu, 19 Oct 2000, Luke Cowell wrote: > I have a freebsd 4.1 system complete with modem. I want to be able to dial > in and administrate the box. How do I configure dialin access to take a > tty ? is there a how to on this somewhere ? cc me in reply > > Thanks. > > ----------------------------------------------------------------------- > Luke Cowell > Motionlink Internet > Senior Systems Administrator > http://www.imag.net > ----------------------------------------------------------------------- > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Tetron Software, LLC http://www.tetronsoftware.com FreeBSD Apache PostgreSQL Oracle 8/8i Windows 95/98/NT Visual C Visual Basic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 21: 2:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id DFD6737B479 for ; Thu, 19 Oct 2000 21:02:11 -0700 (PDT) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.9.3/8.9.3) with ESMTP id VAA72896; Thu, 19 Oct 2000 21:01:58 -0700 (PDT) Message-ID: <39EFC709.372C3B1F@transbay.net> Date: Thu, 19 Oct 2000 21:16:09 -0700 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Bill Pierskalla Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Failure to compile References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In my experience if compiles keep crapping out with SIGSEGV, etc. it implies the motherboard is not to be trusted. It could be bad cache memory, but if turning off the cache (or using "real good RAM") doesn't fix it, toss the motherboard. You could try playing with memory and other timing parameters but don't waste too much time on it. Assuming you want a working system more than you want That Particular System to work. It's not the contents of the config file. -ecsd Bill Pierskalla wrote: > > My new kernel wont compile it keeps exiting on a signal 11. I am running > this on an old P200 with 64MB RAM. and a 4GB IDE disk. First I removed all > the extraneous info and it failed and then I added only the essential > IPFIREWALL options. I include the kernel "HEIMDALL" and the compile dump > with exit. > Any help would be appreciated. I usually work with Linux but a friend said > "try FreeBSD it's better" but the documentation available for Linux is > better. > Bill Pierskalla -newbie to BSD- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 21:30: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 00D7137B479 for ; Thu, 19 Oct 2000 21:30:01 -0700 (PDT) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.9.3/8.9.3) with ESMTP id VAA73846; Thu, 19 Oct 2000 21:29:51 -0700 (PDT) Message-ID: <39EFCD92.FDD52B34@transbay.net> Date: Thu, 19 Oct 2000 21:44:02 -0700 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ahze@baddog.yi.org Cc: freebsd-questions@freebsd.org Subject: Re: DMA66/33 ? References: <20001020010448.F18DF1D89@baddog.yi.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mike johnson wrote: > > Durring the boot I get this message > > ata0-master: DMA limited to UDMA33, non-ATA66 compliant cable > > Does this mean if i get a cable that can handle DMA 66 I can have 66 vs 33? Probably. Also the BIOS should report what it's using before you even get to the OS. The 66-cables are stiff, with a blue connector to plug into the motherboard, reasonably easy to distinguish from normal IDE cables. Also if you look closely you will see one wire notched out for a length of about 4mm towards one end of the cable (a hole in the cable.) Remember to plug a slave drive in the MIDDLE and the master at the END. Don't leave the end unplugged if the middle connector is used. It didn't used to matter but now it does, or it could. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 22:35:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 5484C37B479 for ; Thu, 19 Oct 2000 22:35:32 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 53D031F19; Thu, 19 Oct 2000 22:35:31 -0700 (PDT) Subject: Re: Why does chflags cause make install to fail? In-Reply-To: "from Eric Osterweil at Oct 20, 2000 03:41:19 am" To: Eric Osterweil Date: Thu, 19 Oct 2000 22:35:31 -0700 (PDT) Cc: questions@FreeBSD.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001020053531.53D031F19@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > I needed to recompile my kernal (to enable natd) in freeBSD 4.1.1-stable, > and when I run make install I get an error telling me that the "chflags > noschg /kernal" command is not allowed. Then the "mv /kernal /kernal.old" > fails and dumps the install process. > > I cannot find any reference to this on the freeBSD.org site. I also tried > to run "chflags nouchg /kernal", but it also fails. Is there something else > I should try? The 'schg' flag (which is set on the kernel) can't be unset if you're running in securelevel >= 1. If that's the case, you need to lower the securelevel. See init(8) for details. Hope this helps P.S. It's kernEl, not kernAl. -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. I've used up all my sick days so I'm calling in dead! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 23: 0:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 117EA37B4CF for ; Thu, 19 Oct 2000 23:00:12 -0700 (PDT) Received: from [209.96.179.17] (helo=kjones) by wilma.widomaker.com with smtp (Exim 3.16 #2) id 13mVDu-0005cQ-00 for freebsd-questions@freebsd.org; Fri, 20 Oct 2000 02:00:10 -0400 Message-Id: <3.0.5.32.20001020015756.0082c450@widomaker.com> X-Sender: khjones@widomaker.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Fri, 20 Oct 2000 01:57:56 -0400 To: freebsd-questions@freebsd.org From: "Kennie H. Jones" Subject: PPP connects but cannot access remote computers Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I wrote yesterday because I had used: -Kernel PPP: it would connect but I could not access (ping, telnet, etc) any computers outside my own local net (Internet). -User PPP: was invoked in auto mode so, as I executed ping, it did not dial (apparently the same reason as Kernel PPP - wasn't sending through ppp router so it didn't think it should dial). I found the problem: somehow because of options I chose during installation (I didn't add it to the file) the following line was entered in the /etc/rc/conf file: defaultrouter="10.0.0.1" This explains the problem: Although both Kernel and User PPP are supposed to set the default router to the dynamically assigned remote address from the ISP, this line prevented it from happening. When I removed this line, I was able to ping, telnet, ftp to anywhere on the Internet. Kennie H. Jones 757-868-7567 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 23:16:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from centre.radiant.ru (centre.radiant.ru [194.186.111.142]) by hub.freebsd.org (Postfix) with ESMTP id 0FF9537B4D7 for ; Thu, 19 Oct 2000 23:16:07 -0700 (PDT) Received: from accord ([192.168.10.33]) by centre.radiant.ru (8.9.2/8.9.2) with SMTP id LAA32761 for ; Fri, 20 Oct 2000 11:22:23 +0500 (SAMST) (envelope-from fdbkkf@centre.radiant.ru) Message-ID: <000801c03a65$a5e79760$210aa8c0@radiant.ru> Reply-To: "Sergey Nikolayev" From: "Sergey Nikolayev" To: Subject: A question about log Date: Fri, 20 Oct 2000 11:16:15 +0400 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0005_01C03A87.29566E20" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C03A87.29566E20 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Dear sirs, I've got a little question. Our company, Radiant Computers Ltd., located in Samara, Russia, is using a FreeBSD-based proxy (Squid? - not sure) to connect our office to the Internet. It is possible to get logs and control what was accessed, but what do all those records mean? In practice, I'm interested to see time when an URL was accessed, and the downloaded resource size. I've attached a single log record, and want to know what all those fields mead. I hope you can help me. Regards, Sergey Nikolayev. ------=_NextPart_000_0005_01C03A87.29566E20 Content-Type: text/plain; name="log-.txt" Content-Disposition: attachment; filename="log-.txt" Content-Transfer-Encoding: quoted-printable LAST RECORD DATED OCT.12,2000: 971336136.517 639 192.168.10.33 TCP_MISS/200 373 GET = http://www.aol.com/gr/transpixel.gif - DIRECT/www.aol.com image/gif ^ ^ ^ ^ ^ ^ ^ = ^ ^ =20 a b c d e f g = h i =20 a ? b ? c Caller host IP address d Protocol used e ? f Request type? g URL h - i ? This particular GIF is 49 bytes size. ------=_NextPart_000_0005_01C03A87.29566E20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 23:21:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) by hub.freebsd.org (Postfix) with ESMTP id 64A5637B4F9 for ; Thu, 19 Oct 2000 23:21:36 -0700 (PDT) Received: from [209.96.179.17] (helo=kjones) by wilma.widomaker.com with smtp (Exim 3.16 #2) id 13mVYd-0006A7-00 for freebsd-questions@freebsd.org; Fri, 20 Oct 2000 02:21:35 -0400 Message-Id: <3.0.5.32.20001020021921.0083a250@widomaker.com> X-Sender: khjones@widomaker.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Fri, 20 Oct 2000 02:19:21 -0400 To: freebsd-questions@freebsd.org From: "Kennie H. Jones" Subject: Problem with Kernel PPP in demand mode and User PPP in alias mode 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 using FreeBSD 4.1 and I have a problem with Kernel PPP: Although the documentation says that you can add a line in the options file: demand for demand dialing, this only works if you have a static IP address for your ISP (which almost no one has). This pretty much renders Kernel PPP unless. The man page says, "The demand option implies the persist option. If this behavior is not desired, use the nopersist option after the demand option". Does "after" mean following demand on the same line or on the next line? Doesn't matter because I tried them both and neither works. I get an error message when I execute pppd saying I must use the persist option for demand. Do you know any way around this (to use Kernal PPP in demand mode)? I also found out something useful about User PPP: The docs say to use the command line option, "-alias" to facilitate IP aliasing. If you use this, the warning message, "-alias is deprecated" appears. Docs say -alias was left in for backward compatibility. But it does not work. Putting "nat enable yes" in the ppp.conf default section does work. Kennie H. Jones 757-868-7567 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 23:42:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web4406.mail.yahoo.com (web4406.mail.yahoo.com [216.115.105.37]) by hub.freebsd.org (Postfix) with SMTP id BB16237B4C5 for ; Thu, 19 Oct 2000 23:42:51 -0700 (PDT) Message-ID: <20001020064251.103.qmail@web4406.mail.yahoo.com> Received: from [194.177.210.231] by web4406.mail.yahoo.com; Thu, 19 Oct 2000 23:42:51 PDT Date: Thu, 19 Oct 2000 23:42:51 -0700 (PDT) From: Xenofon Subject: problem with installing linux_base port 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 When i make install, i get: failed to open /etc/mnttab: No such file or directory for every file in the package. There's not such file in my disk. How can i fix it? Thanks __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Oct 19 23:45:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from atlas.dnai.com (atlas.dnai.com [207.181.194.95]) by hub.freebsd.org (Postfix) with ESMTP id 3FA0237B4D7 for ; Thu, 19 Oct 2000 23:45:15 -0700 (PDT) Received: from azoth.dnai.com (azoth.dnai.com [207.181.194.94]) by atlas.dnai.com (8.9.3/8.9.3) with ESMTP id XAA81957 for ; Thu, 19 Oct 2000 23:45:15 -0700 (PDT) Received: from mini.chicago.com (dnai-216-15-39-222.cust.dnai.com [216.15.39.222]) by azoth.dnai.com (8.9.3/8.9.3) with ESMTP id XAA39403 for ; Thu, 19 Oct 2000 23:45:14 -0700 (PDT) Received: (from andy@localhost) by mini.chicago.com (8.9.3/8.9.3) id XAA13293 for freebsd-questions@freebsd.org; Thu, 19 Oct 2000 23:46:37 -0700 (PDT) (envelope-from andy) From: Andy Hogben Message-Id: <200010200646.XAA13293@mini.chicago.com> Subject: asr driver (Adaptec SCSI Raid) To: freebsd-questions@freebsd.org Date: Thu, 19 Oct 2000 23:46:37 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL54 (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 see Mike Smith has been very busy and committed the asr driver to 4.1.1 already. I have what may be some stupid questions about it but just want to make sure of things before I tell my boss we should go and buy a $700 controller . . . 1) I'm afraid the 'SCSI Raid' name is a little too generic for my current state of paranoia. :-) To confirm, this refers to the 2100S, 3200S, etc. cards? AND, this is what the driver supports? 2) I know in the past some drivers have had limitations where you couldn't boot from a drive on the controller (like the old AMI driver). I know this was a while ago but, I want to confirm that this is not the case with the asr driver (i.e., you CAN boot off of a mirrored setup using an asr supported device). 3) Anyone have any experience with these cards? Any info would be very much appreciated. Andy ps Thanks for all the work Mike! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 0: 6:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id B335337B479 for ; Fri, 20 Oct 2000 00:06:38 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9K761C00548; Fri, 20 Oct 2000 10:06:01 +0300 (EEST) Date: Fri, 20 Oct 2000 10:06:01 +0300 From: Giorgos Keramidas To: Xenofon Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Support for greek Message-ID: <20001020100601.A502@gray.westgate.gr> References: <20001019153740.11454.qmail@web4403.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001019153740.11454.qmail@web4403.mail.yahoo.com>; from adepali@yahoo.com on Thu, Oct 19, 2000 at 08:37:40AM -0700 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 08:37:40AM -0700, Xenofon wrote: > > How can i display greek (ISO8859_7) text in xterm? How > can i write greek text? For X11, you can (re)use the work done by the HELLUG (Hellenic Linux Users Group), which you will find at http://www.hellug.gr/ Look for the project called `graphis', an effort to make a collection of keyboard maps, and fonts available for reading and writing in Greek under XFree86. I can also send a version of lucida-typewriter (my favorite font, by far) at 12 pt that includes Greek glyphs :-) Ciao, Giorgos. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 0:49:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ng4L117.i.spray.se (site.spray.se [195.58.123.54]) by hub.freebsd.org (Postfix) with ESMTP id DB06237B4C5 for ; Fri, 20 Oct 2000 00:49:10 -0700 (PDT) Received: (from jopet@localhost) by ng4L117.i.spray.se (8.11.1/8.9.3) id e9K7nFL80092 for questions@FreeBSD.ORG; Fri, 20 Oct 2000 09:49:15 +0200 (CEST) (envelope-from jopet) Date: Fri, 20 Oct 2000 09:49:15 +0200 From: Johan Pettersson To: FreeBSD question Subject: limit bandwidth for users dir Message-ID: <20001020094915.A79564@spray.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! We have problem with some users and want to limit bandwith for them, for example: /www/user1/public_html/ <- good user only text files /www/user2/public_html/ <- bad user a lot of movies Is it possible to limith bandwith for only user2's directory ? I haven't found anything that suit our needs =/ Best regards Johan -- Spray Network Services Stockholm | Sweden Cell: +46(0)708 402 836 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 1: 7:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f180.law9.hotmail.com [64.4.9.180]) by hub.freebsd.org (Postfix) with ESMTP id C680C37B4E5 for ; Fri, 20 Oct 2000 01:07:54 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 20 Oct 2000 01:07:54 -0700 Received: from 195.66.101.66 by lw9fd.law9.hotmail.msn.com with HTTP; Fri, 20 Oct 2000 08:07:54 GMT X-Originating-IP: [195.66.101.66] From: "Dimitri T." To: keramida@ceid.upatras.gr Cc: adepali@yahoo.com, freebsd-questions@FreeBSD.ORG Subject: Re: Support for greek Date: Fri, 20 Oct 2000 08:07:54 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Oct 2000 08:07:54.0461 (UTC) FILETIME=[D96640D0:01C03A6C] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi, Some months ago I installed some greek fonts from the linux project 'graphis' and indeed I was at last able of reading in greek under X. I still can't figure out though how to _write_ in greek!? :^( (am I missing the obvious?) Any clue is welcome.. And Giorgo, please send me that lucida typewr. if you don't mind.. thanks, Dimitri > > How can i display greek (ISO8859_7) text in xterm? How > > can i write greek text? > >For X11, you can (re)use the work done by the HELLUG (Hellenic Linux >Users Group), which you will find at http://www.hellug.gr/ > >Look for the project called `graphis', an effort to make a collection >of keyboard maps, and fonts available for reading and writing in Greek >under XFree86. > >I can also send a version of lucida-typewriter (my favorite font, by >far) at 12 pt that includes Greek glyphs :-) _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 1:18:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gray.westgate.gr (gray.westgate.gr [212.205.119.66]) by hub.freebsd.org (Postfix) with ESMTP id DEEA237B479 for ; Fri, 20 Oct 2000 01:18:38 -0700 (PDT) Received: (from charon@localhost) by gray.westgate.gr (8.11.1/8.11.1) id e9K8Hvc02478; Fri, 20 Oct 2000 11:17:57 +0300 (EEST) Date: Fri, 20 Oct 2000 11:17:57 +0300 From: Giorgos Keramidas To: "Dimitri T." Cc: adepali@yahoo.com, freebsd-questions@FreeBSD.ORG Subject: Re: Support for greek Message-ID: <20001020111757.A2346@gray.westgate.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from midios4@hotmail.com on Fri, Oct 20, 2000 at 08:07:54AM +0000 X-PGP-Fingerprint: 3A 75 52 EB F1 58 56 0D - C5 B8 21 B6 1B 5E 4A C2 X-URL: http://students.ceid.upatras.gr/~keramida/index.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 08:07:54AM +0000, Dimitri T. wrote: > hi, > > Some months ago I installed some greek fonts from the linux project > 'graphis' and indeed I was at last able of reading in greek under X. > > I still can't figure out though how to _write_ in greek!? :^( > (am I missing the obvious?) Oh, it's easy. Just grab ftp://gray.westgate.gr/pub/greek/GRkbd-1.3.2.tar.gz and install it somewhere under /usr/local/bin/grkbd first. Then in your ~/.xinitrc add the following: grkbd -nowin & > And Giorgo, please send me that lucida typewr. if you don't mind.. The font can be found in a local copy I have at ftp://gray.westgate.gr/pub/greek/lucida-gr.tar.gz Mind you, I don't remember where I found the 12 pt version, so if 12 points are not exactly what you would be happy with, I'm afraid I can't help :-/ Unzip this archive under /usr/X11R6/lib/X11/fonts and add the path to your FontPath statements in XF86Config. To have xterms fire up with lucida-typewriter-greek as their font, you need to merge the following resources with your ~/.Xresources file: XTerm*font: -greek-lucidatypewriter-medium-r-normal-sans-12-120-75-75-m-70-iso8859-7 -- Giorgos Keramidas, For my public pgp2 key: finger -l keramida@diogenis.ceid.upatras.gr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 2:18:58 2000 Delivered-To: freebsd-questions@freebsd.org Received: from n5ial.gnt.com (n5ial.gnt.com [204.49.69.6]) by hub.freebsd.org (Postfix) with ESMTP id C412537B4E5 for ; Fri, 20 Oct 2000 02:18:54 -0700 (PDT) Received: (from jim@localhost) by n5ial.gnt.com (8.7.5/8.7.3) id EAA10104 for freebsd-questions@FreeBSD.ORG; Fri, 20 Oct 2000 04:14:40 -0500 Date: Fri, 20 Oct 2000 04:14:39 -0500 From: Jim Graham To: freebsd-questions@FreeBSD.ORG Subject: Re: Videocard query Message-ID: <20001020041439.A9328@n5ial.gnt.net> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: <00b801c0394a$bdf2e830$837e03cb@dougy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <00b801c0394a$bdf2e830$837e03cb@dougy>; from Doug Young on Thu, Oct 19, 2000 at 07:31:10AM +1000 X-PGP: see http://www.gnt.net/~n5ial for PGP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Oct 19, 2000 at 07:31:10AM +1000, Doug Young wrote: > From: "Daniel Bye" > > > ATI cards are available for quite cheap to quite expensive, but they WORK > > with minimal fuss. I also use a Xpert98-based card, and it is excellent. > > Thanks Dan ... judging from the response it appears that everyone on the > list has had good experiences with ATI stuff :) Well, almost everyone. I have an ATI Xpert 2000 (Rage 128, 32M), and have been constantly plagued with misplaced text. Quite often, text that was supposed to go in an xterm (or Eterm, or .... well, everything I've tried) window ends up in the root window.... Same goes for text that was supposed to appear in Netscape---it often ends up in the root window, too. I'm running XFree86 3.3.6 as shipped with FreeBSD 4.1.1 (well, after configuring it) with the SVGA server (picked by the config). I'm running it at 1600x1200, 32bpp. When it behaves, it's a great card. When it doesn't, it's very annoying. The question is, is it the card or the X server? And is there a fix? Later, --jim -- 73 DE N5IAL (/4) | "There is no reason anyone would want jim@n5ial.gnt.net | a computer in their home." ICBM / Hurricane: | --Ken Olsen, DEC founder, 1977 30.39735N 86.60439W | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 2:34: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from boat.mail.pipex.net (our.mail.pipex.net [158.43.128.75]) by hub.freebsd.org (Postfix) with SMTP id 6624937B4D7 for ; Fri, 20 Oct 2000 02:33:58 -0700 (PDT) Received: (qmail 5866 invoked from network); 20 Oct 2000 09:33:56 -0000 Received: from mailhost.puck.pipex.net (HELO mailhost.uk.internal) (194.130.147.54) by our.mail.pipex.net with SMTP; 20 Oct 2000 09:33:56 -0000 Received: (qmail 4715 invoked from network); 20 Oct 2000 09:33:56 -0000 Received: from camgate2.cam.uk.internal (172.31.6.21) by mailhost.uk.internal with SMTP; 20 Oct 2000 09:33:56 -0000 Received: by camgate2.cam.uk.internal with Internet Mail Service (5.5.2650.21) id <48RBL0DK>; Fri, 20 Oct 2000 10:32:55 +0100 Message-ID: From: Daniel Bye To: 'Jim Graham' , freebsd-questions@FreeBSD.ORG Subject: RE: Videocard query Date: Fri, 20 Oct 2000 10:27:37 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ah, yes. I also have a Rage 128-based card, which at the time I bought it wouldn't work at all with XFree (looked great for Q2 under Win95 - better than my Voodoo2!). As a consequence, I got the Xpert 98 card and the Rage 128 sits in a stat bag in my filing cabinet! A quick glance at www.xfree86.org reveals that full support can be achieved, using the SVGA server, with the r128 driver under 3.3.6. Check out the particular page at http://www.xfree86.org/4.0.1/Status6.html#6. 4.* supports it too, using the same r128 driver. HTH (I certainly didn't know - now I can get my ATI Rage 128 working again... cool) Dan > -----Original Message----- > From: Jim Graham [mailto:jim@n5ial.gnt.net] > Sent: Friday, October 20, 2000 10:15 AM > To: freebsd-questions@FreeBSD.ORG > Subject: Re: Videocard query > > > On Thu, Oct 19, 2000 at 07:31:10AM +1000, Doug Young wrote: > > From: "Daniel Bye" > > > > > ATI cards are available for quite cheap to quite > expensive, but they WORK > > > with minimal fuss. I also use a Xpert98-based card, and > it is excellent. > > > > Thanks Dan ... judging from the response it appears that > everyone on the > > list has had good experiences with ATI stuff :) > > Well, almost everyone. I have an ATI Xpert 2000 (Rage 128, 32M), and > have been constantly plagued with misplaced text. Quite often, text > that was supposed to go in an xterm (or Eterm, or .... well, > everything > I've tried) window ends up in the root window.... Same goes > for text that > was supposed to appear in Netscape---it often ends up in the > root window, > too. > > I'm running XFree86 3.3.6 as shipped with FreeBSD 4.1.1 (well, after > configuring it) with the SVGA server (picked by the config). > I'm running > it at 1600x1200, 32bpp. > > When it behaves, it's a great card. When it doesn't, it's > very annoying. > The question is, is it the card or the X server? And is there a fix? > > Later, > --jim > > -- > 73 DE N5IAL (/4) | "There is no reason anyone would want > jim@n5ial.gnt.net | a computer in their home." > ICBM / Hurricane: | --Ken Olsen, DEC founder, 1977 > 30.39735N 86.60439W | > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 2:42:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.otenet.gr (ns1.otenet.gr [195.170.0.2]) by hub.freebsd.org (Postfix) with ESMTP id E07F037B479 for ; Fri, 20 Oct 2000 02:42:29 -0700 (PDT) Received: from linux.gr (patr530-a151.otenet.gr [212.205.215.151]) by ns1.otenet.gr (8.10.1/8.10.1) with ESMTP id e9K9gPB00237 for ; Fri, 20 Oct 2000 12:42:26 +0300 (EET DST) Message-ID: <39F012D7.DDFF247D@linux.gr> Date: Fri, 20 Oct 2000 12:39:35 +0300 From: DJ Art Organization: HELLUG X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: The >1023 cyl. problem Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello. I need to install FreeBSD 4.0-RELEASE on a hard drive (20 GB) beyond the 1024th cylinder (actually, I need to make the slice at cylinders 2222-2482) I know that FreeBSD cannot boot from there, I have gone through the archives and the mails saying "You cannot boot ... etc etc". I want to ask 2 things: 1) Is there any workaround for this ??? 2) I've gone through the Release Notes of 4.1-RELEASE and they say that this problem is solved. So, if I install a version >= 4.1-RELEASE I will not have any problems, right ??? If that's right, can I download specially something (rather small in size) from the 4.1 or even the current branch and "fix" the 4.0-RELEASE version ?? PS: I prefer using LiLO, but I don't care if I will have to use BootEasy. -- DJ Art (aka Kyritsis Athanasios) Studying Electrical & Computer Engineering @ UPatras http://members.hellug.gr/djart To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 2:43:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nau.antar.bryansk.ru (ns2.bryansk.ru [195.239.214.80]) by hub.freebsd.org (Postfix) with ESMTP id 7C98237B4C5 for ; Fri, 20 Oct 2000 02:43:22 -0700 (PDT) Received: from zombie.antar.bryansk.ru (zombie.antar.bryansk.ru [195.239.214.68]) by nau.antar.bryansk.ru (8.9.3/8.9.1) with ESMTP id NAA26264 for ; Fri, 20 Oct 2000 13:42:46 +0400 (MSD) Received: (from kappa@localhost) by zombie.antar.bryansk.ru (8.11.0/8.11.0) id e9K9hKd02414 for questions@freebsd.org; Fri, 20 Oct 2000 13:43:20 +0400 (MSD) (envelope-from kappa@antar.bryansk.ru) X-Authentication-Warning: zombie.antar.bryansk.ru: kappa set sender to kappa@antar.bryansk.ru using -f Date: Fri, 20 Oct 2000 13:43:10 +0400 From: Alex Kapranoff To: questions@freebsd.org Subject: What to do to debug a hang on a 4.1.1-STABLE system? Message-ID: <20001020134310.A966@zombie.antar.bryansk.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.1.1-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Good day to all. We have a 4.1.1-STABLE system (rebuilt ten days ago) as our web-server and X workstation. In recent 12 days we had four total hangs. Consoles and network lock till cold reboot. Three of four times I was running X and just surfing. Then mouse freezes and ka-boom happens. No pings, no keyboard blinkenlights, nothing. This kinda bothers me and I just wanted to ask about the ways to diagnose and then shoot the trouble. Are there any ways to get a crash dump or whatever in this situation? Serial console? Syslog to a remote host? I need advice, badly. It's a PIII 600 box with a 128 of SDRAM and 76Gb on four hdds. It has an Acorp motherboard with Intel815 chipset. We've plugged in an old S3 video card to get X running (XFree86 doesn't support i815 built-in videocontroller on a FreeBSD). -- Alex Kapranoff, +7(0832)791845 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 2:49:22 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vines.webfront.net.au (vines.webfront.net.au [203.23.200.12]) by hub.freebsd.org (Postfix) with ESMTP id EED2A37B4CF for ; Fri, 20 Oct 2000 02:49:13 -0700 (PDT) Received: from bargi.webfront.net.au ([203.23.200.82]) by vines.webfront.net.au (8.9.3/8.9.3) with ESMTP id UAA74976 for ; Fri, 20 Oct 2000 20:49:02 +1100 (EST) Message-Id: <4.3.2.7.2.20001020204945.02cd66e0@203.23.200.12> X-Sender: bargi@203.23.200.12 X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Fri, 20 Oct 2000 20:51:36 +1000 To: questions@FreeBSD.ORG From: Raymond Brighenti Subject: Re: limit bandwidth for users dir In-Reply-To: <20001020094915.A79564@spray.se> 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 Hi, Possibly something in Apache may do it, but I'd say what your going to have to do is have the directories on 2 different IP addresses and use something like Dummynet to restrict the bandwidth to the IP(s) Ray At 09:49 AM 20/10/00 +0200, you wrote: >Hi! > >We have problem with some users and >want to limit bandwith for them, >for example: > >/www/user1/public_html/ <- good user only text files >/www/user2/public_html/ <- bad user a lot of movies > >Is it possible to limith bandwith for only >user2's directory ? > >I haven't found anything that suit our needs =/ > >Best regards > >Johan > >-- >Spray Network Services >Stockholm | Sweden >Cell: +46(0)708 402 836 > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 2:52:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freebsd.tekrealm.net (40bc21de.dsl.flashcom.net [64.188.33.222]) by hub.freebsd.org (Postfix) with ESMTP id 65A8037B479 for ; Fri, 20 Oct 2000 02:52:55 -0700 (PDT) Received: from elite (elite.tekrealm.net [64.188.33.218]) by freebsd.tekrealm.net (8.9.3/8.9.3) with SMTP id CAA12136 for ; Fri, 20 Oct 2000 02:52:49 -0700 (PDT) (envelope-from freebsd@tekrealm.net) Message-ID: <000f01c03a7b$81e634f0$da21bc40@tekrealm.net> From: "Elitetek" To: Subject: help with script Date: Fri, 20 Oct 2000 02:52:49 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a program that is a server, i have it loading with a script in rc.d with the boot of the machine. It listens on a certain port, but doesnt have a command line way of exiting it. i need to come up with a way to access the port it is listening on, and echo "quit" to it. i have seen things do that with myport.in and you echo to that.. how would i go about doing something like this? Thanks in advance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3: 2:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id 1C65F37B4E5 for ; Fri, 20 Oct 2000 03:02:30 -0700 (PDT) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.1/8.11.1) with ESMTP id e9KA4Fr16371 for ; Fri, 20 Oct 2000 12:04:15 +0200 (CEST) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Fri, 20 Oct 2000 12:04:15 +0200 (CEST) From: "O. Hartmann" To: freebsd-questions@freebsd.org Subject: DEC Multia and serial ports ... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a Multia box and try to put FBSD on it. Unfortunately I lost my console! The only message on the screen attached to graphical device on the multia is 'Multia SRM Console BLS V3.8-3 built on August 8 1995 at 03:22:55' I can not access the console and at the moment I have no access to any serial terminal that works. I tried a PC with a terminal data= link cable but without success (8N1, 9600Baud, FlowCtrl: None) Thanks in advance for your help. - MfG O. Hartmann ------------------------------------------------------------------- ohartman@ipamzlx.physik.uni-mainz.de Klimadatenserver-Abteilung des IPA IT Netz- und Systembetreuung Johannes Gutenberg-Universitaet Mainz Becherweg 21 D-55099 Mainz BRD/Germany Tel: +496131/3924662 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3: 3:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pcsnt1.pcsupport.no (firewall.pcsupport.no [213.184.192.251]) by hub.freebsd.org (Postfix) with ESMTP id 1C20A37B4D7 for ; Fri, 20 Oct 2000 03:03:40 -0700 (PDT) Received: by pcsnt1.pcsupport.no with Internet Mail Service (5.5.2650.21) id ; Fri, 20 Oct 2000 11:59:39 +0200 Message-ID: <35D6DEC78D64D311A92E00A0C9ECECF229706A@pcsnt1.pcsupport.no> From: Petter Andre Haugseth To: "'freebsd-questions@FreeBSD.ORG'" Subject: Problems with FreeBSD 4.1 Stable Date: Fri, 20 Oct 2000 11:59:34 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. I hope someone please can help me with some trouble I had one day trying to install FreeBSD 4.1 STABLE on my 486 DX4 100 MHz. The machine has 32 MB RAM and a !.6 GB HDD. After I have conf. the kernel and got rid of all the conflicts, I get this error right after quitting and saving the configuration: md0: Preloaded image 2949120 bytes at 0xc036cd98 md1: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 15.0 irq 11 isab0: at device 18.0 on pci0 isa0: on isab0 After this point my PC locks up. I have tried to get another CD-drive, I have replaced my ISA SB16 Soundcard, I have even removed an old parallell adapter PCI. I have a Cirrus Logic graphicsadapter... could this be the source to my problems...? I hope i get an answer on my question. Happy FreeBSD'ing .-.-.-.. Best Regards Petter Andre Haugseth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3:12: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9008.mail.yahoo.com (web9008.mail.yahoo.com [216.136.128.170]) by hub.freebsd.org (Postfix) with SMTP id 4C50037B4D7 for ; Fri, 20 Oct 2000 03:12:00 -0700 (PDT) Message-ID: <20001020101200.29971.qmail@web9008.mail.yahoo.com> Received: from [203.197.125.104] by web9008.mail.yahoo.com; Fri, 20 Oct 2000 03:12:00 PDT Date: Fri, 20 Oct 2000 03:12:00 -0700 (PDT) From: Sarasi Barman Subject: Create a new user To: 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 Dear All, Is there any program or API written in java to create the user id and password. Thanks __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3:12:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id E357137B4D7 for ; Fri, 20 Oct 2000 03:12:53 -0700 (PDT) Received: from hyperion.informatik.rwth-aachen.de (hyperion.Informatik.RWTH-Aachen.DE [137.226.112.212]) by nets5.rz.rwth-aachen.de (8.10.1/8.10.1/7) with ESMTP id e9KACbm11324; Fri, 20 Oct 2000 12:12:37 +0200 (MET DST) Received: from agamemnon.informatik.rwth-aachen.de (agamemnon.Informatik.RWTH-Aachen.DE [137.226.194.74]) by hyperion.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1/2) with ESMTP id MAA24413; Fri, 20 Oct 2000 12:12:26 +0200 (MET DST) Received: (from stolz@localhost) by agamemnon.informatik.rwth-aachen.de (8.9.1b+Sun/8.9.1-gb-2) id MAA07573; Fri, 20 Oct 2000 12:12:31 +0200 (MET DST) Date: Fri, 20 Oct 2000 12:12:31 +0200 From: Volker Stolz To: Petter Andre Haugseth Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Problems with FreeBSD 4.1 Stable Message-ID: <20001020121231.J6875@agamemnon.informatik.rwth-aachen.de> References: <35D6DEC78D64D311A92E00A0C9ECECF229706A@pcsnt1.pcsupport.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <35D6DEC78D64D311A92E00A0C9ECECF229706A@pcsnt1.pcsupport.no>; from Petter@pcsupport.no on Fri, Oct 20, 2000 at 11:59:34AM +0200 Organization: Chair for CS II, Anomalous Programming Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 11:59:34AM +0200, Petter Andre Haugseth wrote: > The machine has 32 MB RAM and a !.6 GB HDD. After I have conf. the kernel > and got rid of all the conflicts, I get this error right after quitting and > saving the configuration: > > pcib0: on motherboard > pci0: on pcib0 > pci0: at 15.0 irq 11 > isab0: at device 18.0 on pci0 > isa0: on isab0 Start with configuring the least number of devices possible and activate one after one. It's tedious, but at least you should find out which device causes the lock-up. Did you disable the pccard, too? -- Volker Stolz * stolz@i2.informatik.rwth-aachen.de * PGP + S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3:34: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from n5ial.gnt.com (n5ial.gnt.com [204.49.69.6]) by hub.freebsd.org (Postfix) with ESMTP id 98B1137B479 for ; Fri, 20 Oct 2000 03:34:01 -0700 (PDT) Received: (from jim@localhost) by n5ial.gnt.com (8.7.5/8.7.3) id FAA11240 for freebsd-questions@FreeBSD.ORG; Fri, 20 Oct 2000 05:33:58 -0500 Date: Fri, 20 Oct 2000 05:33:58 -0500 From: Jim Graham To: freebsd-questions@FreeBSD.ORG Subject: Re: Videocard query Message-ID: <20001020053358.A11218@n5ial.gnt.net> Mail-Followup-To: freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: ; from Daniel Bye on Fri, Oct 20, 2000 at 10:27:37AM +0100 X-PGP: see http://www.gnt.net/~n5ial for PGP Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 10:27:37AM +0100, Daniel Bye wrote: > > A quick glance at www.xfree86.org reveals that full support can be achieved, > using the SVGA > server, with the r128 driver under 3.3.6. Check out the particular page at > http://www.xfree86.org/4.0.1/Status6.html#6. 4.* supports it too, using the > same r128 > driver. That's what X is using...and it's not working. :-( I would very much like to know if anyone else is using the Xpert 2000 and what kind of results they've had. Here's the output (stdout and stderr) from startx---perhaps someone will catch something I've missed..... --------------------------- CUT HERE --------------------------- XFree86 Version 3.3.6 / X Window System (protocol Version 11, revision 0, vendor release 6300) Release Date: January 8 2000 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (see http://www.XFree86.Org/FAQ) Operating System: FreeBSD 4.1-RELEASE i386 [ELF] Configured drivers: SVGA: server for SVGA graphics adaptors (Patchlevel 1): NV1, STG2000, RIVA 128, RIVA TNT, RIVA TNT2, RIVA ULTRA TNT2, RIVA VANTA, RIVA ULTRA VANTA, RIVA INTEGRATED, GeForce 256, GeForce DDR, Quadro, ET4000, ET4000W32, ET4000W32i, ET4000W32i_rev_b, ET4000W32i_rev_c, ET4000W32p, ET4000W32p_rev_a, ET4000W32p_rev_b, ET4000W32p_rev_c, ET4000W32p_rev_d, ET6000, ET6100, et3000, pvga1, wd90c00, wd90c10, wd90c30, wd90c24, wd90c31, wd90c33, gvga, r128, ati, sis86c201, sis86c202, sis86c205, sis86c215, sis86c225, sis5597, sis5598, sis6326, sis530, sis620, sis300, sis630, sis540, tvga8200lx, tvga8800cs, tvga8900b, tvga8900c, tvga8900cl, tvga8900d, tvga9000, tvga9000i, tvga9100b, tvga9200cxr, tgui9400cxi, tgui9420, tgui9420dgi, tgui9430dgi, tgui9440agi, cyber9320, tgui9660, tgui9680, tgui9682, tgui9685, cyber9382, cyber9385, cyber9388, cyber9397, cyber9520, cyber9525, 3dimage975, 3dimage985, cyber9397dvd, blade3d, cyberblade, clgd5420, clgd5422, clgd5424, clgd5426, clgd5428, clgd5429, clgd5430, clgd5434, clgd5436, clgd5446, clgd5480, clgd5462, clgd5464, clgd5465, clgd6205, clgd6215, clgd6225, clgd6235, clgd7541, clgd7542, clgd7543, clgd7548, clgd7555, clgd7556, ncr77c22, ncr77c22e, cpq_avga, mga2064w, mga1064sg, mga2164w, mga2164w AGP, mgag200, mgag100, mgag400, oti067, oti077, oti087, oti037c, al2101, ali2228, ali2301, ali2302, ali2308, ali2401, cl6410, cl6412, cl6420, cl6440, video7, ark1000vl, ark1000pv, ark2000pv, ark2000mt, mx, realtek, AP6422, AT24, AT3D, s3_savage, s3_virge, s3_svga, NM2070, NM2090, NM2093, NM2097, NM2160, NM2200, ct65520, ct65525, ct65530, ct65535, ct65540, ct65545, ct65546, ct65548, ct65550, ct65554, ct65555, ct68554, ct69000, ct64200, ct64300, mediagx, V1000, V2100, V2200, p9100, spc8110, i740, i740_pci, i810, i810-dc100, i810e, Voodoo Banshee, Voodoo3, smi, generic Using syscons driver with X support (version 2.0) (using VT number 9) XF86Config: /etc/XF86Config (**) stands for supplied, (--) stands for probed/default values (**) XKB: keycodes: "xfree86" (**) XKB: types: "default" (**) XKB: compat: "default" (**) XKB: symbols: "us(pc101)" (**) XKB: geometry: "pc" (**) XKB: rules: "xfree86" (**) XKB: model: "pc105" (**) XKB: layout: "us" (**) Mouse: type: PS/2, device: /dev/mouse, buttons: 3 (**) SVGA: Graphics device ID: "ATI Expert 2000" (**) SVGA: Monitor ID: "NEC AccuSync 90" (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/75dpi/" (--) SVGA: PCI: ATI Rage 128 RF rev 0, Memory @ 0xe0000000, 0xdf000000, I/O @ 0xd800 (--) SVGA: r128: PLL parameters: rf=2950 rd=65 min=12500 max=25000; xclk=9000 (--) SVGA: chipset: r128 (--) SVGA: videoram: 32768k (**) SVGA: Option "dac_8_bit" (**) SVGA: Using 32 bpp, Depth 24, Color weight: 888 (--) SVGA: Maximum allowed dot-clock: 250.000 MHz (**) SVGA: Mode "1600x1200": mode clock = 202.500 (**) SVGA: Mode "1280x1024": mode clock = 157.500 (--) SVGA: Virtual resolution set to 1600x1200 (--) SVGA: SpeedUp code selection modified because virtualX != 1024 (--) SVGA: r128: ATI Rage 128 RF (AGP) (--) SVGA: r128: Using hardware cursor (--) SVGA: r128: Acceleration enabled (--) SVGA: Using XAA (XFree86 Acceleration Architecture) (--) SVGA: XAA: Solid filled rectangles (--) SVGA: XAA: Screen-to-screen copy (--) SVGA: XAA: 8x8 color expand pattern fill (--) SVGA: XAA: Indirect CPU to screen color expansion (imagetext, polytext) (--) SVGA: XAA: Using 12 128x128 areas for pixmap caching (--) SVGA: XAA: Caching tiles and stipples (--) SVGA: XAA: Horizontal and vertical lines and segments localhost being added to access control list --------------------------- CUT HERE --------------------------- Later, --jim -- 73 DE N5IAL (/4) | "The Zen nature of a spammer resembles jim@n5ial.gnt.net | a cockroach, except that the cockroach ICBM / Hurricane: | is higher up on the evolutionary chain." 30.39735N 86.60439W | Peter Olson, Delphi Postmaster To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3:46:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp02.primenet.com (smtp02.primenet.com [206.165.6.132]) by hub.freebsd.org (Postfix) with ESMTP id 47A8537B4C5; Fri, 20 Oct 2000 03:46:43 -0700 (PDT) Received: (from daemon@localhost) by smtp02.primenet.com (8.9.3/8.9.3) id DAA28002; Fri, 20 Oct 2000 03:43:14 -0700 (MST) Received: from usr09.primenet.com(206.165.6.209) via SMTP by smtp02.primenet.com, id smtpdAAAz4ayi0; Thu Oct 19 22:49:33 2000 Received: (from tlambert@localhost) by usr09.primenet.com (8.8.5/8.8.5) id WAA10743; Thu, 19 Oct 2000 22:52:56 -0700 (MST) From: Terry Lambert Message-Id: <200010200552.WAA10743@usr09.primenet.com> Subject: Re: Routing issue with cable modem To: marko@tellurian.com (Marko Ruban) Date: Fri, 20 Oct 2000 05:52:55 +0000 (GMT) Cc: freebsd-questions@FreeBSD.ORG (FreeBSD questions), freebsd-hackers@FreeBSD.ORG In-Reply-To: <39EF5505.7B7C2BFD@tellurian.com> from "Marko Ruban" at Oct 19, 2000 04:09:41 PM X-Mailer: ELM [version 2.5 PL2] 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 guess no one knew the answer to my original question about getting RCN > cable modem (with analog upstream line dialup) to work. So here's a > somewhat simplified question. I narrowed the problem down to routing. > Cable modem does dial out when I try to ping something on it's subnet > (10.17.56.###), however it does not respond to any broadcast ARP queries > about location of DNS server. [ ... ] > P.S.S. On a side note: it would be very interesting to know how MSWin98 > does it's network setup, that it has no trouble using the modem. Have you tried typing "route print" into an MSDOS window, and having Windows simply tell you what its network configuration? I suspect you are incorrectly setting up an asymetric route, since you say that you have zero upchannel through the cable line, and must use an analog dialup, instead... Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3:47:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id E84D037B4CF for ; Fri, 20 Oct 2000 03:47:23 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13mZhr-0002sn-00 for freebsd-questions@freebsd.org; Fri, 20 Oct 2000 11:47:23 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id LAA44675 for freebsd-questions@freebsd.org; Fri, 20 Oct 2000 11:47:18 +0100 (BST) (envelope-from jcm) Date: Fri, 20 Oct 2000 11:47:18 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: gnucash and odd port behavior Message-ID: <20001020114718.A44597@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had some trouble building gnucash last night. I should mention I recently deleted my entire ports tree so I could start from scratch, and I used the cvsup file to limit them to those that interest me. Maybe this is what caused my problem. The port won't build. First, D/Ling the package didn't work, tellingg me I was denied access to the file on the freebsd server. Then, when I tried a port instead of a package, the compile died. I don't have the error, but I can get it later tonight. I thought maybe someone would have some ideas first. jcm -- "That depends on what the meaning of the word 'is' is." -President Bill Clinton "I don't know what you mean by the word 'ask.'" -CEO Bill Gates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 3:53: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id 24F8B37B4E5 for ; Fri, 20 Oct 2000 03:53:02 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id DAA20429; Fri, 20 Oct 2000 03:49:32 -0700 (PDT) From: "Otter" To: "Mike Meyer" Cc: Subject: RE: FW: booting problems with SMP enabled Date: Fri, 20 Oct 2000 06:57:18 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.50.4133.2400 Importance: Normal In-Reply-To: <14831.46693.860465.246500@guru.mired.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Mike Meyer }Sent: Thursday, October 19, 2000 11:05 PM }To: Otter }Cc: questions@FreeBSD.ORG }Subject: Re: FW: booting problems with SMP enabled } } }Otter writes: }> I've got a new install of 4.1-RELEASE here. }> Hardware consists of a dual processor board (unknown brand), }> 2 Intel P2-300's, a single 128MB DIMM, onboard scsi }> (disabled), on a 13GB IDE drive. The machine boots and runs }> fine with a single processor. For testing purposes, I've }> swapped them around to make sure that both CPU's are working }> as they should. No problems there. When I boot up with the }> SMP kernel (only the SMP and APIC_IO lines uncommented) it }> hangs in the boot process at where it says "APIC_IO: testing }> 8254 interrupt delivery". At this point, the machine locks }> and requires me cycling power via the switch on the power }> supply. I'm at a loss. I've got a bank of dipdswitches on }> the board and have changed a few at random, but no luck so }> far. Without knowing the brand of the board, I'm not sure }> how I can take this any further. Any tips/ideas/suggestions? TIA. } }Check the board manufacturers web site for a manual! } I'd love to, but as you can see above, I don't know who the manufacturer is/was. I've found no markings on the board that identify it as any particular brand. }Also notice that "An SMP kernel will ONLY run on an Intel MP }spec. qualified motherboard" and "Be sure to disable 'cpu }I386_CPU' && }'cpu I486_CPU' for SMP kernels." (The latter may not be required for }your version, but won't hurt in any case). already done. } }Also, check the stepping number of the P2's (on the chip, somewhere, }one hopes, or possibly in dmesg when the system boots) and then check }the intel web to make sure the two chips will work *together*. While }each may work fine, if you've don't have compatible stepping numbers, }they won't work together. } } ; Fri, 20 Oct 2000 04:45:14 -0700 (PDT) Received: from ws1 ([203.43.52.134]) by mail.beyondtech.net (8.9.3/8.9.3) with ESMTP id XAA77933 for ; Fri, 20 Oct 2000 23:55:23 +1100 (EST) (envelope-from marcus@redcentre.com) From: marcus@redcentre.com Message-Id: <200010201255.XAA77933@mail.beyondtech.net> To: questions@freebsd.org Date: Fri, 20 Oct 2000 21:43:28 +1000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Logrotate and 2.7 X-mailer: Pegasus Mail for Win32 (v3.12b) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, just looking for a bit of advice re the "logrotate" utility. I would really like to use the utility on a FreeBSD 2.7 server however, it would need to be in an aout version - any ideas? I've tried the elftoaout utility without any success. thanks in anticipation, Marcus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 5:26: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from freyr.cba.ualr.edu (freyr.cba.ualr.edu [144.167.120.20]) by hub.freebsd.org (Postfix) with ESMTP id 2052437B4D7 for ; Fri, 20 Oct 2000 05:26:00 -0700 (PDT) Received: (from joe@localhost) by freyr.cba.ualr.edu (8.11.1/8.11.1) id e9KCPwA21856; Fri, 20 Oct 2000 07:25:58 -0500 (CDT) (envelope-from joe) Date: Fri, 20 Oct 2000 07:25:58 -0500 From: "Joseph E. Royce" To: Otter Cc: freebsd-questions@freebsd.org Subject: Re: FW: booting problems with SMP enabled Message-ID: <20001020072558.A21782@freyr.cba.ualr.edu> References: <14831.46693.860465.246500@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from otterr@telocity.com on Fri, Oct 20, 2000 at 06:57:18AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 06:57:18AM -0400, Otter wrote: > > > }-----Original Message----- > }From: owner-freebsd-questions@FreeBSD.ORG > }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Mike Meyer > }Sent: Thursday, October 19, 2000 11:05 PM > }To: Otter > }Cc: questions@FreeBSD.ORG > }Subject: Re: FW: booting problems with SMP enabled > } > } > }Otter writes: > }> I've got a new install of 4.1-RELEASE here. > }> Hardware consists of a dual processor board (unknown brand), > }> 2 Intel P2-300's, a single 128MB DIMM, onboard scsi > }> (disabled), on a 13GB IDE drive. The machine boots and runs > }> fine with a single processor. For testing purposes, I've > }> swapped them around to make sure that both CPU's are working > }> as they should. No problems there. When I boot up with the > }> SMP kernel (only the SMP and APIC_IO lines uncommented) it > }> hangs in the boot process at where it says "APIC_IO: testing > }> 8254 interrupt delivery". At this point, the machine locks > }> and requires me cycling power via the switch on the power > }> supply. I'm at a loss. I've got a bank of dipdswitches on > }> the board and have changed a few at random, but no luck so > }> far. Without knowing the brand of the board, I'm not sure > }> how I can take this any further. Any tips/ideas/suggestions? TIA. > } > }Check the board manufacturers web site for a manual! > } > I'd love to, but as you can see above, I don't know who the > manufacturer is/was. I've found no markings on the board that identify > it as any particular brand. If you can find a FCC ID number on the motherboard then you can do a search at http://www.fcc.govoet/fccid/ for the manufacturers. -Joe > > }Also notice that "An SMP kernel will ONLY run on an Intel MP > }spec. qualified motherboard" and "Be sure to disable 'cpu > }I386_CPU' && > }'cpu I486_CPU' for SMP kernels." (The latter may not be required for > }your version, but won't hurt in any case). > > already done. > > } > }Also, check the stepping number of the P2's (on the chip, somewhere, > }one hopes, or possibly in dmesg when the system boots) and then check > }the intel web to make sure the two chips will work *together*. While > }each may work fine, if you've don't have compatible stepping numbers, > }they won't work together. > } > } } > The stepping numbers DO match. I've searched Intel's site and found > some CPUID info charts, but nothing that states they work together... > then again, I didn't find anything saying the contrary. I seem to > remember that was the big hype of P2 over Celerons-- they had more > cache and would support SMP. I could only assume that they all do... > and neer had problems getting any p2 or p3's to work in SMP as long as > the stepping numbers matched. I've set this up on several machines in > the past, so I know (or at least I used to!) what to look for and the > steps to take to make it happen. I'm just at a loss on this one. > -Otter > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 5:26:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ra.obsidian.co.za (lava.obsidian.co.za [196.41.8.210]) by hub.freebsd.org (Postfix) with ESMTP id 0269237B4D7 for ; Fri, 20 Oct 2000 05:26:50 -0700 (PDT) Received: from localhost (werner@localhost) by ra.obsidian.co.za (8.9.3/8.9.3) with ESMTP id OAA08419 for ; Fri, 20 Oct 2000 14:26:37 +0200 Date: Fri, 20 Oct 2000 14:26:37 +0200 (SAST) From: Werner Gillmer To: freebsd-questions@FreeBSD.ORG Subject: vmware under freebsd Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I just install vmware on my 4.1-stable box, set it up to boot windows 2000 server ( :( cross-platform testing). My problem is, everytime I click the power on button in vmware, it crashes. Abort (core dumped) Does anyone know what is wrong? thanks -- |~~~~~~~~~~~~~^^^^~~~~~~^~^^~~~~~~~~^^~~~~~~~~~~^^~^~^^~^~~~~~~~~~~~^~^~~| | Werner Gillmer............................email: werner@obsidian.co.za | | Programmer................................cell: 0822924268 | | Obsidian Systems..........................phone: +27 11 792 6500 | | http://www.obsidian.co.za.................ftp://ftp.obsidian.co.za | | | ~~~~~~~~~~~~~~^~~~^~~~~~^~~~~~~~^~~~~~~~^^~~~~~~~~~~~~~~^^~~~~~~~^~~~~~~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 5:32: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 6E4F537B4D7 for ; Fri, 20 Oct 2000 05:32:04 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 1DEE46A903 for ; Fri, 20 Oct 2000 14:32:03 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id AC9674180054; Fri, 20 Oct 2000 14:37:42 +0200 Message-Id: <5.0.0.25.0.20001020125219.045a8bd0@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Fri, 20 Oct 2000 14:32:15 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: can't build custom kernel 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 FreeBSD 4.1.1 from an .iso image Making a custom kernal make depend gives: In file included from ../../i386/isa/isa_compat.c:46: ../../i386/isa/isa_compat.h:42: bw.h: No such file or directory mkdep: compile failed *** Error code 1 I cannot find / -name "bw.h" -print ... this file on our disk. Nor can I find "bw.h" in my -questions archive as a pb for anybody else. What's up? tia, Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 & 8.2.3 T6B for NT4 & W2K http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 5:39: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.screaming.net (smtp.screaming.net [212.49.224.20]) by hub.freebsd.org (Postfix) with ESMTP id 7134D37B479 for ; Fri, 20 Oct 2000 05:38:57 -0700 (PDT) Received: from lexx.my.domain (dyn0-94-ras56.screaming.net [212.188.151.94]) by smtp.screaming.net (8.9.3/8.9.3) with SMTP id MAA04498 for ; Fri, 20 Oct 2000 12:42:20 GMT From: John Murphy To: questions@freebsd.org Subject: Re: man2html misses lines and man man2html fails Date: Fri, 20 Oct 2000 13:38:25 +0100 Organization: The Organisation Reply-To: bigotfo@bigfoot.com Message-ID: X-Mailer: Forte Agent 1.8/32.548 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 Mark Ovens wrote: >Date: Thu, 19 Oct 2000 21:49:37 +0100 >On Thu, Oct 19, 2000 at 03:38:19PM -0400, Andresen,Jason R. wrote: >>=20 >>=20 >> John Murphy wrote: >> >=20 >> > Using FreeBSD-4.1 and man2html via man.cgi I find that when it >> > converts man pages (eg: tcpdump) that have page numbering, it >> > misses the last line of text above the page break, and the first >> > line of text below the page break. >> >=20 >> > Unfortunately #man man2html fails with: >> > zcat: /usr/local/man/cat1/man2html.1.gz: not in gzip format >> >=20 >> > #cd /usr/local/man/cat1 >> > #file man2html.1.gz >> > man2html.1.gz: data >> >=20 >> > Any clues appreciated >> > John. >>=20 >> Try looking at the first few lines of the file. That should give >> you a clue what type of file it is. =20 >>=20 > >It will have "Formatting page, please wait..." at the start. The = man2html Slight variation, I get two lines: :23: a tab character is not allowed before an argument :33: a tab character is not allowed before an argument followed by ^_ and other characters from the ascii art set :) >port has just been fixed. What was happening was that STDERR was being >closed before man.cgi called man(1). If the catpage didn't exist you get >the "Formatting....." message but, since STDERR is closed, it goes to >STDOUT and so ends up at the start of the catpage, before the output = from >gzip. Then when man(1) tries to view the page gzip(1) can't understand = the >file. I remember you mentioned the possibility when you told me where man.cgi = is. >If you can't update the port just move the line ``close(STDERR)'' in >man.cgi thus: > > # Convert output from man to html > #-------------------------------- >From here>>># close(STDERR); > open(MANPRG, "-|") or exec($ManPrg, @manargs); > $Man2Html::InFH =3D \*MANPRG; # set input filehandle > require $ManConvPrg or > error("Problem executing man->HTML converter"); >To here>>> close(STDERR); Easy enough, and thanks for the explanation. man man2html works after removing the two lines (with ee no less), and still works after dragging it through man.cgi & man2html. >The problem with missing lines can be cured by setting ``-topm'' and >``-botm'' to 0, either in man.cgi itself (the ``@ConvArgs'' line) or as = an >option when man.cgi is run. I haven't figured out exactly why this = occurs, >but it seems to be due to FreeBSD manpages being in 2 formats; -mdoc and >-man. @ConvArgs =3D ("-topm", "0", "-botm", "0"); =46ixed it thanks Mark. It's good to have this working. Hyperlinked man pages are cool... John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 6: 1:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cell-works.com (cell-works.com [216.112.245.226]) by hub.freebsd.org (Postfix) with ESMTP id 65F8637B479 for ; Fri, 20 Oct 2000 06:01:11 -0700 (PDT) Received: from cell-works.com (cc774259-a.owml1.md.home.com [24.13.115.111]) by cell-works.com (8.8.8/8.8.8) with ESMTP id JAA29188; Fri, 20 Oct 2000 09:03:28 -0400 (EDT) (envelope-from rakesh@cell-works.com) Message-ID: <39F06A67.DAC6CF3D@cell-works.com> Date: Fri, 20 Oct 2000 08:53:11 -0700 From: Rakesh Thakkar Organization: @Home Network X-Mailer: Mozilla 4.7 [en]C-AtHome0405 (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: cjclark@alum.mit.edu Cc: Mikko Tyolajarvi , freebsd-questions@FreeBSD.ORG, john@cell-works.com Subject: Re: Setting FreeBSD as Gateway! References: <200010091845.e99Ijq356129@explorer.rsa.com> <39E5EC0B.CB565DE@cell-works.com> <20001012212452.Q25121@149.211.6.64.reflexcom.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Everyone, I am happy to tell you that I have successfully accomplished my task. My freeBSD machine is running as gateway. I wanted to thank everyone who has helped me through this problem (especially Crist J. Clark, Mikko Tyolarjavi and john). I really appreciate your help. Thank you! Rakesh Thakkar "Crist J . Clark" wrote: > > On Thu, Oct 12, 2000 at 12:51:23PM -0400, Rakesh Thakkar wrote: > > Hello, > > > > I have recompiled the kernel after I added those two lines in my kernel. I > > followed the directions on mostgraveconcern.com/freebsd on how to compile the > > kernel. After recompiling the kernel, I put the information on my windows 98 > > machine and for gateway I put 192.168.1.1. I still keep getting the same > > message. Any other help is appreciated. > > It really looks like something is wrong with the way the kernel build > is going. You might want to try recording the whole process and > posting it to the list. The keystrokes might be something like, > > # script kernel_bld.txt > # cd /usr/src/sys/i386/conf > # config MYKERNEL > # cd ../../MYKERNEL > # make clean depend all > # make install > # exit > > Then send kernel_bld.txt and the dmesg after a reboot to the list. > -- > Crist J. Clark cjclark@alum.mit.edu > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 6:41: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-server.tampabay.rr.com (smtp-server1.tampabay.rr.com [24.92.1.13]) by hub.freebsd.org (Postfix) with ESMTP id DC66437B4E5 for ; Fri, 20 Oct 2000 06:41:04 -0700 (PDT) Received: from sbohm.yi.org (2492222hfc174.tampabay.rr.com [24.92.222.174]) by smtp-server.tampabay.rr.com (8.9.3/8.9.3) with SMTP id JAA28281 for ; Fri, 20 Oct 2000 09:41:03 -0400 (EDT) From: degraz@sbohm.yi.org Received: from sbohm.yi.org [127.0.0.1] by sbohm.yi.org [127.0.0.1] with RAW (MDaemon.v2.7.SP4.R) for ; Fri, 20 Oct 2000 10:34:49 -0400 Date: Fri, 20 Oct 2000 10:34:49 -0400 Subject: FTP and Apache conf's To: FreeBSD Questions X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG Reply-To: degraz@sbohm.yi.org Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Actual-From: degraz@sbohm.yi.org X-Mailer: WebPOP v2.0 Service Pack 1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This seems like it should be pretty simple, but I have looked for the apache conf and the conf file for my FTP server, and cannot find either. I actually remember once seeing the apache one, and could probably find this, but I figured I'd ask about tha too, just in case, as I really cannot find the ftp conf file anywhere :) Does it go by default settings, and I have to create my own? Any help would be appreciated, you guys have already helped me out quite a bit with other issues. To those of you who answered my e-mails, to which I did not reply, thank you. My inbox has been flooded with e-mail and I don't usually get around to rep ying.. Thanks, travis troyer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7: 5: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from stclairc.on.ca (stclairc.on.ca [192.139.208.1]) by hub.freebsd.org (Postfix) with ESMTP id F3FBC37B667 for ; Fri, 20 Oct 2000 07:04:59 -0700 (PDT) Received: by gateway.stclairc.on.ca id <115210>; Fri, 20 Oct 2000 10:11:12 -0400 Message-Id: <00Oct20.101112edt.115210@gateway.stclairc.on.ca> Date: Fri, 20 Oct 2000 10:00:54 -0400 From: Kathleen Baillargeon Organization: St. Clair College X-Sender: "Kathleen Baillargeon" (Unverified) X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en Mime-Version: 1.0 To: questions@FreeBSD.org Subject: New User X-Priority: 2 (High) Content-Type: multipart/alternative; boundary="------------32FC090C146EC04B54C08A9B" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------32FC090C146EC04B54C08A9B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi. I am interested in starting BSD. I do not know anything about UNIX or BSD. So, I am wondering what I should install. I have only 12Mgs to work with on this old computer and I don't know what files I should have and which ones I can leave. My e-mail address is katebaillargeon@hotmail.com.Any help you can give me will be greatly appreciated. Thanks. --------------32FC090C146EC04B54C08A9B Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Hi.  I am interested in starting BSD.  I do not know anything about UNIX or BSD.  So, I am wondering what I should install.  I have only 12Mgs to work with on this old computer and I don't know what files I should have and which ones I can leave.
My e-mail address is katebaillargeon@hotmail.com.Any help you can give me will be greatly appreciated.  Thanks. --------------32FC090C146EC04B54C08A9B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7:19:55 2000 Delivered-To: freebsd-questions@freebsd.org Received: from draenor.org (draenor.org [196.36.119.129]) by hub.freebsd.org (Postfix) with ESMTP id 173C037B479 for ; Fri, 20 Oct 2000 07:19:51 -0700 (PDT) Received: from marcs by draenor.org with local (Exim 3.16 #1) id 13md0z-000Lcs-00; Fri, 20 Oct 2000 16:19:21 +0200 Date: Fri, 20 Oct 2000 16:19:21 +0200 From: Marc Silver To: degraz@sbohm.yi.org Cc: FreeBSD Questions Subject: Re: FTP and Apache conf's Message-ID: <20001020161921.L78378@draenor.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from degraz@sbohm.yi.org on Fri, Oct 20, 2000 at 10:34:49AM -0400 X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, If you installed apache and an ftpd from the ports tree, then your configuration files are most likely (unless you changed it) in /usr/local/etc/. If you're using the standard ftpd, then a 'man ftpd' will let you know everything you need about config files etc. Cheers, Marc On Fri, Oct 20, 2000 at 10:34:49AM -0400, degraz@sbohm.yi.org wrote: > This seems like it should be pretty simple, but I have looked for the > apache conf and the conf file for my FTP server, and cannot find > either. I actually remember once seeing the apache one, and could > probably find this, but I figured I'd ask about tha too, just in case, > as I really cannot find the ftp conf file anywhere :) Does it go by > default settings, and I have to create my own? > > Any help would be appreciated, you guys have already helped me out > quite a bit with other issues. To those of you who answered my > e-mails, to which I did not reply, thank you. My inbox has been > flooded with e-mail and I don't usually get around to rep ying.. > > Thanks, > > travis troyer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7:20:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from heorot.1nova.com (sub24-23.member.dsl-only.net [63.105.24.23]) by hub.freebsd.org (Postfix) with ESMTP id ADD5C37B4E5 for ; Fri, 20 Oct 2000 07:20:35 -0700 (PDT) Received: by heorot.1nova.com (Postfix, from userid 1000) id 521253293; Thu, 19 Oct 2000 06:43:58 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by heorot.1nova.com (Postfix) with ESMTP id 3F1F13292; Thu, 19 Oct 2000 06:43:58 +0000 (GMT) Date: Thu, 19 Oct 2000 06:43:58 +0000 (GMT) From: Rick Hamell To: Jim Graham Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Videocard query In-Reply-To: <20001020041439.A9328@n5ial.gnt.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 > I'm running XFree86 3.3.6 as shipped with FreeBSD 4.1.1 (well, after > configuring it) with the SVGA server (picked by the config). I'm running > it at 1600x1200, 32bpp. > > When it behaves, it's a great card. When it doesn't, it's very annoying. > The question is, is it the card or the X server? And is there a fix? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7:25:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 2553137B4D7 for ; Fri, 20 Oct 2000 07:25:40 -0700 (PDT) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id KAA140700; Fri, 20 Oct 2000 10:25:21 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: References: Date: Fri, 20 Oct 2000 10:06:14 -0400 To: Werner Gillmer , freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: vmware under freebsd Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 2:26 PM +0200 10/20/00, Werner Gillmer wrote: >Hi > > I just install vmware on my 4.1-stable box, set it up to > boot windows2000 server ( :( cross-platform testing). My > problem is, everytime I click the power on button in vmware, > it crashes. > > Abort (core dumped) > > Does anyone know what is wrong? Not that I have any idea, but one question which might come up is whether you are using virtual disks, or one of the flavors of real disks. Also, check the logfile for that virtual machine, and see if it gives you any clues. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7:28:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from postmarq.mu.edu (hermes.mu.edu [134.48.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 36DF737B4CF for ; Fri, 20 Oct 2000 07:28:21 -0700 (PDT) Received: from marquette.edu ([127.0.0.1]) by postmarq.mu.edu (Netscape Messaging Server 4.15) with ESMTP id G2QG6Y00.EQA; Fri, 20 Oct 2000 09:28:10 -0500 From: Jeremy Vandenhouten To: "Otter" , freebsd-questions@freebsd.org Message-ID: <4f2e954ef17c.4ef17c4f2e95@marquette.edu> Date: Fri, 20 Oct 2000 09:28:10 -0500 X-Mailer: Netscape Webmail MIME-Version: 1.0 Content-Language: en Subject: Re: FW: booting problems with SMP enabled X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If you can get the bios boot string... the one that has lots of numbers and letters at the bottom of the boot screen (the one that tells you to press (x+x+x to enter setup) you can identify the board [usually]. This site should help. http://www.ping.be/bios There are alot of interesting utilities here. Some even go to the point of identifying your pci cards without even opening the computer. You will need a dos boot disk for this. Hope you can figure out what it is... ----- Original Message ----- From: "Otter" Date: Thursday, October 19, 2000 5:55 pm Subject: FW: booting problems with SMP enabled > I sent this last night, but I never saw it on the list, so I'm > resending... > > I've got a new install of 4.1-RELEASE here. > Hardware consists of a dual processor board (unknown brand), > 2 Intel P2-300's, a single 128MB DIMM, onboard scsi > (disabled), on a 13GB IDE drive. The machine boots and runs > fine with a single processor. For testing purposes, I've > swapped them around to make sure that both CPU's are working > as they should. No problems there. When I boot up with the > SMP kernel (only the SMP and APIC_IO lines uncommented) it > hangs in the boot process at where it says "APIC_IO: testing > 8254 interrupt delivery". At this point, the machine locks > and requires me cycling power via the switch on the power > supply. I'm at a loss. I've got a bank of dipdswitches on > the board and have changed a few at random, but no luck so > far. Without knowing the brand of the board, I'm not sure > how I can take this any further. Any tips/ideas/suggestions? TIA. > -Otter > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7:31: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id A512037B4D7 for ; Fri, 20 Oct 2000 07:30:18 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.170]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 4106400; Fri, 20 Oct 2000 09:30:06 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 83D0AA7; Fri, 20 Oct 2000 09:37:32 -0500 (CDT) Date: Fri, 20 Oct 2000 09:37:32 -0500 From: Michael Urban To: Kathleen Baillargeon Cc: freebsd-questions@freebsd.org Subject: Re: New User Message-ID: <20001020093732.A477@tznet.com> References: <00Oct20.101112edt.115210@gateway.stclairc.on.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00Oct20.101112edt.115210@gateway.stclairc.on.ca>; from kbaillar@stclairc.on.ca on Fri, Oct 20, 2000 at 10:00:54AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, unfortunately you are not going to be able to install even a minimal installation in 12mb of hard disk space. A more realistic minimum is 200mb, although I do know it is possible to get by with less if you are very careful about what you choose to install. Also, what type of computer is this? You will need at least a 386 to run FreeBSD. Realistically, to get any real work done, you will probably want a 486 minimum. On Fri, Oct 20, 2000 at 10:00:54AM -0400, Kathleen Baillargeon wrote: > Hi. I am interested in starting BSD. I do not know anything about UNIX > or BSD. So, I am wondering what I should install. I have only 12Mgs to > work with on this old computer and I don't know what files I should have > and which ones I can leave. > My e-mail address is katebaillargeon@hotmail.com.Any help you can give > me will be greatly appreciated. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 7:45:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id 5253137B657 for ; Fri, 20 Oct 2000 07:45:22 -0700 (PDT) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id JAA14095; Fri, 20 Oct 2000 09:45:15 -0500 (CDT) (envelope-from cdillon@wolves.k12.mo.us) Date: Fri, 20 Oct 2000 09:45:14 -0500 (CDT) From: Chris Dillon To: Darryl Hoar Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Web Based Mail In-Reply-To: <001301c03944$879481f0$0701a8c0@ruraltel.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 Wed, 18 Oct 2000, Darryl Hoar wrote: > Greetings, > I know I have seen this on the list, but can't seem to find it. > I am setting up a mail server for a school (for free), and thought > that a web based mail service (ie, like hotmail) where students > and faculty could use a browser to send/receive , etc internet > email. > > Anybody have a recommendation on software (ports or otherwise)? I like IMP. http://www.horde.org/imp -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet. For IA32 and Alpha architectures. IA64 and PowerPC under development. http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 8:18:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.cybersurf.net (smtp1.cybersurf.net [209.197.145.111]) by hub.freebsd.org (Postfix) with ESMTP id EBF5537B4CF for ; Fri, 20 Oct 2000 08:18:40 -0700 (PDT) Received: from [209.197.155.75] ([209.197.155.75]) by smtp1.cybersurf.net (Netscape Messaging Server 4.15) with SMTP id G2QIIX00.6PQ for ; Fri, 20 Oct 2000 09:18:33 -0600 From: 01031149@3web.net To: freebsd-questions@freebsd.org Date: Fri, 20 Oct 2000 08:16:12 mst7mst MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: OT - FBSD MUA w/ Win9x mail Gateway Reply-To: 01031149@3web.net X-mailer: Pegasus Mail v3.50 Message-Id: <20001020151841.EBF5537B4CF@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm looking for a big dose of "field expediency" ;) I'm stuck with having to use Win9x software to connect to my ISP. I've set up a DOS "mail gateway" that does SMTP & POP3 and is capable of using an existing winsock connection. The said gateway (Netmail) uses .txt and .wrk files in the configured "inbox" and "outbox" ( a la Unix, according to its docs). Is it possible to coax a FBSD MUA to write the above required .txt and .wrk files to a DOS partition, i.e. Netmail's "outbox"? I want to read/write my mail in FBSD but receive/send in Win9x. Why? -- can't afford an "no-strings-attached" ISP at the moment. I have a standalone box with Win9x on wd0 and 3.3R on wd1. Private replies OK!! Tia... -duke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 8:24:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from zephyr.rst.inri.com (zephyr.rst.inri.com [198.17.147.40]) by hub.freebsd.org (Postfix) with ESMTP id A018237B4E5 for ; Fri, 20 Oct 2000 08:24:11 -0700 (PDT) Received: from krodgers (krodgers.rst.inri.com [198.17.147.154]) by zephyr.rst.inri.com (8.9.1a/8.9.1) with ESMTP id LAA15672 for ; Fri, 20 Oct 2000 11:11:00 -0400 (EDT) Message-Id: <4.2.0.58.20001020112314.00a9a790@pop.rst.inri.com> X-Sender: krodgers@pop.rst.inri.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Fri, 20 Oct 2000 11:27:33 -0700 To: freebsd-questions@FreeBSD.ORG From: Kathy Rodgers Subject: FreeBSD Research Paper 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 Hello, I attend Northern Virginia Community College in Manassas Virginia. I am doing a research paper on the FreeBDS Operating System structure. I have been searching the multiple links for documentation and articles of all types relating to the following OS functions: process contro threads memory management virtual memory scheduling file management input/output security Is there anywhere I can get descriptions of these OS functions to include in my term paper? thank you, Kathy Rodgers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 8:33:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pop.hccnet.nl (pop.hccnet.nl [193.172.127.94]) by hub.freebsd.org (Postfix) with ESMTP id 6C16F37B4D7 for ; Fri, 20 Oct 2000 08:33:45 -0700 (PDT) Received: from parmenides.utp.net by pop.hccnet.nl via uds90-123.dial.hccnet.nl [193.173.123.90] with ESMTP id RAA01676 (8.8.5/1.13); Fri, 20 Oct 2000 17:33:38 +0200 (MET DST) Received: from localhost (janko@localhost) by parmenides.utp.net (8.9.3/8.9.3) with ESMTP id RAA01081; Fri, 20 Oct 2000 17:33:54 +0200 (CEST) (envelope-from janko@compuserve.com) X-Authentication-Warning: parmenides.utp.net: janko owned process doing -bs Date: Fri, 20 Oct 2000 17:33:54 +0200 (CEST) From: Janko van Roosmalen X-Sender: janko@parmenides.utp.net To: Kurtis Smith Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ppp dialup with natd for Internet share newbie one... In-Reply-To: <5.0.0.25.0.20001019085507.009f0c30@mail.idealfasteners.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try first to get ppp working. Labels in ppp.conf must be positioned on the first position of the line, directives on the second position. On line 21 the "set" directive is interpreted as a label. default: # # blah blah blah "device" references... blah blah # set device /dev/cuaa1 set log Phase Chat LCP IPCP CCP tun command set speed 115200 set dial "abort blah blah..." set timeout set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR enable dns papchap: PACBELL: set phone 956-4566 set authname test set authkey 123456 ===Janko van Roosmalen - Vught - Netherlands=== On Thu, 19 Oct 2000, Kurtis Smith wrote: > > 4.0 Release Custome Kernel... > > Hi, > > Here goes my question again for you guru's and not so guru's that have > this setup and functioning for your small web servers and email servers. > > I have gotten regular ppp to work just fine dial out and what not... I am > having a problem ever since I recompiled the kernel with pseudo device tun1. > > here is my ppp.conf > > 1. default: > 2. > 3. # > 4. # blah blah blah "device" references... blah blah > 5. # > 6. > 7. set device /dev/cuaa1 > 8. set log Phase Chat LCP IPCP CCP tun command > 9. set speed 115200 > 10. set dial "abort blah blah..." > 11. set timeout > 12. set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 > 13.add default HISADDR > 14.enable dns > 15. > 16.papchap: > 17. > 18.PACBELL: > 19. > 20.set phone 956-4566 > 21.set authname test > 22.set authkey 123456 > > this is what I do... > > hotshoppe# ppp -auto PACBELL > > working in auto mode > Using interface: tun0 > Warning: Bad label in /etc/ppp/ppp.conf (line 21) -missing colon > > ... so on ... error again with date... > > Now I do have DHCPD running on de0. I also have ipfirewall and ipdivert in > kernel I try to load natd but it does not come up since there is no active > connection.... > > Can someone point me to a how to or give me some info dam starting to pull > hair out because I had it working fine earlier today now its 3pm already > heheh.... > > Mind you this worked as is just like this before I recompiled kernel and also > did not have ipdivert or ipfirewall or change psuedo device tun 1 instead > of blank. > > Thanks, > > -Kurt > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 8:38:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id 710F337B4D7 for ; Fri, 20 Oct 2000 08:38:55 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.170]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 4145700; Fri, 20 Oct 2000 10:38:51 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id E4B5DA7; Fri, 20 Oct 2000 10:46:13 -0500 (CDT) Date: Fri, 20 Oct 2000 10:46:13 -0500 From: Michael Urban To: Kathy Rodgers Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD Research Paper Message-ID: <20001020104613.B724@tznet.com> References: <4.2.0.58.20001020112314.00a9a790@pop.rst.inri.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <4.2.0.58.20001020112314.00a9a790@pop.rst.inri.com>; from krodgers@rst.inri.com on Fri, Oct 20, 2000 at 11:27:33AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You might wish to pick up a copy of the book "The Design and Implementation of the 4.4BSD Operating System". Although I have never read this book myself, I have heard it is somewhat of an authority on BSD internals. The book ain't cheap, but I have heard it is really good. Any comments from people who do have this book? On Fri, Oct 20, 2000 at 11:27:33AM -0700, Kathy Rodgers wrote: > Hello, > I attend Northern Virginia Community College in Manassas Virginia. > I am doing a research paper on the FreeBDS Operating System structure. I > have been searching the multiple links for documentation and articles of > all types relating to the following OS functions: > process contro > threads > memory management > virtual memory > scheduling > file management > input/output > security > > Is there anywhere I can get descriptions of these OS functions to include > in my term paper? > thank you, > Kathy Rodgers > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 8:48: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from loran.bluestar.net (loran.bluestar.net [208.53.1.58]) by hub.freebsd.org (Postfix) with ESMTP id 0713537B4CF for ; Fri, 20 Oct 2000 08:48:05 -0700 (PDT) Received: from bacon ([64.182.205.80]) by loran.bluestar.net (Netscape Messaging Server 4.15) with ESMTP id G2QJVX00.EUO for ; Fri, 20 Oct 2000 10:47:57 -0500 From: doomstar@doomstar.com To: questions@freebsd.org Date: Fri, 20 Oct 2000 10:47:56 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: IRC/oidentd problem X-mailer: Pegasus Mail for Win32 (v3.12b) Message-ID: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have a FreeBSD4.1 box set up as a firewall/natd/dhcpd box. I have a windows box behind this firewall. I can get online and use the internet from the windows box but I cannot connect to IRC servers. They all say I'm not authorized. I installed the oidentd package and thought I set it up according to the man page, restarted inetd with kill -HUP [pid] but its still not working. I even created oidentd.users in /etc which I thought I did right. The man pages suck. They are written for people who already know how to do this stuff. I dont know what to do and I have searched for info and help with no luck. The FreeBSD book I have doesn't even mention identd.. but its not the latest book. Am I screwed? I would think its possible to do what i'm trying to do but I am really confused. Thanks for any help.. I would offer to pay for help but I dont have any money. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 8:57:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from vidle.i.cz (vidle.i.cz [193.179.36.138]) by hub.freebsd.org (Postfix) with ESMTP id 1BB9437B4F9 for ; Fri, 20 Oct 2000 08:57:10 -0700 (PDT) Received: from ns.i.cz (brana.i.cz [193.179.36.134]) by vidle.i.cz (Postfix) with ESMTP id 9F62B30716 for ; Fri, 20 Oct 2000 17:57:08 +0200 (CEST) Received: from woody.i.cz (woody.i.cz [192.168.18.29]) by ns.i.cz (Postfix) with ESMTP id BDBEA12E92 for ; Fri, 20 Oct 2000 17:57:07 +0200 (CEST) Content-Length: 278 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 20 Oct 2000 17:57:07 +0200 (MET DST) Reply-To: mm@i.cz From: Martin Machacek To: questions@freebsd.org Subject: probably stupid question Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, I ask it anyway ... is there any way how to mount BSD/OS 3.1 partition under FreeBSD 4.1.1? The disk was formated without FDISK table under the BSD/OS. Or from the other end, how to create a BSD/OS partition under FreeBSD 4.1.1? Martin --- [PGP KeyID F3F409C4] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 9:10: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from loran.bluestar.net (loran.bluestar.net [208.53.1.58]) by hub.freebsd.org (Postfix) with ESMTP id 5557C37B4CF for ; Fri, 20 Oct 2000 09:10:02 -0700 (PDT) Received: from bacon ([64.182.205.80]) by loran.bluestar.net (Netscape Messaging Server 4.15) with ESMTP id G2QKWP00.TU2 for ; Fri, 20 Oct 2000 11:10:01 -0500 From: kris@grinz.com To: questions@freebsd.org Date: Fri, 20 Oct 2000 11:10:00 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: ATA 640 bug help X-mailer: Pegasus Mail for Win32 (v3.12b) Message-ID: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have the following in dmesg: atapci0: irq 14 at device 1.0 on pci0 I have recently switched to FreeBSD from about 5 - 6 years of Linux. I know that the Linux kernel had a bugfix for this but I couldn't find anything about it in the FreeBSD kernel config file GENERIC or LINT. Is there a bugfix? If so, can you email an href (URL) to some info? Thanks, Kris www.doomstar.com/www.grinz.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 9:13:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id A0C2837B4F9 for ; Fri, 20 Oct 2000 09:13:40 -0700 (PDT) Received: (qmail 24609 invoked from network); 20 Oct 2000 18:13:39 +0200 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 20 Oct 2000 18:13:39 +0200 From: Mark Rowlands To: Amandasmn@aol.com, freebsd-questions@FreeBSD.ORG Subject: Re: (no subject) Date: Fri, 20 Oct 2000 18:07:27 +0200 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: In-Reply-To: MIME-Version: 1.0 Message-Id: <00102018094400.85111@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Oct 2000, Amandasmn@aol.com wrote: > To whom it may concern, > My name is Dane Dedmon and I am in college. I was interested in being an > advertisement for you. I would like to wear a t-shirt with your company on > it. I feel that I would make a good advertisement as I am walking around the > college campus. If you approve of this, my name and address is as follows. > > Dane Dedmon > Wetzel Hall 1223 > 710 W. University Dr. > Macomb, IL 61455 > > Thank you. Well I approve, just make sure you have a nice haircut, well shined shoes and are unfailingly polite and pleasant to all you meet on your daily travels, oh and well shaped clean fingernails ... no biting. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- These are just my opinions you are free to disagree please do so quietly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 9:14:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from winconx.com (ns1.winconx.net [63.114.199.2]) by hub.freebsd.org (Postfix) with SMTP id 0F8F837B479 for ; Fri, 20 Oct 2000 09:14:33 -0700 (PDT) Received: (qmail 84159 invoked from network); 20 Oct 2000 16:14:12 -0000 Received: from home-isdn-pc6.winconx.net (HELO travis) (63.114.200.151) by ns1.winconx.net with SMTP; 20 Oct 2000 16:14:12 -0000 Message-ID: <007201c03ab0$a9f51440$97c8723f@travis> From: "Travis Leuthauser" To: , References: <001301c03944$879481f0$0701a8c0@ruraltel.net> Subject: Re: Web Based Mail Date: Fri, 20 Oct 2000 11:13:20 -0500 Organization: WinConX Online, Inc. 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We user qmail + sqwebmail here. Both are in my opinion very easy to setup, very secure, and very fast. Check out http://www.qmail.org for qmail and http://www.inter7.com/sqwebmail/ for sqwebmail. Travis Leuthauser Network Administrator WinConX Online, Inc. ----- Original Message ----- From: "Darryl Hoar" To: Sent: Wednesday, October 18, 2000 3:46 PM Subject: Web Based Mail > Greetings, > I know I have seen this on the list, but can't seem to find it. I am > setting up a mail server for a school (for free), and thought that > a web based mail service (ie, like hotmail) where students and > faculty could use a browser to send/receive , etc internet email. > > Anybody have a recommendation on software (ports or otherwise)? > > The school has a policy and would like to be able to put together > information if a student is abusing email, and thus violating policy. > > Any ideas greatly appreciated. > > thanks, > Darryl > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 9:31: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from erika.sixgirls.org (erika.sixgirls.org [209.208.150.50]) by hub.freebsd.org (Postfix) with ESMTP id 12A3537B4CF for ; Fri, 20 Oct 2000 09:31:00 -0700 (PDT) Received: from localhost (localhost [[UNIX: localhost]]) by erika.sixgirls.org (8.11.0+3.3W/8.9.3) with ESMTP id e9KGUwb20086 for ; Fri, 20 Oct 2000 12:30:58 -0400 (EDT) Date: Fri, 20 Oct 2000 12:30:58 -0400 (EDT) From: John Klos To: freebsd-questions@freebsd.org Subject: Broken link Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I was looking on the Java pages: http://www.freebsd.org/java/dists/12.html and I noticed that the link to the porter's handbook (http://www.freebsd.org/porters_handbook) doesn't work. Thanks, John Klos -- If a 6600 used paper tape instead of core memory, it would use up tape at about 30 miles/second. -- Grishman, Assembly Language Programming To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 9:33:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 6408637B479 for ; Fri, 20 Oct 2000 09:33:33 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id MAA03505 for ; Fri, 20 Oct 2000 12:33:29 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id MAA27507 for ; Fri, 20 Oct 2000 12:33:28 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2QLZR00.C2D; Fri, 20 Oct 2000 12:33:27 -0400 Message-ID: <39F073E7.62136D7B@mitre.org> Date: Fri, 20 Oct 2000 12:33:43 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: kris@grinz.com Cc: questions@FreeBSD.ORG Subject: Re: ATA 640 bug help References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris@grinz.com wrote: > > Hi, > > I have the following in dmesg: > > atapci0: loss possible> irq 14 at device 1.0 on pci0 > > I have recently switched to FreeBSD from about 5 - 6 years of > Linux. I know that the Linux kernel had a bugfix for this but I > couldn't find anything about it in the FreeBSD kernel config file > GENERIC or LINT. Is there a bugfix? If so, can you email an href > (URL) to some info? I know there used to be an option "CMD640" that worked around this problem, but it seems to have gone away in LINT. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:11:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lasher.thario.com (lasher.thario.com [63.227.22.20]) by hub.freebsd.org (Postfix) with ESMTP id EE55337B479 for ; Fri, 20 Oct 2000 10:11:32 -0700 (PDT) Received: from thario.com (ext-0180.rational.com [130.213.200.180]) by lasher.thario.com (8.11.1/8.11.1) with ESMTP id e9KHBRp16820; Fri, 20 Oct 2000 11:11:27 -0600 (MDT) (envelope-from jim@thario.com) Message-ID: <39F07CB9.3AFB5ADA@thario.com> Date: Fri, 20 Oct 2000 11:11:21 -0600 From: Jim Thario X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Kathy Rodgers Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD Research Paper References: <4.2.0.58.20001020112314.00a9a790@pop.rst.inri.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try this book: http://www.bookpool.com/.x/r3mnyjaot0/sm/0201549794 Kathy Rodgers wrote: > > Hello, > I attend Northern Virginia Community College in Manassas Virginia. > I am doing a research paper on the FreeBDS Operating System structure. I > have been searching the multiple links for documentation and articles of > all types relating to the following OS functions: > process contro > threads > memory management > virtual memory > scheduling > file management > input/output > security > > Is there anywhere I can get descriptions of these OS functions to include > in my term paper? > thank you, > Kathy Rodgers > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:35:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9208.mail.yahoo.com (web9208.mail.yahoo.com [216.136.129.41]) by hub.freebsd.org (Postfix) with SMTP id 8BBDA37B479 for ; Fri, 20 Oct 2000 10:35:47 -0700 (PDT) Message-ID: <20001020173547.32212.qmail@web9208.mail.yahoo.com> Received: from [209.101.212.253] by web9208.mail.yahoo.com; Fri, 20 Oct 2000 10:35:47 PDT Date: Fri, 20 Oct 2000 10:35:47 -0700 (PDT) From: Drew Subject: vi key bindings 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, This is slightly off topic so please excuse me, or please point me to the correct list. I have a FreeBSD 4.1.1 box. I have heard a lot of really cool things about zsh from a number of ppl. I have installed zsh via the ports collection. I set it as my shell and I can not get vi keybindings to work. In bash I use "set -o vi". This errors in zsh with: set: no such option: vi Can anyone please provide me with the correct syntax? Thanks in advance. Drew __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:42:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from cortes.cibnor.mx (cortes.cibnor.mx [200.23.161.225]) by hub.freebsd.org (Postfix) with ESMTP id 7F6B137B479 for ; Fri, 20 Oct 2000 10:42:16 -0700 (PDT) Received: from localhost (cestrada@localhost) by cortes.cibnor.mx (8.9.3/8.9.3) with ESMTP id LAA01133; Fri, 20 Oct 2000 11:42:08 -0600 (MDT) Date: Fri, 20 Oct 2000 11:42:06 -0600 (MDT) From: "Cesar Estrada [INF]" To: Jon Rust Cc: freebsd-questions@freebsd.org Subject: Re: DHCP In-Reply-To: <20001019150059.C57892@mail.vcnet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Its working all ok, but I have a error, when I executed dhcpd "can't bind to dhcp address: Address already in use. Do you know, what is the problem ?? Thanks On Thu, 19 Oct 2000, Jon Rust wrote: > On Thu, Oct 19, 2000 at 03:27:02PM -0600, Cesar Estrada [INF] wrote: > > > > > > /usr/ports/net/isc-dhcp2 or /usr/ports/net/isc-dhcp3. Download and read > > > manuals first time. When you do this, I can help you to create your own > > > dhcpd.conf file. > > > > Ok, I think, I have dhcpd, but I need to create a dhcpd.conf file, do you > > have a example file ?? > > Here's what mine looks like: > > # Configuration file for ISC dhcpd > > server-identifier host.domain.com; > > # option definitions common to all supported networks... > option domain-name "domain.com"; > option domain-name-servers 192.168.100.254; > option subnet-mask 255.255.255.0; > option routers 192.168.100.254; > default-lease-time 72000; > max-lease-time 144000; > > #Dynamic allocation to non registered machines from a pool > subnet 192.168.100.0 netmask 255.255.255.0 { > range 192.168.100.10 192.168.100.50; > } > > # The subnet attached to dc1 doesn't want DHCP > # but dhcpd wants us to define it anyway > subnet 10.0.0.0 netmask 255.255.255.248 { > } > > # Fixed IP addresses can also be specified for hosts. > #host luser { > # hardware ethernet 00:01:02:03:04:05; > # fixed-address luser.domain.com; > #} > > HTH, > jon > Ing. Cesar Estrada Enriquez Centro de Investigacion Biologicas, La Paz, B.C.S., Mexico Division de Diseno Tecnologico, Redes. Tel.(112) 5 36 33 Ext. 3177,3124 E-mail: cestrada@cibnor.mx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:42:28 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 4F9DD37B479 for ; Fri, 20 Oct 2000 10:42:24 -0700 (PDT) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id NAA14825 for ; Fri, 20 Oct 2000 13:42:22 -0400 (EDT) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id NAA07941 for ; Fri, 20 Oct 2000 13:42:20 -0400 (EDT) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G2QP6K00.A33; Fri, 20 Oct 2000 13:42:20 -0400 Message-ID: <39F0840C.5C7B5D7F@mitre.org> Date: Fri, 20 Oct 2000 13:42:36 -0400 From: "Andresen,Jason R." Organization: The MITRE Corporation X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Drew Cc: freebsd-questions@FreeBSD.ORG Subject: Re: vi key bindings References: <20001020173547.32212.qmail@web9208.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 Drew wrote: > > Hello, > > This is slightly off topic so please excuse me, or > please point me to the correct list. I have a FreeBSD > 4.1.1 box. I have heard a lot of really cool things > about zsh from a number of ppl. I have installed zsh > via the ports collection. I set it as my shell and I > can not get vi keybindings to work. In bash I use > "set -o vi". This errors in zsh with: > > set: no such option: vi > > Can anyone please provide me with the correct syntax? I think the syntax is "man zsh" and then "man zshzle" Look at the bindkey entry in zshmodules. _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:53:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bespoke.alltel.net (h216-170-019-170.adsl.navix.net [216.170.19.170]) by hub.freebsd.org (Postfix) with ESMTP id B3F4A37B479 for ; Fri, 20 Oct 2000 10:53:27 -0700 (PDT) Received: from localhost (phaedrus@localhost) by bespoke.alltel.net (8.11.0/8.9.3) with ESMTP id e9KHs3K06495 for ; Fri, 20 Oct 2000 12:54:04 -0500 (CDT) (envelope-from phaedrus@alltel.net) X-Authentication-Warning: bespoke.alltel.net: phaedrus owned process doing -bs Date: Fri, 20 Oct 2000 12:54:02 -0500 (CDT) From: Dave Cantrell To: freebsd-questions@freebsd.org Subject: Log File Archiving 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 After installing 4.1 and CVS'ing to 4.1.1, I find this error message daily in the croned e-mail to root ****** Subject: FOO.BAR.net security check output (NOT RELEVANT JUNK DELETED -DRC) FOO.BAR.net login failures: /var/log/messages.0*.gz: No such file or directory FOO.BAR.net refused connections: /var/log/messages.0*.gz: No such file or directory ****** If memory serves, this file should be the archived "messages" file (as do the cron/sendmail.st/maillog files), and I do not recall having this problem with 3.X and 4.0. Try as I may, I cannot remember/figure out how to turn on the archiving for this particular file. Anyone care to refresh my memory? drc -- Dave Cantrell | Contrary to popular belief, UNIX is User Friendly. phaedrus@alltel.net | It's just choosy with whom it makes friends. Lincoln, Nebraska, USA | And currently we have only a nodding acquaintance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:53:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id D788437B4D7 for ; Fri, 20 Oct 2000 10:53:44 -0700 (PDT) Received: (from dan@localhost) by dan.emsphone.com (8.11.1/8.11.1) id e9KHojG28907; Fri, 20 Oct 2000 12:50:45 -0500 (CDT) (envelope-from dan) Date: Fri, 20 Oct 2000 12:50:45 -0500 From: Dan Nelson To: Drew Cc: freebsd-questions@FreeBSD.ORG Subject: Re: vi key bindings Message-ID: <20001020125045.A12319@dan.emsphone.com> References: <20001020173547.32212.qmail@web9208.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: <20001020173547.32212.qmail@web9208.mail.yahoo.com>; from "Drew" on Fri Oct 20 10:35:47 GMT 2000 X-OS: FreeBSD 5.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Oct 20), Drew said: > This is slightly off topic so please excuse me, or please point me to > the correct list. I have a FreeBSD 4.1.1 box. I have heard a lot of > really cool things about zsh from a number of ppl. I have installed > zsh via the ports collection. I set it as my shell and I can not get > vi keybindings to work. In bash I use "set -o vi". This errors in > zsh with: > > set: no such option: vi > > Can anyone please provide me with the correct syntax? The correct list would be zsh-users@sunsite.auc.dk From the zsh manpage: There are two keymaps - the main keymap and the alternate keymap. The alternate keymap is bound to vi command mode. The main keymap is bound to emacs mode by default. To bind the main keymap to vi insert mode, use bindkey -v. However, if one of the VISUAL or EDITOR environment vari- ables contain the string vi when the shell starts up the main keymap will be bound to vi insert mode by default. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 10:58:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from burlma1-smrt3.gtei.net (burlma1-smrt3.gtei.net [4.2.35.36]) by hub.freebsd.org (Postfix) with ESMTP id 7571B37B663 for ; Fri, 20 Oct 2000 10:58:42 -0700 (PDT) Received: from nemesis.tools.gtei.net (nemesis.tools.gtei.net [4.2.38.28]) by burlma1-smrt3.gtei.net (8.9.3/8.9.3) with ESMTP id RAA25744 for ; Fri, 20 Oct 2000 17:58:41 GMT Received: (from jdiehl@localhost) by nemesis.tools.gtei.net (8.9.3+Sun/8.9.1) id NAA03504 for freebsd-questions@freebsd.org; Fri, 20 Oct 2000 13:58:40 -0400 (EDT) Date: Fri, 20 Oct 2000 13:58:40 -0400 From: Joe Diehl To: freebsd-questions@freebsd.org Subject: linking oddness Message-ID: <20001020135840.P11549@genuity.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was wondering if someone can help me out here, seeing as I'm now rather lost. I'm having problems with linking libraries that I install in /usr/local/lib. For instance: $ LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/usr/X11R6/lib:/lib $ export LD_LIBRARY_PATH $ gcc -o test test.o -ljpeg /usr/libexec/elf/ld: cannot find -ljpeg $ gcc -o test test.o -L/usr/local/lib -ljpeg $ ldd test test: libjpeg.so.62 => /usr/local/lib/libjpeg.so.62 (0x28064000) libc.so.4 => /usr/lib/libc.so.4 (0x28082000) jdiehl@eros:~$ ls /usr/local/lib/libjpeg* /usr/local/lib/libjpeg.a /usr/local/lib/libjpeg.so /usr/local/lib/libjpeg.la /usr/local/lib/libjpeg.so.62 /usr/local/lib/libjpeg.lai /usr/local/lib/libjpeg.so.9 I'm running FreeBSD 4.1.1-RELEASE I havn't fiddled with gcc/binutils at all: jdiehl@eros:~$ gcc -v Using builtin specs. gcc version 2.95.2 19991024 (release) jdiehl@eros:~$ ld -v GNU ld version 2.10.0 (with BFD 2.10.0) Because of these problems I've tried fiddling with /etc/ld{,-elf}.so.conf: jdiehl@eros:~$ cat /etc/ld-elf.so.conf /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib jdiehl@eros:~$ cat /etc/ld.so.conf /usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout /usr/lib/compath /usr/X11R6/lib /usr/local/lib I did do an `ldconfig -aout; ldconfig -elf` Note that this isn't limited to libjpeg: jdiehl@eros:~$ gcc -o test test.o -ltiff /usr/libexec/elf/ld: cannot find -ltiff jdiehl@eros:~$ gcc -o test test.o -lXau /usr/libexec/elf/ld: cannot find -lXau jdiehl@eros:~$ gcc -o test test.o -lX11 /usr/libexec/elf/ld: cannot find -lX11 Now for some fun with truss: $ truss ld -o test test.o -lc -ljpeg 2>&1 | grep libjpeg open("/usr/lib/libjpeg.so",0,0666) ERR#2 'No such file or directory' open("/usr/lib/libjpeg.a",0,0666) ERR#2 'No such file or directory' $ truss ld -o test test.o -lc -ljpeg 2>&1 | grep libc\. access("/usr/local/lib/libc.so.4",0) ERR#2 'No such file or directory' access("/usr/lib/libc.so.4",0) = 0 (0x0) open("/usr/lib/libc.so.4",0,027757774730) = 3 (0x3) open("/usr/lib/libc.so",0,0666) = 5 (0x5) Right so.. It'll look for libc in /usr/local/lib like my LD_LIBRARY_PATH asks; however, it ignores my LD_LIBRARY_PATH for libjpeg? I notice that FreeBSD uses ld.so.conf for a.out and ld-elf.so.conf for elf binaries, is there something differant I need for elf linking besides LD_LIBRARY_PATH? From the ld(1) manpage: -Lsearchdir This command adds path searchdir to the list of paths that ld will search for archive libraries. You may use this option any number of times. The default set of paths searched (without being specified with -L) depends on what emulation mode ld is using, and in some cases also on how it was configured. The paths can also be specified in a link script with the SEARCH_DIR command. Ok so I'm going to try this, though I'm not sure about exactly sure what format is expected in SEARCH_DIR: $ SEARCH_DIR="/usr/local/lib:/usr/lib:/usr/X11R6/lib" $ export SEARCH_DIR $ gcc -o test test.o -ljpeg /usr/libexec/elf/ld: cannot find -ljpeg $ SEARCH_DIR="-L/usr/local/lib" $ export SEARCH_DIR $ gcc -o test test.o -ljpeg /usr/libexec/elf/ld: cannot find -ljpeg Any thoughts? I'm not on this list, so please cc: any replies to me. Thanks :) -- Joe Diehl (jdiehl@genuity.net) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 11: 3:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.42.130.87]) by hub.freebsd.org (Postfix) with ESMTP id 9CC8E37B479 for ; Fri, 20 Oct 2000 11:03:44 -0700 (PDT) Received: from localhost (matt@localhost) by xena.gsicomp.on.ca (8.9.3/8.9.3) with ESMTP id OAA11608; Fri, 20 Oct 2000 14:05:26 GMT (envelope-from matt@xena.gsicomp.on.ca) Date: Fri, 20 Oct 2000 14:05:25 +0000 (GMT) From: Matthew Emmerton To: "Andresen,Jason R." Cc: kris@grinz.com, questions@FreeBSD.ORG Subject: Re: ATA 640 bug help In-Reply-To: <39F073E7.62136D7B@mitre.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Oct 2000, Andresen,Jason R. wrote: > kris@grinz.com wrote: > > > > I have the following in dmesg: > > > > atapci0: > loss possible> irq 14 at device 1.0 on pci0 > > > > I have recently switched to FreeBSD from about 5 - 6 years of > > Linux. I know that the Linux kernel had a bugfix for this but I > > couldn't find anything about it in the FreeBSD kernel config file > > GENERIC or LINT. Is there a bugfix? If so, can you email an href > > (URL) to some info? > > I know there used to be an option "CMD640" that worked around this > problem, but it seems to have gone away in LINT. According to the CVS comments of LINT (aka NOTES), the new ata driver made a bunch of old kernel options (including CMD640) implicit; this means that the driver will automatically enable the CMD640 option if such a controller is detected on the system.\ What the detect message means is that the chipset itself is buggy. The ata drive (and the old 'options CMD640') try their best to work around the bugs. -- Matthew Emmerton GSI Computer Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 11:12:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id BF9A537B479; Fri, 20 Oct 2000 11:12:06 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Fri, 20 Oct 2000 14:12:16 -0400 Message-ID: <39F08B52.2E598CC5@tellurian.com> Date: Fri, 20 Oct 2000 14:13:38 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: FreeBSD questions Cc: freebsd-hackers@freebsd.org Subject: Re: Routing issue with cable modem References: <39EF5505.7B7C2BFD@tellurian.com> <04c701c03a0f$716181f0$6d0a280a@speedera.com> <39EF8AAD.94739B2B@tellurian.com> <06ba01c03a2e$f66625d0$6d0a280a@speedera.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I tried replicating my windows routing table in freebsd. Only one entry didn't work... (guess) "route add default 10.17.56.xx" I'm cursed ! read below .... > > > > Goal -- to add cable modem as the default gateway to internet. > > > > Symptom -- "add net default: gateway 10.17.56.XXX: Network is > > > > unreachable" > > > > Problem -- I think modem gateway cannot be added because it's on a > > > > different subnet then my NICs. > > > > Attempted -- aliasing ed0 to modem subnet.... all 10.17.56 IPs seem to > > > > be occupied. > > > > > > It does sound like routing- > > > A gateway, by definition, has to be on the same network as your NIC. > > > I'm guessing your cable modem is in bridging mode? (vs routing mode) > > > > What would that mean in terms of my config changes ?? > So is the cable modem in this computer, or is it some standalone device? The cable modem is an external device. It is connected to one of my two NICs. The other NIC has been connected to a small LAN for a while (which worked perfect with dialup PPP and NAT). And it is also connected to the TV cable and a phone line. The uplink is handled automatically by the modem. > > > So it's presenting itself as some IP right? > > > And you just have to use this IP as the default gateway for all your > other > > > machines- > > > > > What is the subnet masking in place here? > > > > The modem works fine on my windows machine, and I looked up the > configuration > > there (winipcfg). > > Windows sets 10.17.56.XXX as the default gateway (and DHCP server), and > assigns > > 208.59.162.XXX (subnet 255.255.255.0) to me. DNS server is set to > 207.172.3.9. > > > > Seems like should be no difficulty setting up unix in the same way... but > unix > > does like 10.17.56.XXX as gateway (because supposedly network is > unreachable). > > > > So that's the story... any suggestions? > > Ok, so the machine is being given a 208.59.162.xxx IP address (via DHCP), > and a default gateway of 10.17.56.xx. > > Ok I think I know what's going on- > > Try manually adding the default route, but specify the interface that you > want to use. > It's something like: > > "route add default 10.17.56.xx netmask 255.255.255.0 interface ed0" "route add default 10.17.56.xx -netmask 255.255.255.0 -interface ed0" did not work, probably because 10.17.56.xx was specifying a gateway for the network 0.0.0.0 and ed0 was trying to be a gateway as well. I can however "route add default -interface ed0" which is actually the closest I've gotten to it working (modem dials out when I ping 10.17.56.1). "route add default 10.17.56.xx" would not work under any circumstances :( tells me "Network is unreachable". I just wonder how windows has no problem adding it as gateway. > I think that because the machine doesnt have an interface on the 10.x.x.x > network, it doesn't know how to get to the 10.x.x.0 network. > > I think you alternately could add a static route that looks like this: > > "route add 10.0.0.0 208.59.162.xx" When route to 10.0.0.0 is added, outgoing packets are corrupted (checked with ethereal). I.E. the header of the packet has 4 bytes inserted between the source and destination MACs. Those 4 bytes always seem to be part of the destination MAC itself. Following from another reply..... >>>>>>>>>>>>>>>>>>>>>> >> > > defaultrouter="10.17.56.12" #<-- fails with symptom previously described >> > >> > DHCP will normally configure the default route for you -- try setting >> > this to NO. >> >> Tried setting to NO... DHCP doesn't seem to add a default route, so in my case it >> makes no difference really. >> Should it add default route? > >Normally, yes. You sort of need default route and netmask in order to >make things work. This should happen with the stock dhclient.conf >(which is empty). You could try to run dhclient by hand, something >like: > > # killall dhclient > # dhclient -dD ed0 > >Or whatever your interface is. Terminate it with Ctrl+C. You should >get a bunch of files in /tmp, containing values received from the >server. You may also get some interesting error messages. Tried "dhclient -d -D ed0".... no files are written to /tmp dir. Do you think it could be a problem with my dhclient ? I tried using wide-dhcp client earlier, with even less success. Marko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 11:19:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pmade.org (dsl-att1-118-93.sb.101freeway.net [12.44.118.93]) by hub.freebsd.org (Postfix) with ESMTP id A707E37B4C5 for ; Fri, 20 Oct 2000 11:19:38 -0700 (PDT) Received: from localhost (pjones@localhost) by pmade.org (8.9.3/8.9.3) with ESMTP id LAA66704 for ; Fri, 20 Oct 2000 11:19:33 -0700 (PDT) (envelope-from pjones@pmade.org) Date: Fri, 20 Oct 2000 11:19:33 -0700 (PDT) From: Peter Jones To: FreeBSD Questions Subject: login.conf(5) 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 getting ready to set limits in login.conf. I was thinking of making three clases, system, staff and default. The system would be for daemons and root, the staff would basicly be for people in wheel and default for everyone else. If I do this, would I need to change the class for users like bin and daemon to the system class so that they don't default to the default class? I noticed that there is a daemon class inside login.conf, so could I just do a tc=system or do I need to put daemon in the daemon class or system class? Or should I just make default open and change the user's classes to something more restrictive then default? The main reason that I ask is because I did a `pw usershow -a -P' and saw that the login class was empty for everyone and I want to make sure that root and daemons don't get put in the wrong class by login(1) when it sees that. I also just wanted to see what some of you are doing out there with your login.conf. -- ....................................................................... : Peter Jones : Unix Geek - Four Wheeling : : pjones@pmade.org : Code Writing - Jesus Freak : :....................................:................................: :echo er|perl -0160 -pe ';$;=ord$/;s;^;"\U$/".chr($\;-11).chr$\;+4;e;': :.....................................................................: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 11:25:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web9209.mail.yahoo.com (web9209.mail.yahoo.com [216.136.129.42]) by hub.freebsd.org (Postfix) with SMTP id 169C437B479 for ; Fri, 20 Oct 2000 11:25:30 -0700 (PDT) Message-ID: <20001020181832.87677.qmail@web9209.mail.yahoo.com> Received: from [209.101.212.253] by web9209.mail.yahoo.com; Fri, 20 Oct 2000 11:18:32 PDT Date: Fri, 20 Oct 2000 11:18:32 -0700 (PDT) From: Drew Subject: Re: vi key bindings To: "Andresen,Jason R." Cc: 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 Jason, Thanks a lot! I had not looked at the zshzle man page yet. I had looked at a number of man pages but not zshzle. BTW it was "bindkey -v" that I was looking for. Thank you again for you suggestion. Drew --- "Andresen,Jason R." wrote: > > > Drew wrote: > > > > Hello, > > > > This is slightly off topic so please excuse me, or > > please point me to the correct list. I have a > FreeBSD > > 4.1.1 box. I have heard a lot of really cool > things > > about zsh from a number of ppl. I have installed > zsh > > via the ports collection. I set it as my shell > and I > > can not get vi keybindings to work. In bash I use > > "set -o vi". This errors in zsh with: > > > > set: no such option: vi > > > > Can anyone please provide me with the correct > syntax? > > I think the syntax is "man zsh" and then "man > zshzle" > Look at the bindkey entry in zshmodules. > > _ _ _ ___ ____ ___ > ______________________________________ > / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- > jandrese@mitre.org > / /\/\ \ | | | | | |/ /|_|_ | Views expressed may > not reflect those > /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 11:38:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from idiom.com (idiom.com [216.240.32.1]) by hub.freebsd.org (Postfix) with ESMTP id 81F7437B479 for ; Fri, 20 Oct 2000 11:38:44 -0700 (PDT) Received: from localhost (billy@localhost) by idiom.com (8.9.3/8.9.3) with ESMTP id LAA54115; Fri, 20 Oct 2000 11:38:35 -0700 (PDT) Date: Fri, 20 Oct 2000 11:38:35 -0700 (PDT) From: To: mrc@ChipChat.ne.jp Cc: freebsd-questions@FreeBSD.ORG Subject: Re: SSH fails for user, but succeeds for root Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't know if you've already figured this out, but I just encountered this same problem and figured out what the solution was. I had cvsup'd and remade world, and I had also remade the /dev tree. This had changed alot of the permissions of the /dev/tree. The /dev/tty was changed to crw-------. It needs to be crw-rw-rw-. This solved my problem, maybe it will solve yours if you still have it. -billy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 11:44:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rapidnet.com (rapidnet.com [205.164.216.1]) by hub.freebsd.org (Postfix) with ESMTP id 150F537B479; Fri, 20 Oct 2000 11:44:27 -0700 (PDT) Received: from localhost (nick@localhost) by rapidnet.com (8.9.3/8.9.3) with ESMTP id MAA43767; Fri, 20 Oct 2000 12:44:19 -0600 (MDT) Date: Fri, 20 Oct 2000 12:44:19 -0600 (MDT) From: Nick Rogness To: Marko Ruban Cc: FreeBSD questions , freebsd-hackers@freebsd.org Subject: Re: Routing issue with cable modem In-Reply-To: <39F08B52.2E598CC5@tellurian.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Oct 2000, Marko Ruban wrote: > I tried replicating my windows routing table in freebsd. > Only one entry didn't work... (guess) > "route add default 10.17.56.xx" > > I'm cursed ! My guess guess would be your DHCP client is not working right. Is it suppose to be using DHCP? Is it really something else like PPPoE? You see, the problem is not that the network is unreachable. It is that the default network is not DIRECTLY reachable. This is a violation of basic routing principles...although many devices work with that setup (Windows,Cisco,etc). FreeBSD does not allow you to add a default route to a network that is not directly connected. Why don't you dump your windows routing table `route -print` to the list and we could put together a routing table for you or see what is acutally going on. > read below .... > > > > > > Goal -- to add cable modem as the default gateway to internet. > > > > > Symptom -- "add net default: gateway 10.17.56.XXX: Network is > > > > > unreachable" > > > > > Problem -- I think modem gateway cannot be added because it's on a > > > > > different subnet then my NICs. > > > > > Attempted -- aliasing ed0 to modem subnet.... all 10.17.56 IPs seem to > > > > > be occupied. > > > > > > > > It does sound like routing- > > > > A gateway, by definition, has to be on the same network as your NIC. > > > > I'm guessing your cable modem is in bridging mode? (vs routing mode) > > > > > > What would that mean in terms of my config changes ?? > > > So is the cable modem in this computer, or is it some standalone device? > > The cable modem is an external device. It is connected to one of my two NICs. > The other NIC has been connected to a small LAN for a while (which worked > perfect with dialup PPP and NAT). And it is also connected to the TV cable and > a phone line. The uplink is handled automatically by the modem. > > > > > So it's presenting itself as some IP right? > > > > And you just have to use this IP as the default gateway for all your > > other > > > > machines- > > > > > > > What is the subnet masking in place here? > > > > > > The modem works fine on my windows machine, and I looked up the > > configuration > > > there (winipcfg). > > > Windows sets 10.17.56.XXX as the default gateway (and DHCP server), and > > assigns > > > 208.59.162.XXX (subnet 255.255.255.0) to me. DNS server is set to > > 207.172.3.9. > > > > > > Seems like should be no difficulty setting up unix in the same way... but > > unix > > > does like 10.17.56.XXX as gateway (because supposedly network is > > unreachable). > > > > > > So that's the story... any suggestions? > > > > Ok, so the machine is being given a 208.59.162.xxx IP address (via DHCP), > > and a default gateway of 10.17.56.xx. > > > > Ok I think I know what's going on- > > > > Try manually adding the default route, but specify the interface that you > > want to use. > > It's something like: > > > > "route add default 10.17.56.xx netmask 255.255.255.0 interface ed0" > > "route add default 10.17.56.xx -netmask 255.255.255.0 -interface ed0" did not > work, probably because 10.17.56.xx was specifying a gateway for the network > 0.0.0.0 and ed0 was trying to be a gateway as well. I can however "route add > default -interface ed0" which is actually the closest I've gotten to it working > (modem dials out when I ping 10.17.56.1). > > "route add default 10.17.56.xx" would not work under any circumstances :( > tells me "Network is unreachable". I just wonder how windows has no problem > adding it as gateway. > > > I think that because the machine doesnt have an interface on the 10.x.x.x > > network, it doesn't know how to get to the 10.x.x.0 network. > > > > I think you alternately could add a static route that looks like this: > > > > "route add 10.0.0.0 208.59.162.xx" > > When route to 10.0.0.0 is added, outgoing packets are corrupted (checked with > ethereal). I.E. the header of the packet has 4 bytes inserted between the > source and destination MACs. Those 4 bytes always seem to be part of the > destination MAC itself. > > > Following from another reply..... > >>>>>>>>>>>>>>>>>>>>>> > >> > > defaultrouter="10.17.56.12" #<-- fails with symptom previously > described > >> > > >> > DHCP will normally configure the default route for you -- try setting > >> > this to NO. > >> > >> Tried setting to NO... DHCP doesn't seem to add a default route, so in my > case it > >> makes no difference really. > >> Should it add default route? > > > >Normally, yes. You sort of need default route and netmask in order to > >make things work. This should happen with the stock dhclient.conf > >(which is empty). You could try to run dhclient by hand, something > >like: > > > > # killall dhclient > > # dhclient -dD ed0 > > > >Or whatever your interface is. Terminate it with Ctrl+C. You should > >get a bunch of files in /tmp, containing values received from the > >server. You may also get some interesting error messages. > > Tried "dhclient -d -D ed0".... no files are written to /tmp dir. > Do you think it could be a problem with my dhclient ? > I tried using wide-dhcp client earlier, with even less success. > > Marko > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message > Nick Rogness - Drive defensively. Buy a tank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:15:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 50B3C37B479 for ; Fri, 20 Oct 2000 12:15:38 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id MAA03682; Fri, 20 Oct 2000 12:15:23 -0700 Message-ID: <39F099CB.BC701C70@urx.com> Date: Fri, 20 Oct 2000 12:15:23 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: "Joseph E. Royce" Cc: Otter , freebsd-questions@FreeBSD.ORG Subject: Re: FW: booting problems with SMP enabled References: <14831.46693.860465.246500@guru.mired.org> <20001020072558.A21782@freyr.cba.ualr.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Joseph E. Royce" wrote: > > On Fri, Oct 20, 2000 at 06:57:18AM -0400, Otter wrote: > > > > > > }-----Original Message----- > > }From: owner-freebsd-questions@FreeBSD.ORG > > }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Mike Meyer > > }Sent: Thursday, October 19, 2000 11:05 PM > > }To: Otter > > }Cc: questions@FreeBSD.ORG > > }Subject: Re: FW: booting problems with SMP enabled > > } > > } > > }Otter writes: > > }> I've got a new install of 4.1-RELEASE here. > > }> Hardware consists of a dual processor board (unknown brand), > > }> 2 Intel P2-300's, a single 128MB DIMM, onboard scsi > > }> (disabled), on a 13GB IDE drive. The machine boots and runs > > }> fine with a single processor. For testing purposes, I've > > }> swapped them around to make sure that both CPU's are working > > }> as they should. No problems there. When I boot up with the > > }> SMP kernel (only the SMP and APIC_IO lines uncommented) it > > }> hangs in the boot process at where it says "APIC_IO: testing > > }> 8254 interrupt delivery". At this point, the machine locks > > }> and requires me cycling power via the switch on the power > > }> supply. I'm at a loss. I've got a bank of dipdswitches on > > }> the board and have changed a few at random, but no luck so > > }> far. Without knowing the brand of the board, I'm not sure > > }> how I can take this any further. Any tips/ideas/suggestions? TIA. > > } > > }Check the board manufacturers web site for a manual! > > } > > I'd love to, but as you can see above, I don't know who the > > manufacturer is/was. I've found no markings on the board that identify > > it as any particular brand. > > If you can find a FCC ID number on the motherboard then you can do > a search at http://www.fcc.govoet/fccid/ for the manufacturers. This wasn't copied right. I thought it was an important resource and it was missing. I found it had a "/" missing. The address is http://www.fcc.gov/oet/fccid/ Kent > > -Joe > > > > }Also notice that "An SMP kernel will ONLY run on an Intel MP > > }spec. qualified motherboard" and "Be sure to disable 'cpu > > }I386_CPU' && > > }'cpu I486_CPU' for SMP kernels." (The latter may not be required for > > }your version, but won't hurt in any case). > > > > already done. > > > > } > > }Also, check the stepping number of the P2's (on the chip, somewhere, > > }one hopes, or possibly in dmesg when the system boots) and then check > > }the intel web to make sure the two chips will work *together*. While > > }each may work fine, if you've don't have compatible stepping numbers, > > }they won't work together. > > } > > } > } > > The stepping numbers DO match. I've searched Intel's site and found > > some CPUID info charts, but nothing that states they work together... > > then again, I didn't find anything saying the contrary. I seem to > > remember that was the big hype of P2 over Celerons-- they had more > > cache and would support SMP. I could only assume that they all do... > > and neer had problems getting any p2 or p3's to work in SMP as long as > > the stepping numbers matched. I've set this up on several machines in > > the past, so I know (or at least I used to!) what to look for and the > > steps to take to make it happen. I'm just at a loss on this one. > > -Otter > > > > > > > > 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 -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:16:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id E717C37B4C5; Fri, 20 Oct 2000 12:16:02 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Fri, 20 Oct 2000 15:16:13 -0400 Message-ID: <39F09A58.5B2711BD@tellurian.com> Date: Fri, 20 Oct 2000 15:17:44 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: Nick Rogness Cc: FreeBSD questions , freebsd-hackers@freebsd.org Subject: Re: Routing issue with cable modem References: Content-Type: text/html; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG  
Nick Rogness wrote:
On Fri, 20 Oct 2000, Marko Ruban wrote:

> I tried replicating my windows routing table in freebsd.
> Only one entry didn't work... (guess)
> "route add default 10.17.56.xx"
>
> I'm cursed !

        My guess guess would be your DHCP client is not working right.
        Is it suppose to be using DHCP?  Is it really something else like
        PPPoE?

It definitely uses DHCP, because I update the setup with "winipcfg" whenever I switch the modem over to windows machine.
Also ethereal (for windows) shows DHCP packets being exchanged.
        You see, the problem is not that the network is unreachable.  It
        is that the default network is not DIRECTLY reachable.  This is a
        violation of basic routing principles...although many devices work
        with that setup (Windows,Cisco,etc).  FreeBSD does not allow you
        to add a default route to a network that is not directly
        connected.
If windows can do it, freebsd probably can too, even if it takes a custom program  ;)
        Why don't you dump your windows routing table `route -print` to
        the list and we could put together a routing table for you or see
        what is acutally going on.
NOTE: table below best viewed in proportional font....
('route print' and 'netstat -r' seem to yield identical results)

C:\WINDOWS>netstat -r
Route Table
Active Routes:

  Network Address          Netmask  Gateway Address        Interface  Metric
          0.0.0.0          0.0.0.0      10.17.56.12   208.59.162.242       1
        127.0.0.0        255.0.0.0        127.0.0.1        127.0.0.1       1
     208.59.162.0    255.255.255.0   208.59.162.242   208.59.162.242       1
   208.59.162.242  255.255.255.255        127.0.0.1        127.0.0.1       1
   208.59.162.255  255.255.255.255   208.59.162.242   208.59.162.242       1
        224.0.0.0        224.0.0.0   208.59.162.242   208.59.162.242       1
  255.255.255.255  255.255.255.255   208.59.162.242   208.59.162.242       1

I also edited (a copy of) the dhclient-script to dump output of commands to /tmp instead of /dev/null maybe I'll see something interesting there.

*** old discussion follows

> > > > > Goal -- to add cable modem as the default gateway to internet.
> > > > > Symptom -- "add net default: gateway 10.17.56.XXX: Network is
> > > > > unreachable"
> > > > > Problem -- I think modem gateway cannot be added because it's on a
> > > > > different subnet then my NICs.
> > > > > Attempted -- aliasing ed0 to modem subnet.... all 10.17.56 IPs seem to
> > > > > be occupied.
> > > >
> > > > It does sound like routing-
> > > > A gateway, by definition, has to be on the same network as your NIC.
> > > > I'm guessing your cable modem is in bridging mode? (vs routing mode)
> > >
> > > What would that mean in terms of my config changes ??
>
> > So is the cable modem in this computer, or is it some standalone device?
>
> The cable modem is an external device.  It is connected to one of my two NICs.
> The other NIC has been connected to a small LAN for a while (which worked
> perfect with dialup PPP and NAT).  And it is also connected to the TV cable and
> a phone line.  The uplink is handled automatically by the modem.
>
> > > > So it's presenting itself as some IP right?
> > > > And you just have to use this IP as the default gateway for all your
> > other
> > > > machines-
> > >
> > > > What is the subnet masking in place here?
> > >
> > > The modem works fine on my windows machine, and I looked up the
> > configuration
> > > there (winipcfg).
> > > Windows sets 10.17.56.XXX as the default gateway (and DHCP server), and
> > assigns
> > > 208.59.162.XXX (subnet 255.255.255.0) to me.  DNS server is set to
> > 207.172.3.9.
> > >
> > > Seems like should be no difficulty setting up unix in the same way... but
> > unix
> > > does like 10.17.56.XXX as gateway (because supposedly network is
> > unreachable).
> > >
> > > So that's the story... any suggestions?
> >
> > Ok, so the machine is being given a 208.59.162.xxx IP address (via DHCP),
> > and a default gateway of 10.17.56.xx.
> >
> > Ok I think I know what's going on-
> >
> > Try manually adding the default route, but specify the interface that you
> > want to use.
> > It's something like:
> >
> > "route add default 10.17.56.xx netmask 255.255.255.0 interface ed0"
>
> "route add default 10.17.56.xx -netmask 255.255.255.0 -interface ed0"  did not
> work, probably because 10.17.56.xx was specifying a gateway for the network
> 0.0.0.0 and ed0 was trying to be a gateway as well.  I can however "route add
> default -interface ed0" which is actually the closest I've gotten to it working
> (modem dials out when I ping 10.17.56.1).
>
> "route add default 10.17.56.xx" would not work under any circumstances :(
> tells me "Network is unreachable".  I just wonder how windows has no problem
> adding it as gateway.
>
> > I think that because the machine doesnt have an interface on the 10.x.x.x
> > network, it doesn't know how to get to the 10.x.x.0 network.
> >
> > I think you alternately could add a static route that looks like this:
> >
> > "route add 10.0.0.0 208.59.162.xx"
>
> When route to 10.0.0.0 is added, outgoing packets are corrupted (checked with
> ethereal).  I.E. the header of the packet has 4 bytes inserted between the
> source and destination MACs.  Those 4 bytes always seem to be part of the
> destination MAC itself.
>
>
> Following from another reply.....
> >>>>>>>>>>>>>>>>>>>>>>
> >> > > defaultrouter="10.17.56.12"   #<-- fails with symptom previously
> described
> >> >
> >> > DHCP will normally configure the default route for you -- try setting
> >> > this to NO.
> >>
> >> Tried setting to NO... DHCP doesn't seem to add a default route, so in my
> case it
> >> makes no difference really.
> >> Should it add default route?
> >
> >Normally, yes.  You sort of need default route and netmask in order to
> >make things work.  This should happen with the stock dhclient.conf
> >(which is empty).  You could try to run dhclient by hand, something
> >like:
> >
> > # killall dhclient
> > # dhclient -dD ed0
> >
> >Or whatever your interface is.  Terminate it with Ctrl+C. You should
> >get a bunch of files in /tmp, containing values received from the
> >server.  You may also get some interesting error messages.
>
> Tried "dhclient -d -D ed0".... no files are written to /tmp dir.
> Do you think it could be a problem with my dhclient ?
> I tried using wide-dhcp client earlier, with even less success.
>
> Marko
>
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-hackers" in the body of the message
>

Nick Rogness
- Drive defensively.  Buy a tank.

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:22:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rapidnet.com (rapidnet.com [205.164.216.1]) by hub.freebsd.org (Postfix) with ESMTP id 2A0B537B4D7; Fri, 20 Oct 2000 12:22:51 -0700 (PDT) Received: from localhost (nick@localhost) by rapidnet.com (8.9.3/8.9.3) with ESMTP id NAA64989; Fri, 20 Oct 2000 13:22:48 -0600 (MDT) Date: Fri, 20 Oct 2000 13:22:48 -0600 (MDT) From: Nick Rogness To: Marko Ruban Cc: FreeBSD questions , freebsd-hackers@freebsd.org Subject: Re: Routing issue with cable modem In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Oct 2000, Nick Rogness wrote: Made an error in my previous statement, clarification below: > On Fri, 20 Oct 2000, Marko Ruban wrote: > > > I tried replicating my windows routing table in freebsd. > > Only one entry didn't work... (guess) > > "route add default 10.17.56.xx" > > > > I'm cursed ! > > My guess guess would be your DHCP client is not working right. > Is it suppose to be using DHCP? Is it really something else like > PPPoE? > > You see, the problem is not that the network is unreachable. It > is that the default network is not DIRECTLY reachable. This is a > violation of basic routing principles...although many devices work This is not neccessarily true. There are some instances where this is perfectly legal and are out-of-scope for this mail. However, they are usually handled by dynamic routing protocols and/or other equipment/software interaction. This argument has come up before on this list and the concept has went back and forth on why's and why not's. > with that setup (Windows,Cisco,etc). FreeBSD does not allow you > to add a default route to a network that is not directly > connected. > > Why don't you dump your windows routing table `route -print` to > the list and we could put together a routing table for you or see > what is acutally going on. > Nick Rogness - Drive defensively. Buy a tank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:24:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay2.inwind.it (relay2.inwind.it [212.141.53.73]) by hub.freebsd.org (Postfix) with ESMTP id B932337B4D7 for ; Fri, 20 Oct 2000 12:24:07 -0700 (PDT) Received: from bartequi.ottodomain.org (62.98.153.52) by relay2.inwind.it (5.1.046) id 39CB09790070A481; Fri, 20 Oct 2000 21:20:09 +0200 From: Salvo Bartolotta Date: Fri, 20 Oct 2000 20:21:31 GMT Message-ID: <20001020.20213100@bartequi.ottodomain.org> Subject: Re: gnucash and odd port behavior To: j mckitrick Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20001020114718.A44597@dogma.freebsd-uk.eu.org> References: <20001020114718.A44597@dogma.freebsd-uk.eu.org> X-Mailer: SuperCalifragilis X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/20/00, 11:47:18 AM, j mckitrick wrote=20 regarding gnucash and odd port behavior: > I had some trouble building gnucash last night. I should mention I=20 recently > deleted my entire ports tree so I could start from scratch, and I used= =20 the > cvsup file to limit them to those that interest me. Maybe this is=20 what > caused my problem. The port won't build. First, D/Ling the package=20 didn't > work, tellingg me I was denied access to the file on the freebsd=20 server. > Then, when I tried a port instead of a package, the compile died. I=20 don't > have the error, but I can get it later tonight. I thought maybe=20 someone > would have some ideas first. Jonathon, The following "philological" information/approach may be unrelated to=20 your problem, but I think you will probably find this general=20 consideration useful per se. Whenever you update any source tree (src-all, ports-all, etc.), it is=20 safe practice to run a preliminary cvsup session using an appropriate=20 tag and/or date in the supfile. Actually, in this session, cvsup=20 creates the checkouts file reflecting the **initial** state of your=20 collection. Subsequent updates will be making use of=20 normal/standard/well-known supfiles. The spirit of the operation is illustrated by John Polstra himself in=20 the FAQ found at http://www.polstra.com (please have a look at them,=20 in particular Q12 and Q13). After reinstalling your ports tree, you should first cvsup ports using=20 a suitable date tag (cf cvsup(1)); that is, in the date tag in=20 question, you should specify a date close to that of "shipping" of=20 your ports tree. For all your subsequent updates, you'll be using the=20 normal supfile. The recipe, in short, is: **add** a suitable "date" tag to your=20 ports-supfile, as per the instructions in cvsup(1). HTH anyway, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:24:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from EI-Tiger.ChipChat.ne.jp (EI-Tiger.ChipChat.ne.jp [211.5.237.226]) by hub.freebsd.org (Postfix) with ESMTP id AB85937B479 for ; Fri, 20 Oct 2000 12:24:31 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by EI-Tiger.ChipChat.ne.jp (8.11.0/8.11.0) with ESMTP id e9KJOHU82561; Fri, 20 Oct 2000 19:24:18 GMT (envelope-from mrc@ChipChat.ne.jp) To: billy@idiom.com Cc: mrc@ChipChat.ne.jp, freebsd-questions@FreeBSD.ORG Subject: Re: SSH fails for user, but succeeds for root In-Reply-To: References: X-Mailer: Mew version 1.94.2 on XEmacs 21.1 (Carlsbad Caverns) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20001020192417M.mrc@ChipChat.ne.jp> Date: Fri, 20 Oct 2000 19:24:17 GMT From: Marty Cawthon X-Dispatcher: imput version 20000228(IM140) Lines: 22 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG billy> I don't know if you've already figured this out, but I just encountered billy> this same problem and figured out what the solution was. billy> billy> I had cvsup'd and remade world, and I had also remade the /dev tree. This billy> had changed alot of the permissions of the /dev/tree. The /dev/tty was billy> changed to crw-------. It needs to be crw-rw-rw-. This solved my billy> problem, maybe it will solve yours if you still have it. At BSDCon Brian Somers found my trouble to be caused by crw------- /dev/urandom This was changed to: crw-r--r-- /dev/urandom which solved my problem. Thanks for your note. Similar problems. I don't know who my permissions got set improperly, as I am certain that I did not do it explicitly. Marty Cawthon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:28:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Socrates.i-pi.com (Socrates.i-pi.com [198.49.217.5]) by hub.freebsd.org (Postfix) with ESMTP id 388C637B4C5 for ; Fri, 20 Oct 2000 12:28:17 -0700 (PDT) Received: (from ingham@localhost) by Socrates.i-pi.com (8.11.0/8.9.3) id e9KJSCp01801 for questions@freebsd.org; Fri, 20 Oct 2000 13:28:12 -0600 (MDT) (envelope-from ingham) Date: Fri, 20 Oct 2000 13:28:12 -0600 From: Kenneth Ingham To: questions@freebsd.org Subject: hardware diagnostics? Message-ID: <20001020132811.A1742@Socrates.i-pi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a machine built from parts (to avoid the microsoft tax) running 4.1 with a 4-STABLE kernel (built on another FreeBSD 4-Stable machine). It is hanging at random places. I suspect hardware for the following reason: If I boot the system and try to compile a kernel, it will hang (no response to ping, no response on console) during the make depend. Unfortunately, it does not hang in the same place each time, which is why I suspect hardware. How does one go about testing hardware short of buying a second collection of parts and changing them one at a time? Kenneth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:38: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mailgw3.netvision.net.il (mailgw3.netvision.net.il [194.90.1.11]) by hub.freebsd.org (Postfix) with ESMTP id BF28D37B657 for ; Fri, 20 Oct 2000 12:38:01 -0700 (PDT) Received: from phpStop.com (ras3-p90.hfa.netvision.net.il [62.0.147.90]) by mailgw3.netvision.net.il (8.9.3/8.9.3) with ESMTP id VAA26542; Fri, 20 Oct 2000 21:37:06 +0200 (IST) Message-ID: <39F09EB8.37807DB0@phpStop.com> Date: Fri, 20 Oct 2000 21:36:24 +0200 From: "phpStop.com" Organization: phpStop.com X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: FreeBSD vs. Linux Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, If this is not the right place to ask such questions, please forgive me and I'll appreciate it if you can forward me to the right place. Is there any detailed information or technical sheet about the difference between FreeBSD and Linux? Also, what are the advantages over the disadvantages of each of the mentioned OS's? If someone could point me to a technical page, also, that indicates FreeBSD's and Linux's performance when running Apache, PHP and MySQL? We need this information in order to determine which of these two OS to choose from to drive our website. Thank you in advance for your help. -- Regards, phpStop.com http://www.phpstop.com/ stop here. start everywhere. mailto:info@phpstop.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 12:47: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id 5969A37B4CF for ; Fri, 20 Oct 2000 12:47:00 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 48AF61D5E; Fri, 20 Oct 2000 15:46:47 -0400 (EDT) Date: Fri, 20 Oct 2000 15:46:47 EDT From: mike johnson To: "phpStop.com" , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD vs. Linux Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001020194647.48AF61D5E@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG http://perl.pattern.net/bench/ http://innominate.org/%7Etgr/projects/tuning/ On Fri, 20 Oct 2000, phpStop.com wrote: > Date: Fri, 20 Oct 2000 21:36:24 +0200 > To: freebsd-questions@FreeBSD.ORG > From: "phpStop.com" > Subject: FreeBSD vs. Linux > > Hello, > > If this is not the right place to ask such questions, please forgive me > and I'll appreciate it if you can forward me to the right place. > > Is there any detailed information or technical sheet about the > difference between FreeBSD and Linux? Also, what are the advantages over > the disadvantages of each of the mentioned OS's? > > If someone could point me to a technical page, also, that indicates > FreeBSD's and Linux's performance when running Apache, PHP and MySQL? > > We need this information in order to determine which of these two OS to > choose from to drive our website. > > Thank you in advance for your help. > > -- > Regards, > > phpStop.com http://www.phpstop.com/ > stop here. start everywhere. mailto:info@phpstop.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 13:16: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from matt.MUNICH.v-net.org (u57n248.hfx.eastlink.ca [24.222.57.248]) by hub.freebsd.org (Postfix) with ESMTP id 29CDA37B479 for ; Fri, 20 Oct 2000 13:16:04 -0700 (PDT) Received: from unisys (Windozzze [192.168.8.2]) by matt.MUNICH.v-net.org (8.9.3/8.9.3) with SMTP id RAA01505 for ; Fri, 20 Oct 2000 17:16:02 -0300 (ADT) (envelope-from matt@researcher.com) From: "Matt Rudderham" To: Subject: Strange Reboot Date: Fri, 20 Oct 2000 17:15:31 -0300 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.50.4133.2400 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I was working on a different machine when my FreeBSD box (4.0 RELEASE) spontaneously rebooted itself. The output of Last shows as follows: ( All users logged in at time( All Local vts.)) matt ttyv4 Wed Oct 11 16:24 - crash (8+06:04) There is also the entry: reboot ~ Thurs Oct 19 22:28 Is there anywhere else I should be looking? If this is a onetime thing, it's not a major problem, and the box did bring itself up okay (first boot on a rebuilt kernel), it just seemed odd, I was watching the terminal, which was tailing an apache log file, and it just went blank and rebooted. I wouldn't mind correcting the prob if I could. I checked all of the usual sources first, i.e. power, overheating, etc. Also on a side note, has anyone heard anything on the status of the "broken" le driver in FreeBSD 4.0, I assume it wasn't fixed in 4.1, the status page( http://www.freebsd.org/cgi/query-pr.cgi?pr=18641 ), hasn't updated, and I've gotten no response from the author. Thanks, Matthew Rudderham To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 13:22:15 2000 Delivered-To: freebsd-questions@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id ED94F37B479 for ; Fri, 20 Oct 2000 13:21:35 -0700 (PDT) Received: from backup.af.speednet.com.au (backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.11.0/8.11.0) with ESMTP id e9KKIfa97034; Sat, 21 Oct 2000 07:19:08 +1100 (EST) (envelope-from andyf@speednet.com.au) Date: Sat, 21 Oct 2000 07:18:40 +1100 (EST) From: Andy Farkas X-Sender: andyf@backup.af.speednet.com.au To: Sergey Nikolayev Cc: freebsd-questions@FreeBSD.ORG Subject: Re: A question about log In-Reply-To: <000801c03a65$a5e79760$210aa8c0@radiant.ru> Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/Mixed; BOUNDARY="----=_NextPart_000_0005_01C03A87.29566E20" Content-ID: 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. ------=_NextPart_000_0005_01C03A87.29566E20 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: Try the FAQ on the squid site: http://www.squid-cache.org/Doc/FAQ/FAQ-6.html On Fri, 20 Oct 2000, Sergey Nikolayev wrote: > I've got a little question. Our company, Radiant Computers Ltd., > located in Samara, Russia, is using a FreeBSD-based proxy (Squid? - not > sure) to connect our office to the Internet. It is possible to get logs and > control what was accessed, but what do all those records mean? In practice, > I'm interested to see time when an URL was accessed, and the downloaded > resource size. > > I've attached a single log record, and want to know what all those > fields mead. I hope you can help me. > > Regards, > Sergey Nikolayev. > -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ ------=_NextPart_000_0005_01C03A87.29566E20 Content-Type: TEXT/PLAIN; NAME="log-.txt" Content-Transfer-Encoding: QUOTED-PRINTABLE Content-ID: Content-Description: Content-Disposition: ATTACHMENT; FILENAME="log-.txt" LAST RECORD DATED OCT.12,2000: 971336136.517 639 192.168.10.33 TCP_MISS/200 373 GET = http://www.aol.com/gr/transpixel.gif - DIRECT/www.aol.com image/gif ^ ^ ^ ^ ^ ^ ^ = ^ ^ =20 a b c d e f g = h i =20 a ? b ? c Caller host IP address d Protocol used e ? f Request type? g URL h - i ? This particular GIF is 49 bytes size. ------=_NextPart_000_0005_01C03A87.29566E20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 13:54: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from falcon.scana.com (falcon.scana.com [161.156.101.7]) by hub.freebsd.org (Postfix) with ESMTP id 1858537B4CF for ; Fri, 20 Oct 2000 13:54:06 -0700 (PDT) Received: by falcon.scana.com; id QAA09967; Fri, 20 Oct 2000 16:53:58 -0400 (EDT) Received: from mailexnet.scana.com(161.156.248.69) by falcon.scana.com via smap (V5.5) id xma009946; Fri, 20 Oct 00 16:53:20 -0400 Received: by mailexnet.scana.com with Internet Mail Service (5.5.2650.21) id <45849GBF>; Fri, 20 Oct 2000 16:53:18 -0400 Message-ID: From: "SILVER, MICHAEL A" To: "'Matt Rudderham'" , "'freebsd-questions@FreeBSD.ORG'" Subject: RE: Strange Reboot Date: Fri, 20 Oct 2000 16:53:11 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Out of curiosity, what brand motherboard are you using? I had a reboot problem, and after swapping motherboards, I never rebooted again. I was using a PCChips motherboard/Pentium 200 (with an illegal BIOS), and replaced it with an ASUS MB/AMD K6-350. ...Michael... > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Matt > Rudderham > Sent: Friday, October 20, 2000 4:16 PM > To: freebsd-questions@FreeBSD.ORG > Subject: Strange Reboot > > > Hi, > I was working on a different machine when my FreeBSD box (4.0 RELEASE) > spontaneously rebooted itself. The output of Last shows as follows: > ( All users logged in at time( All Local vts.)) > matt ttyv4 Wed Oct 11 16:24 - crash (8+06:04) > There is also the entry: > reboot ~ Thurs Oct 19 22:28 > > Is there anywhere else I should be looking? > If this is a onetime thing, it's not a major problem, and the > box did bring > itself up okay (first boot on a rebuilt kernel), it just > seemed odd, I was > watching the terminal, which was tailing an apache log file, > and it just > went blank and rebooted. I wouldn't mind correcting the prob > if I could. I > checked all of the usual sources first, i.e. power, > overheating, etc. Also > on a side note, has anyone heard anything on the status of > the "broken" le > driver in FreeBSD 4.0, I assume it wasn't fixed in 4.1, the > status page( > http://www.freebsd.org/cgi/query-pr.cgi?pr=18641 ), hasn't > updated, and I've > gotten no response from the author. > Thanks, > Matthew Rudderham > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 13:57:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ghost.blacktrap.net (20-230.CampusNet.ucl.ac.be [130.104.20.230]) by hub.freebsd.org (Postfix) with ESMTP id C961B37B4C5 for ; Fri, 20 Oct 2000 13:57:53 -0700 (PDT) Received: from anoat.blacktrap.net (anoat [192.168.1.11]) by ghost.blacktrap.net (8.11.1/8.11.0) with ESMTP id e9KKvpn00876 for ; Fri, 20 Oct 2000 22:57:51 +0200 (CEST) (envelope-from lex@blacktrap.net) Received: (from lex@localhost) by anoat.blacktrap.net (8.11.1/8.11.0) id e9KKAv640727 for freebsd-questions@FreeBSD.ORG; Fri, 20 Oct 2000 22:10:57 +0200 (CEST) (envelope-from lex) Date: Fri, 20 Oct 2000 22:10:57 +0200 From: Chive To: freebsd-questions@FreeBSD.ORG Subject: Re: linking oddness Message-ID: <20001020221057.A40152@blacktrap.net> References: <20001020135840.P11549@genuity.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001020135840.P11549@genuity.net>; from jdiehl@genuity.net on Fri, Oct 20, 2000 at 01:58:40PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 01:58:40PM -0400, Joe Diehl wrote: > I was wondering if someone can help me out here, seeing as I'm now rather lost. > I'm having problems with linking libraries that I install in /usr/local/lib. > > For instance: > > $ LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/usr/X11R6/lib:/lib > $ export LD_LIBRARY_PATH > $ gcc -o test test.o -ljpeg > /usr/libexec/elf/ld: cannot find -ljpeg > $ gcc -o test test.o -L/usr/local/lib -ljpeg > $ ldd test > test: > libjpeg.so.62 => /usr/local/lib/libjpeg.so.62 (0x28064000) > libc.so.4 => /usr/lib/libc.so.4 (0x28082000) > LIBRARY_PATH is the variable to use for compilation... Wonder why this isn't in gcc or ld manpage. You can find it with "info gcc". Ciao, Chive. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14: 7: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from earth.wnm.net (earth.wnm.net [208.246.240.243]) by hub.freebsd.org (Postfix) with ESMTP id 4933A37B4C5 for ; Fri, 20 Oct 2000 14:07:03 -0700 (PDT) Received: from localhost (alex@localhost) by earth.wnm.net (8.11.0/8.11.0) with ESMTP id e9KL7X405338; Fri, 20 Oct 2000 16:07:33 -0500 (CDT) Date: Fri, 20 Oct 2000 16:07:33 -0500 (CDT) From: Alex Charalabidis To: Matt Rudderham Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Strange Reboot In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Oct 2000, Matt Rudderham wrote: > Hi, > I was working on a different machine when my FreeBSD box (4.0 RELEASE) > spontaneously rebooted itself. The output of Last shows as follows: > ( All users logged in at time( All Local vts.)) > matt ttyv4 Wed Oct 11 16:24 - crash (8+06:04) > There is also the entry: > reboot ~ Thurs Oct 19 22:28 >=20 > Is there anywhere else I should be looking? > If this is a onetime thing, it's not a major problem, and the box did bri= ng > itself up okay (first boot on a rebuilt kernel), it just seemed odd, I wa= s > watching the terminal, which was tailing an apache log file, and it just > went blank and rebooted. I wouldn't mind correcting the prob if I could. = I > checked all of the usual sources first, i.e. power, overheating, etc. Als= o I'd look precisely where you looked first. Then I'd check my memory thoroughly, most random "silent" reboots I've had I traced to faulty or unsuitable memory modules. Why don't I check the memory first, you ask. Go figure.=A0:) > on a side note, has anyone heard anything on the status of the "broken" = le > driver in FreeBSD 4.0, I assume it wasn't fixed in 4.1, the status page( > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D18641 ), hasn't updated, and= I've > gotten no response from the author. Yes, check PR #19219. Unfortunately I have two dozen le NICs lying around but no spare 4.x box to test them with, so I can't help out until I find/build one. If you look at the driver source though, you'll see that some change was made in mid-July, that could possibly have fixed it. -ac --=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Alex Charalabidis (AC8139) 5050 Poplar Ave, Ste 170 System Administrator Memphis, TN 38157 WebNet Memphis (901) 432 6000 Author, The Book of IRC http://www.bookofirc.com/ =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:16: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from snoopy.brwn.org (intgw1.brwn.org [196.28.127.66]) by hub.freebsd.org (Postfix) with ESMTP id 4B51B37B479 for ; Fri, 20 Oct 2000 14:15:55 -0700 (PDT) Received: by snoopy.brwn.org (Postfix, from userid 1000) id 7A6883ABC; Fri, 20 Oct 2000 23:15:46 +0200 (SAST) Date: Fri, 20 Oct 2000 23:15:46 +0200 From: Willem Brown To: Dave Cantrell Cc: freebsd-questions@freebsd.org Subject: Re: Log File Archiving Message-ID: <20001020231546.L40098@snoopy.brwn.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from phaedrus@alltel.net on Fri, Oct 20, 2000 at 12:54:02PM -0500 X-Public-Key: http://willem.brwn.org/pubkey.txt X-Chat-Server: http://chat.brwn.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, If you look at the /etc/newsyslog.conf file you should see an entry for /var/log/messages in there. It will only start to rotate once it's size reaches 100kb. If you don't have many messages being logged this can take quite a while. Mine has still not been rotated since the 10th of September. Here is the relevant line from my /etc/newsyslog.conf file. # logfilename [owner:group] mode count size when [ZB] [/pid_file] [sig_num] . . /var/log/messages 644 5 100 * Z . . . On Fri, Oct 20, 2000 at 12:54:02PM -0500, Dave Cantrell wrote: > After installing 4.1 and CVS'ing to 4.1.1, I find this error message daily > in the croned e-mail to root > > ****** > Subject: FOO.BAR.net security check output > > (NOT RELEVANT JUNK DELETED -DRC) > > FOO.BAR.net login failures: > /var/log/messages.0*.gz: No such file or directory > > FOO.BAR.net refused connections: > /var/log/messages.0*.gz: No such file or directory > ****** > > If memory serves, this file should be the archived "messages" file (as do > the cron/sendmail.st/maillog files), and I do not recall having this problem > with 3.X and 4.0. Try as I may, I cannot remember/figure out how to turn on > the archiving for this particular file. Anyone care to refresh my memory? > > drc > -- > Dave Cantrell | Contrary to popular belief, UNIX is User Friendly. > phaedrus@alltel.net | It's just choosy with whom it makes friends. > Lincoln, Nebraska, USA | And currently we have only a nodding acquaintance. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Best Regards Willem Brown -- /* =============================================================== */ /* Linux, FreeBSD, NetBSD, OpenBSD. The choice is yours. */ /* =============================================================== */ The sweeter the apple, the blacker the core -- Scratch a lover and find a foe! -- Dorothy Parker, "Ballad of a Great Weariness" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:34:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 122E237B479; Fri, 20 Oct 2000 14:34:01 -0700 (PDT) Received: from dppl.com (unverified [216.182.27.51]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Fri, 20 Oct 2000 17:34:12 -0400 Message-ID: <39F0B9A6.56FFE589@dppl.com> Date: Fri, 20 Oct 2000 17:31:18 -0400 From: Marko Ruban X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Nick Rogness Cc: Marko Ruban , FreeBSD questions , freebsd-hackers@freebsd.org Subject: Re: Routing issue with cable modem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG New issue seems to be at hand... I set the alias for the interface to be the gateway IP (10.17.56.12), and then I was able to add that as my default gateway. Not sure why aliasing wouldn't work with 10.17.56.11 or some other IP in that subnet. I tried to ping the DNS server after that, and watched hundreds of corrupt packets get sent out with no replies. So my new question is, which part of the system actually builds the packets ? Any way to debug or log that process ? Here's an example taken from ethereal output.... (view with proportional font) --------------------------------------------------------- Frame 6 (102 on wire, 102 captured) Arrival Time: Oct 20, 2000 16:42:38.2715 Time delta from previous packet: 0.000071 seconds Frame Number: 6 Packet Length: 102 bytes Capture Length: 102 bytes Ethernet II Destination: 02:00:00:00:52:54 (02:00:00:00:52:54) Source: 05:f4:21:3f:52:54 (05:f4:21:3f:52:54) Type: Unknown (0x05f4) Data (88 bytes) 0 0200 0000 5254 05f4 213f 5254 05f4 213f ....RT..!?RT..!? 10 0800 4500 0054 13fa 0000 fa01 97dc 0a11 ..E..T.......... 20 380c cfac 0309 0800 c1f0 6101 0000 3eae 8.........a...>. 30 f039 b722 0400 0809 0a0b 0c0d 0e0f 1011 .9."............ 40 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 .............. ! 50 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 "#$%&'()*+,-./01 60 3233 3435 3637 234567 --------------------------------------------------------- Why I think this packet is malformed..... First of all, protocol type Unknown (0x05f4) looks definitely bad. Secondly, protocol type looks like part of my NICs MAC address (52:54:05:f4:21:3f according to ifconfig, which translates into hex: 0x5254 05f4 213f). Thirdly, source address decoded by ethereal (and probably by any other packet processor) is wrong (first two bytes are carried over to the other side). Now, keeping all that in mind, lets do a pattern match on the REAL MAC address in hex dump of the packet. HEY, the source address actually starts four bytes later than it should, thus shifting the TRUE protocol type (0x0800 = IP) as well. First six bytes are the destination MAC, then come the EVIL 4 bytes, followed by 6 bytes of source MAC. I don't know what's going on, but looks pretty bad, yet simple on the hex level :) Any ideas ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:41:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from trill.hh.se (trill.hh.se [194.47.5.10]) by hub.freebsd.org (Postfix) with ESMTP id 3225637B4CF; Fri, 20 Oct 2000 14:41:14 -0700 (PDT) Received: from gs177.gsten.hh.se (chip@L22-212.gsten.hh.se [194.47.16.177]) by trill.hh.se (8.9.3/8.9.3) with ESMTP id XAA25660; Fri, 20 Oct 2000 23:41:09 +0200 (MET DST) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <39F09A58.5B2711BD@tellurian.com> Date: Fri, 20 Oct 2000 23:41:10 +0200 (CEST) From: Joel Bjork To: Marko Ruban Subject: Re: Routing issue with cable modem Cc: freebsd-hackers@FreeBSD.ORG Cc: freebsd-hackers@FreeBSD.ORG, FreeBSD questions , Nick Rogness Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That was some really really nasty HTML there, I think you might want to send that again as plaintext. ---------------------------------- E-Mail: Joel Bjork Date: 20-Oct-00 Time: 23:41:10 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:44: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1]) by hub.freebsd.org (Postfix) with ESMTP id 1673E37B4D7 for ; Fri, 20 Oct 2000 14:44:01 -0700 (PDT) Received: from eastmail2.East.Sun.COM ([129.148.1.241]) by mercury.Sun.COM (8.9.3+Sun/8.9.3) with ESMTP id OAA07907 for ; Fri, 20 Oct 2000 14:44:00 -0700 (PDT) Received: from swanaba.east (swanaba.East.Sun.COM [129.148.162.54]) by eastmail2.East.Sun.COM (8.9.3+Sun/8.9.3/ENSMAIL,v1.7) with ESMTP id RAA04884 for ; Fri, 20 Oct 2000 17:43:59 -0400 (EDT) Received: from Central.Sun.COM (swantty.East.Sun.COM [129.148.162.52]) by swanaba.east (8.8.8+Sun/8.8.8) with ESMTP id RAA27484 for ; Fri, 20 Oct 2000 17:43:06 -0400 (EDT) Message-ID: <39F0BA04.C4460B4E@Central.Sun.COM> Date: Fri, 20 Oct 2000 16:32:52 -0500 From: Ennis McCaffrey Organization: Sun Microsystems, Inc. X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.8 sun4m) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Free BSD support for microcom pcmcia modem Content-Type: multipart/mixed; boundary="------------91FECBB66BCE137DBC7CC025" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------91FECBB66BCE137DBC7CC025 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit All: Does FreeBSD support the Microcom TravelCard Fast pcmcia modem? I cannot find any information on it in the FreeBsd web site. When I try to access it FreeBsd comes up with a no driver found message. Thank you. Ennis McCaffrey Ennis@Techie.COM --------------91FECBB66BCE137DBC7CC025 Content-Type: text/x-vcard; charset=us-ascii; name="Ennis.McCaffrey.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Ennis McCaffrey Content-Disposition: attachment; filename="Ennis.McCaffrey.vcf" begin:vcard n:McCaffrey;Ennis tel;pager:1 (800) SKY TEL2 Pin 6305066 tel;cell:(920) 915 2292 tel;fax:(262) 792 0740 tel;home:(920) 831 6225 tel;work:(262) 792 5749 x-mozilla-html:FALSE org:Sun Microsystems, Inc.;Enterprise Services version:2.1 email;internet:Ennis.McCaffrey@Central.Sun.COM title:System Support Engineer adr;quoted-printable:;;18000 West Sarah Lane=0D=0ASuite 330;Brookfield;Wisconsin;53045;US x-mozilla-cpt:;0 fn:Ennis McCaffrey end:vcard --------------91FECBB66BCE137DBC7CC025-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:45:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.beyondtech.net (mail.beyondtech.net [203.43.52.168]) by hub.freebsd.org (Postfix) with ESMTP id 67A1F37B4C5 for ; Fri, 20 Oct 2000 14:45:19 -0700 (PDT) Received: from ws1 ([203.43.52.134]) by mail.beyondtech.net (8.9.3/8.9.3) with ESMTP id JAA81515 for ; Sat, 21 Oct 2000 09:55:42 +1100 (EST) (envelope-from marcus@redcentre.com) From: marcus@redcentre.com Message-Id: <200010202255.JAA81515@mail.beyondtech.net> To: questions@freebsd.org Date: Sat, 21 Oct 2000 07:45:25 +1000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: [freebsd-questions] Logrotate and 2.7 References: marcus@redcentre.com's message of "20 Oct 2000 13:45:25 +0200" In-reply-to: <44vgunwswc.fsf@lowellg.ne.mediaone.net> X-mailer: Pegasus Mail for Win32 (v3.12b) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Lowell, thanks for the response - I'm actually after logrotate for the ability to email files to different receipents. I don't think newsyslog has this functionality? Marcus > marcus@redcentre.com writes: > > > just looking for a bit of advice re the "logrotate" utility. I would > > really like to use the utility on a FreeBSD 2.7 server however, it > > would need to be in an aout version - any ideas? I've tried the > > elftoaout utility without any success. > > You're probably better off with the native newsyslog(8) instead of > logrotate. However, if there's some reason you specifically need > logrotate, you should probably compile it back up from source. It's > in the ports system these days, so it may be quite easy. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:46:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from inconnu.isu.edu (inconnu.isu.edu [134.50.8.55]) by hub.freebsd.org (Postfix) with ESMTP id 58CEF37B479 for ; Fri, 20 Oct 2000 14:46:53 -0700 (PDT) Received: from localhost (galt@localhost) by inconnu.isu.edu (8.9.3/8.9.3) with ESMTP id PAA28798; Fri, 20 Oct 2000 15:46:49 -0600 Date: Fri, 20 Oct 2000 15:46:48 -0600 (MDT) From: John Galt To: Petter Andre Haugseth Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Problems with FreeBSD 4.1 Stable In-Reply-To: <35D6DEC78D64D311A92E00A0C9ECECF229706A@pcsnt1.pcsupport.no> 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 Nyet, the CLDG5434 is not your problem--I used my speedstar with 4.X quite well until I got a PCI card... On Fri, 20 Oct 2000, Petter Andre Haugseth wrote: > Hi. > > I hope someone please can help me with some trouble I had one day trying to > install FreeBSD 4.1 STABLE on my 486 DX4 100 MHz. > > The machine has 32 MB RAM and a !.6 GB HDD. After I have conf. the kernel > and got rid of all the conflicts, I get this error right after quitting and > saving the configuration: > > md0: Preloaded image 2949120 bytes at 0xc036cd98 > md1: Malloc disk > npx0: on motherboard > npx0: INT 16 interface > pcib0: on motherboard > pci0: on pcib0 > pci0: at 15.0 irq 11 > isab0: at device 18.0 on pci0 > isa0: on isab0 > > After this point my PC locks up. > I have tried to get another CD-drive, I have replaced my ISA SB16 Soundcard, > I have even removed an old parallell adapter PCI. I have a Cirrus Logic > graphicsadapter... could this be the source to my problems...? > > I hope i get an answer on my question. > > Happy FreeBSD'ing .-.-.-.. > > > > Best Regards > Petter Andre Haugseth > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- You have paid nothing for the preceding, therefore it's worth every penny you've paid for it: if you did pay for it, might I remind you of the immortal words of Phineas Taylor Barnum regarding fools and money? Who is John Galt? galt@inconnu.isu.edu, that's who! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:54:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail20.bigmailbox.com (mail20.bigmailbox.com [209.132.220.51]) by hub.freebsd.org (Postfix) with ESMTP id 3AFBB37B4C5 for ; Fri, 20 Oct 2000 14:54:51 -0700 (PDT) Received: œby mail20.bigmailbox.com (8.8.7/8.8.7) id OAA13884; Fri, 20 Oct 2000 14:59:09 -0700 Date: Fri, 20 Oct 2000 14:59:09 -0700 Message-Id: <200010202159.OAA13884@mail20.bigmailbox.com> Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary X-Mailer: MIME-tools 4.104 (Entity 4.116) Mime-Version: 1.0 X-Originating-Ip: [63.28.161.200] From: "gummibear@nettaxi.com" To: questions@freebsd.org Subject: Sendmail, email, and dates - why are the dates all weird? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all! This is sort of pertaining to Sendmail and email in general. Why is it when I get email, the dates are off in the email? What sets the date on the email? Is it the forwarding Sendmail servers? The reason why I ask this question is because my boss is upset that when she receives mail the date and time on the email can be a day ahead, or something like that, and I'm trying to give her a technical answer as to why. Is there a way to trace the hops that email travels? Like from Sendmail to Sendmail or something? Joey ------------------------------------------------------------ Nettaxi MP3 Player, Burner, Ripper - NEW Version 2.0!!! DOWNLOAD IT FREE! (5MBs) MP3 DOWNLOAD: http://www.nettaxi.com/mp3/version_2/ntxy_MP3_setup.exe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 14:57:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id C904437B4C5 for ; Fri, 20 Oct 2000 14:57:47 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id QAA11072; Fri, 20 Oct 2000 16:59:07 -0500 Message-Id: <200010202159.QAA11072@smtp.intop.net> From: "Charlie Schloemer" To: , "Jason Halbert" Date: Fri, 20 Oct 2000 17:05:26 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Installation Problem In-reply-to: <000c01c03a43$9c34cde0$39e61ed1@xps> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 19 Oct 00, at 20:12, Jason Halbert wrote: > FreeBSD: > I'm having a slight problem with the installation. > I have a PIII 733 with 128m of PC133 ram, 10g Western Digital > Ultra ATA DMA 66 and 4g Seagate Ultra ATA DMA 33 hard drives, > Voodoo3 3000 AGP graphics card and I've been switching back and > forth between a Netgear 310 and 3Com PCI NICs. > The problem... No matter what release (4.0-Release, 4.1-Release, > 4.1.1-Release, 5.0-Current) or what media (CD-ROM or FTP) I use, > the install just dies. When the files are being copied...it just > dies. There's really no other way to describe it. I watch the > debug screen and the system just decides to stop copying. There > is no error given. It just stops. The place it was stopping was > copying the scontrib dist files. I tried not installing those and > it just stops somewhere else. > I was running it just fine on a K6-2 500 with a Maxtor 30g drive. > I'm really confused. If you can help I would really appreciate > it. > Thanks > Jason Halbert Eek... generally, when the computer stops cold like that, it's due to flakey RAM memory; most anything else should at least give you an error message or panic or something. Is it possible for you to attempt the install with a different stick of RAM? Does it lock up in the EXACT same place every time? Can you even switch between virtual consoles using Alt-F2 and Alt-F4? OTOH, I had fits trying to install on a new system of mine, and it turned out I had the RAM clocked wrong, although it was otherwise fine. I had to adjust the 'CAS Latency' setting in my BIOS because the motherboard was autodetecting it incorrectly. Since making the adjustment, there have been no problems. Things that make flakey RAM frustrating are that (a) it always seems to work okay in Windows, as Windows has more of a tolerance for crappy hardware, and (b) it's intermittent, so it's really hard to nail down. Your hardware seems pretty standard otherwise. Good luck, -Charlie PS: Also, please configure your mailer to wrap at 70 lines; a lot of folks on the list don't see those messages properly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 15: 3: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from bogon.kjsl.com (bogon.kjsl.com [206.55.236.195]) by hub.freebsd.org (Postfix) with ESMTP id 3693937B479 for ; Fri, 20 Oct 2000 15:03:06 -0700 (PDT) Received: from karenium.kjsl.com (karenium.kjsl.com [206.55.236.202]) by bogon.kjsl.com (8.9.3/8.9.3) with ESMTP id PAA29521; Fri, 20 Oct 2000 15:03:02 -0700 (PDT) Received: (from javier@localhost) by karenium.kjsl.com (8.9.3/8.9.3) id PAA14067; Fri, 20 Oct 2000 15:02:59 -0700 (PDT) From: Javier Henderson MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14832.49427.425816.162981@karenium.kjsl.com> Date: Fri, 20 Oct 2000 15:02:59 -0700 (PDT) To: "gummibear@nettaxi.com" Cc: questions@FreeBSD.ORG Subject: Sendmail, email, and dates - why are the dates all weird? In-Reply-To: <200010202159.OAA13884@mail20.bigmailbox.com> References: <200010202159.OAA13884@mail20.bigmailbox.com> X-Mailer: VM 6.75 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gummibear@nettaxi.com writes: > This is sort of pertaining to Sendmail and email in general. > > Why is it when I get email, the dates are off in the email? What sets the date on the email? Is it the forwarding Sendmail servers? > > The reason why I ask this question is because my boss is upset that when she receives mail the date and time on the email can be a day ahead, or something like that, and I'm trying to give her a technical answer as to why. > > Is there a way to trace the hops that email travels? Like from Sendmail to Sendmail or something? The Date: header is mandatory (see RFC822, page 17). However, some MTA's, like sendmail, will insert one if one is missing. Now, the accuracy of the Date: header is not mandatory, and that is your problem in this case. You can put anything you want there, as long as the format is valid per RFC, no further sanity checks are performed by the MTA. Yes, there is a way to trace the hops, just look at all the RFC822 headers. Like this: From owner-freebsd-questions@FreeBSD.ORG Fri Oct 20 14:56:17 2000 Status: RO X-VM-v5-Data: ([nil nil t nil nil nil nil nil nil] ["872" "Friday" "20" "October" "2000" "14:59:09" "-0700" "gummibear@nettaxi.com" "gummibear@nettaxi.com" "<200010202159.OAA13884@mail20.bigmailbox.com>" "22" "Sendmail, email, and dates - why are the dates all weird?" "^From:" nil nil "10" nil nil (number " " mark "D gummibear@nettaxi Oct 20 22/872 " thread-indent "\"Sendmail, email, and dates - why are the dates all weird?\"\n") nil nil] nil) Received: from bogon.kjsl.com (bogon.kjsl.com [206.55.236.195]) by karenium.kjsl.com (8.9.3/8.9.3) with ESMTP id OAA14048 for ; Fri, 20 Oct 2000 14:56:17 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by bogon.kjsl.com (8.9.3/8.9.3) with ESMTP id OAA29432 for ; Fri, 20 Oct 2000 14:56:17 -0700 (PDT) Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id D602B6E32FF; Fri, 20 Oct 2000 14:54:53 -0700 (PDT) Received: by hub.freebsd.org (Postfix, from userid 538) id AE0AF37B479; Fri, 20 Oct 2000 14:54:52 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id 8BF982E80CA; Fri, 20 Oct 2000 14:54:52 -0700 (PDT) Received: by hub.freebsd.org (bulk_mailer v1.12); Fri, 20 Oct 2000 14:54:52 -0700 Delivered-To: freebsd-questions@freebsd.org Received: from mail20.bigmailbox.com (mail20.bigmailbox.com [209.132.220.51]) by hub.freebsd.org (Postfix) with ESMTP id 3AFBB37B4C5 for ; Fri, 20 Oct 2000 14:54:51 -0700 (PDT) Received: by mail20.bigmailbox.com (8.8.7/8.8.7) id OAA13884; Fri, 20 Oct 2000 14:59:09 -0700 -jav To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 15: 8:21 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.intop.net (smtp.intop.net [206.156.254.80]) by hub.freebsd.org (Postfix) with ESMTP id E8EA437B479 for ; Fri, 20 Oct 2000 15:08:18 -0700 (PDT) Received: from charlie (iwkcpe.intop.net [208.149.79.30]) by smtp.intop.net (8.9.3/8.9.3) with ESMTP id RAA11279; Fri, 20 Oct 2000 17:09:38 -0500 Message-Id: <200010202209.RAA11279@smtp.intop.net> From: "Charlie Schloemer" To: questions@FreeBSD.ORG, doomstar@doomstar.com Date: Fri, 20 Oct 2000 17:15:58 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: IRC/oidentd problem In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 20 Oct 00, at 10:47, doomstar@doomstar.com wrote: Watch your mouth about the man pages, especially if you're as broke as you purport. Have you tried IRC'ing from your firewall? That's usually not the smartest idea in the world, but if there's a problem with ident (tcp: 113), then it may be due to your firewall blocking it. Therefore, install ircii or bitchX and try it from there. Is the IRC server saying you have a problem with identd, or does it just say you're unauthorised? BTW, if you're trying to get onto Efnet lately, and your ISP doesn't *own* an Efnet server, you're going to run into a lot of this; they won't allow users that aren't special. What networks have you tried? What is your IP scheme? What kind of network connection do you have? What is included in your firewall rules? How are you invoking oidentd, and with what arguments? If the man pages suck, what shall we say of your description of your problem? -Charlie > Hi, > I have a FreeBSD4.1 box set up as a firewall/natd/dhcpd box. I have a > windows box behind this firewall. I can get online and use the internet from > the windows box but I cannot connect to IRC servers. They all say I'm not > authorized. I installed the oidentd package and thought I set it up according > to the man page, restarted inetd with kill -HUP [pid] but its still not working. I > even created oidentd.users in /etc which I thought I did right. The man pages > suck. They are written for people who already know how to do this stuff. > I dont know what to do and I have searched for info and help with no luck. > The FreeBSD book I have doesn't even mention identd.. but its not the latest > book. Am I screwed? I would think its possible to do what i'm trying to do > but I am really confused. > Thanks for any help.. I would offer to pay for help but I dont have any money. > Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 15:11: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 2F84437B4D7 for ; Fri, 20 Oct 2000 15:11:00 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id CF12E6A906 for ; Sat, 21 Oct 2000 00:10:55 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id A443EC0A0054; Sat, 21 Oct 2000 00:16:35 +0200 Message-Id: <5.0.0.25.0.20001021001120.02c44eb0@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sat, 21 Oct 2000 00:11:24 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: can't build custom kernel 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 FreeBSD 4.1.1 from an .iso image Making a custom kernal make depend gives: In file included from ../../i386/isa/isa_compat.c:46: ../../i386/isa/isa_compat.h:42: bw.h: No such file or directory mkdep: compile failed *** Error code 1 I cannot find / -name "bw.h" -print ... this file on our disk. Nor can I find "bw.h" in my -questions archive as a pb for anybody else. What's up? tia, Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 & 8.2.3 T6B for NT4 & W2K http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 15:37:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 2C5CB37B4D7; Fri, 20 Oct 2000 15:37:45 -0700 (PDT) Received: from dppl.com (unverified [216.182.27.51]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Fri, 20 Oct 2000 18:37:57 -0400 Message-ID: <39F0C896.30C53A1D@dppl.com> Date: Fri, 20 Oct 2000 18:35:02 -0400 From: Marko Ruban X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org Subject: Re: Routing issue with cable modem Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Joel said HTML was badly formatted, so I'm resubmitting in plain text. Thanks :) New issue seems to be at hand... I set the alias for the interface to be the gateway IP (10.17.56.12), and then I was able to add that as my default gateway. Not sure why aliasing wouldn't work with 10.17.56.11 or some other IP in that subnet. I tried to ping the DNS server after that, and watched hundreds of corrupt packets get sent out with no replies. So my new question is, which part of the system actually builds the packets ? Any way to debug or log that process ? Here's an example taken from ethereal output.... (view with proportional font) --------------------------------------------------------- Frame 6 (102 on wire, 102 captured) Arrival Time: Oct 20, 2000 16:42:38.2715 Time delta from previous packet: 0.000071 seconds Frame Number: 6 Packet Length: 102 bytes Capture Length: 102 bytes Ethernet II Destination: 02:00:00:00:52:54 (02:00:00:00:52:54) Source: 05:f4:21:3f:52:54 (05:f4:21:3f:52:54) Type: Unknown (0x05f4) Data (88 bytes) 0 0200 0000 5254 05f4 213f 5254 05f4 213f ....RT..!?RT..!? 10 0800 4500 0054 13fa 0000 fa01 97dc 0a11 ..E..T.......... 20 380c cfac 0309 0800 c1f0 6101 0000 3eae 8.........a...>. 30 f039 b722 0400 0809 0a0b 0c0d 0e0f 1011 .9."............ 40 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 .............. ! 50 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 "#$%&'()*+,-./01 60 3233 3435 3637 234567 --------------------------------------------------------- Why I think this packet is malformed..... First of all, protocol type Unknown (0x05f4) looks definitely bad. Secondly, protocol type looks like part of my NICs MAC address (52:54:05:f4:21:3f according to ifconfig, which translates into hex: 0x5254 05f4 213f). Thirdly, source address decoded by ethereal (and probably by any other packet processor) is wrong (first two bytes are carried over to the other side). Now, keeping all that in mind, lets do a pattern match on the REAL MAC address in hex dump of the packet. HEY, the source address actually starts four bytes later than it should, thus shifting the TRUE protocol type (0x0800 = IP) as well. First six bytes are the destination MAC, then come the EVIL 4 bytes, followed by 6 bytes of source MAC. I don't know what's going on, but looks pretty bad, yet simple on the hex level :) Any ideas ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 15:42:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 9FD0D37B479 for ; Fri, 20 Oct 2000 15:42:07 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id C53961F28; Fri, 20 Oct 2000 15:15:37 -0700 (PDT) Subject: Re: IRC/oidentd problem In-Reply-To: "from doomstar@doomstar.com at Oct 20, 2000 10:47:56 am" To: doomstar@doomstar.com Date: Fri, 20 Oct 2000 15:15:37 -0700 (PDT) Cc: questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001020221537.C53961F28@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, Please wrap your lines at ~72 characters. > I have a FreeBSD4.1 box set up as a firewall/natd/dhcpd box. I > have a windows box behind this firewall. I can get online and use > the internet from the windows box but I cannot connect to IRC > servers. They all say I'm not authorized. I installed the oidentd > package and thought I set it up according to the man page, restarted > inetd with kill -HUP [pid] but its still not working. I even created Correct. I don't know anything about oidentd, but unless it has provisions to do this exact thing for you, it won't work. Basically, identd works by taking a local and remote port as input, and giving back the name of the user to which the process which is talking on those ports belongs to. Since your IRC client is running on a host behind NAT, no process--and hence, no user--is associated with the ports. This causes identd to return NO-USER, and the IRC servers to complain. The real solution would probably be to somehow identify ident requests which are for other hosts, and have nat forward those requests approriatly. Until somebody implements that, there is a workaround. Some time ago, when I had the same problem, I wrote a patch for pidentd to, instead of replying with a NO-USER, reply with a default user name. Here's a comment from my web site: This patch adds a feature to pidentd-2.8.5 which sends back a default username if one was not found for that particular query. I'm pretty sure this breaks the RFC (I never bothered to read it), but I can't see any real harm. I wrote this when I wanted computers behind a network address translation gateway to have a valid ident response (mainly to be able to get onto EFnet). If you're okay with this solution (don't mind the possible RFC breakage and don't mind that one username will be returned for any host behind NAT) you're welcome to try it out. You can get the patch at: 'http://users.unixfreak.org/~dima/files/pidentd-2.8.5+defuser.diff'. Another solution would be not to use IRC servers which require ident to be running. This is probably preferred, but is not always possible. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. You have the right to remain silent. Anything you say can and will be misquoted, then used against you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 15:42:18 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id A4D1837B4C5 for ; Fri, 20 Oct 2000 15:42:07 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id 319E71F03; Fri, 20 Oct 2000 15:21:24 -0700 (PDT) Subject: Re: limit bandwidth for users dir In-Reply-To: <4.3.2.7.2.20001020204945.02cd66e0@203.23.200.12> "from Raymond Brighenti at Oct 20, 2000 08:51:36 pm" To: Raymond Brighenti Date: Fri, 20 Oct 2000 15:21:24 -0700 (PDT) Cc: questions@FreeBSD.ORG From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001020222124.319E71F03@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, > > Possibly something in Apache may do it, but I'd say what your going to have > to do is have the directories on 2 different IP addresses and use something > like Dummynet to restrict the bandwidth to the IP(s) mod_bandwidth (for Apache) can limit bandwidth based on virtual hosts, source addresses, directories, and possibly a few other things. It can be found in 'http://www.apache.org/dist/contrib/modules/1.3/apache-contrib-1.0.8.tar.gz'. Hope this helps Dima > > Ray > > At 09:49 AM 20/10/00 +0200, you wrote: > >Hi! > > > >We have problem with some users and > >want to limit bandwith for them, > >for example: > > > >/www/user1/public_html/ <- good user only text files > >/www/user2/public_html/ <- bad user a lot of movies > > > >Is it possible to limith bandwith for only > >user2's directory ? > > > >I haven't found anything that suit our needs =/ > > > >Best regards > > > >Johan > > > >-- > >Spray Network Services > >Stockholm | Sweden > >Cell: +46(0)708 402 836 > > > > > >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 > -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. If only God would give me some clear sign! Like making a large deposit in my name at a Swiss bank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16: 1:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 497C137B479 for ; Fri, 20 Oct 2000 16:01:46 -0700 (PDT) Received: from ispchannel.com ([206.31.81.146]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001020230418.NUEY382.smtp2a@ispchannel.com> for ; Fri, 20 Oct 2000 16:04:18 -0700 Message-ID: <39F0CED9.87305CE9@ispchannel.com> Date: Fri, 20 Oct 2000 18:01:45 -0500 From: Mark Hummel Organization: Innovative Solutions X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FSD Subject: Netscape 4.7 challenge Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why does NS 4.7 display all graphics and images in 8 bit color even though I have KDE set to 16 bit? What can I do to increase NS's color depth? Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16: 3:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 3F20437B479 for ; Fri, 20 Oct 2000 16:03:56 -0700 (PDT) Received: from ispchannel.com ([206.31.81.146]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001020230628.NUPO382.smtp2a@ispchannel.com> for ; Fri, 20 Oct 2000 16:06:28 -0700 Message-ID: <39F0CF5B.F8D4EF23@ispchannel.com> Date: Fri, 20 Oct 2000 18:03:55 -0500 From: Mark Hummel Organization: Innovative Solutions X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FSD Subject: Ink Jet Printing in FBSD??? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a Lexmark 5700 inkjet printer. What port or ports do I need to install in order to use my printer? I've read the FAQ and even tried what the handbook describes, but I found out it only applies to line printers like dot matrixes and such. Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16:10:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pyxis.wanadoo.be (pyxis.wanadoo.be [195.74.212.24]) by hub.freebsd.org (Postfix) with ESMTP id F356B37B4C5 for ; Fri, 20 Oct 2000 16:10:10 -0700 (PDT) Received: from [192.168.1.1] (p057.adsl.powered-by.euronet.be [213.177.129.57]) by pyxis.wanadoo.be (8.9.3/8.9.3) with ESMTP id BAA00875 for ; Sat, 21 Oct 2000 01:10:01 +0200 (MET DST) Date: Sat, 21 Oct 2000 01:12:25 +0200 From: Frank Sonnemans To: freebsd-questions@FreeBSD.ORG Subject: compaq armada 4100 install problem: elf-loadexec: archsw.readin failed Message-ID: <1428137074.972090745@[192.168.1.1]> X-Mailer: Mulberry/2.0.4 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install freebsd 4.0 on a Compaq armada 4100 (old Pentium I model with 8 MB Ram). During the startup before booting the kernel the following message appears: /kernel text=0x1d581e zf_read: fill error elf-loadexec: archsw.readin failed can't load module '/kernel': input/output error. type ? for a list of commands, ............... Any suggestions to solve this problem??? Thanks, Frank To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16:19:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 829A337B4D7 for ; Fri, 20 Oct 2000 16:19:40 -0700 (PDT) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id SAA20642 for ; Fri, 20 Oct 2000 18:17:37 -0500 (CDT) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id SAA29110; Fri, 20 Oct 2000 18:17:32 -0500 (CDT) Date: Fri, 20 Oct 2000 18:17:32 -0500 (CDT) From: vcardon@siue.edu Message-Id: <200010202317.SAA29110@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: freebsd-questions@freebsd.org Reply-To: vcardon@siue.edu MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: /etc/hosts ignored Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi everyone, I am having a small problem. My it seems that my /etc/hosts file is being ignored. When I try to connect to skippy (192.168.1.1) I get a real IP address. I have skippy listed in my hosts file. host.conf has hosts before bind. Is there something I\'m missing? Thanks, Victor Cardona To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16:31:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from irv1-mail2.intelenet.net (irv1-mail2.intelenet.net [204.182.160.3]) by hub.freebsd.org (Postfix) with ESMTP id 1FECA37B4D7 for ; Fri, 20 Oct 2000 16:31:58 -0700 (PDT) Received: from gidney.intelenet.net (gidney.intelenet.net [207.38.65.47]) by irv1-mail2.intelenet.net (8.9.3/8.9.3) with ESMTP id QAA18184; Fri, 20 Oct 2000 16:31:53 -0700 (PDT) Message-Id: <200010202331.QAA18184@irv1-mail2.intelenet.net> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Matt Harrington" Cc: freebsd-questions@freebsd.org Subject: Re: simple "amd" setup problem In-reply-to: Your message of Fri, 06 Oct 2000 17:48:58 -0700. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Oct 2000 16:32:28 -0700 From: David Harnick-Shapiro Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 6 Oct 2000 17:48, "Matt Harrington" writes: > Yes, that will do what I need. I know it's a bad thing but I can't remember > exactly why one should avoid having mount points in /. Can you elaborate? The only reason I know to avoid automounts at the top level is that, when amd gets into a confused state, it can interfere with your ability to traverse the rest of the system. If, however, all your mounts from bad-nfs-server are under, say, /net/bad-nfs-server, then you just avoid that directory while bad-nfs-server is misbehaving. David H-S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16:42: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id 749A137B479 for ; Fri, 20 Oct 2000 16:41:59 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id C7DDE1F21; Fri, 20 Oct 2000 16:41:58 -0700 (PDT) Subject: Re: /etc/hosts ignored In-Reply-To: <200010202317.SAA29110@cougar.isg.siue.edu> "from vcardon@siue.edu at Oct 20, 2000 06:17:32 pm" To: vcardon@siue.edu Date: Fri, 20 Oct 2000 16:41:58 -0700 (PDT) Cc: freebsd-questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001020234158.C7DDE1F21@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi everyone, Hi. Please wrap your lines at ~72 characters. > I am having a small problem. My it seems that my /etc/hosts file is > being ignored. When I try to connect to skippy (192.168.1.1) I get a > real IP address. I have skippy listed in my hosts file. host.conf > has hosts before bind. Is there something I\'m missing? How are you checking? `host`, `nslookup`, and `dig` (maybe a few others) contact the DNS servers directly (listed in /etc/resolv.conf). They don't use /etc/hosts. If your program uses the gethostbyname() library call, /etc/hosts should be checked. Try `ping skippy` and see if that works. Hope this helps -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. You can never be too thin, too rich, or have too much bandwidth. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 16:52:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id A6C3637B4C5 for ; Fri, 20 Oct 2000 16:52:35 -0700 (PDT) Received: (qmail 66457 invoked by uid 100); 20 Oct 2000 23:52:34 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14832.56002.369564.835637@guru.mired.org> Date: Fri, 20 Oct 2000 18:52:34 -0500 (CDT) To: "Otter" Cc: Subject: RE: FW: booting problems with SMP enabled In-Reply-To: References: <14831.46693.860465.246500@guru.mired.org> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Otter writes: > }Otter writes: > }> I've got a new install of 4.1-RELEASE here. > }> Hardware consists of a dual processor board (unknown brand), > }> 2 Intel P2-300's, a single 128MB DIMM, onboard scsi > }> (disabled), on a 13GB IDE drive. The machine boots and runs > }> fine with a single processor. For testing purposes, I've > }> swapped them around to make sure that both CPU's are working > }> as they should. No problems there. When I boot up with the > }> SMP kernel (only the SMP and APIC_IO lines uncommented) it > }> hangs in the boot process at where it says "APIC_IO: testing > }> 8254 interrupt delivery". At this point, the machine locks > }> and requires me cycling power via the switch on the power > }> supply. I'm at a loss. I've got a bank of dipdswitches on > }> the board and have changed a few at random, but no luck so > }> far. Without knowing the brand of the board, I'm not sure > }> how I can take this any further. Any tips/ideas/suggestions? TIA. > }Check the board manufacturers web site for a manual! > I'd love to, but as you can see above, I don't know who the > manufacturer is/was. I've found no markings on the board that identify > it as any particular brand. Mea culpa. Without that, you may well be hosed. After all - how do you know this is an Intel MP spec motherboard? If it isn't, it won't work in that mode. Anyway, another route to try is checking the site for the company that wrote the BIOS. At least one of those had instructions on how to identify the motherboard manufacturer based on the BIOS. > }Also, check the stepping number of the P2's (on the chip, somewhere, > }one hopes, or possibly in dmesg when the system boots) and then check > }the intel web to make sure the two chips will work *together*. While > }each may work fine, if you've don't have compatible stepping numbers, > }they won't work together. > The stepping numbers DO match. I've searched Intel's site and found > some CPUID info charts, but nothing that states they work together... > then again, I didn't find anything saying the contrary. I seem to > remember that was the big hype of P2 over Celerons-- they had more > cache and would support SMP. I could only assume that they all do... > and neer had problems getting any p2 or p3's to work in SMP as long as > the stepping numbers matched. I've set this up on several machines in > the past, so I know (or at least I used to!) what to look for and the > steps to take to make it happen. I'm just at a loss on this one. Well, if the numbers are the same, then they should work together. I've only been through this for P2 Xeons. For those, incompatable stepping numbers are a problem, and there's a chart on the web site showing which stepping numbers work together. I assumed the standard P2 would be the same. As for the P2 vs. Celeron, I don't pay a lot of attention. I think the difference is packaging, and the size of the on-chip cache. The Celerons started with *no* cache, then showed up with some, and these days you can get them with full speed cache, though not as much as a P2. As for SMP, Intel claims that Celerons don't do it, but I understand that third parties sell socket adapters that let them work, or even Celeron SMP motherboards. Date: Fri, 20 Oct 2000 17:02:30 -0700 (PDT) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How to get the best results from FreeBSD questions. =================================================== Last update 3 September 1999 This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one of the following things was wrong with your message: - You left out a subject line, or the subject line was not appropriate. - You formatted it in such a way that it was difficult to read. - You asked more than one unrelated question in one message. - You sent out a message with an incorrect date, time or time zone. - You sent out the same message more than once. - You sent an 'unsubscribe' message to FreeBSD-questions. If you have done any of these things, there is a good chance that you will get more than one copy of this message from different people. Read on, and your next message will be more successful. This document is also available on the web at http://www.lemis.com/questions.html. ===================================================================== Contents: I: Introduction II: How to unsubscribe from FreeBSD-questions III: Should I ask -questions or -hackers? IV: How to submit a question to FreeBSD-questions V: How to answer a question to FreeBSD-questions I: Introduction =============== This is a regular posting aimed to help both those seeking advice from FreeBSD-questions (the "newcomers"), and also those who answer the questions (the "hackers"). Note that the term "hacker" has nothing to do with breaking into other people's computers. The correct term for the latter activity is "cracker", but the popular press hasn't found out yet. The FreeBSD hackers disapprove strongly of cracking security, and have nothing to do with it. In the past, there has been some friction which stems from the different viewpoints of the two groups. The newcomers accused the hackers of being arrogant, stuck-up, and unhelpful, while the hackers accused the newcomers of being stupid, unable to read plain English, and expecting everything to be handed to them on a silver platter. Of course, there's an element of truth in both these claims, but for the most part these viewpoints come from a sense of frustration. In this document, I'd like to do something to relieve this frustration and help everybody get better results from FreeBSD-questions. In the following section, I recommend how to submit a question; after that, we'll look at how to answer one. II: How to unsubscribe from FreeBSD-questions ============================================== When you subscribed to FreeBSD-questions, you got a welcome message from Majordomo@FreeBSD.ORG. In this message, amongst other things, it told you how to unsubscribe. Here's a typical message: Welcome to the freebsd-questions mailing list! If you ever want to remove yourself from this mailing list, you can send mail to "Majordomo@FreeBSD.ORG" with the following command in the body of your email message: unsubscribe freebsd-questions Greg Lehey Here's the general information for the list you've subscribed to, in case you don't already have it: FREEBSD-QUESTIONS User questions This is the mailing list for questions about FreeBSD. You should not send "how to" questions to the technical lists unless you consider the question to be pretty technical. Normally, unsubscribing is even simpler than the message suggests: you don't need to specify your mail ID unless it is different from the one which you specified when you subscribed. If Majordomo replies and tells you (incorrectly) that you're not on the list, this may mean one of two things: 1. You have changed your mail ID since you subscribed. That's where keeping the original message from majordomo comes in handy. For example, the sample message above shows my mail ID as grog@lemis.de. Since then, I have changed it to grog@lemis.com. If I were to try to remove grog@lemis.com from the list, it would fail: I would have to specify the name with which I joined. 2. You're subscribed to a mailing list which is subscribed to FreeBSD-questions. If that's the case, you'll have to figure out which one it is and get your name taken off that one. If you're not sure which one it might be, check the headers of the messages you receive from freebsd-questions: maybe there's a clue there. If you've done all this, and you still can't figure out what's going on, send a message to Postmaster@FreeBSD.org, and he will sort things out for you. Don't send a message to FreeBSD-questions: they can't help you. III: Should I ask -questions, -newbies or -hackers? =================================================== Two mailing lists handle general questions about FreeBSD, FreeBSD-questions and FreeBSD-hackers. In addition, the FreeBSD-newbies list caters specifically for people who are new to FreeBSD and may be having trouble getting used to the environment. In some cases, it's not really clear which group you should ask. The following criteria should help for 99% of all questions, however: If the question is of a general nature, first check whether this isn't a Frequently Asked Question (FAQ). There's a list of these questions at http://www.freebsd.org/FAQ/FAQ.html, and also on your own system (once you've installed it) at /usr/share/doc/FAQ/FAQ.html. Check there, and if you don't find an answer, ask FreeBSD-questions. Examples might be questions about installing FreeBSD or the use of a particular UNIX utility. If you think the question relates to a bug, but you're not sure, or you don't know how to look for it, send the message to FreeBSD-questions. If the question relates to a bug, and you're almost sure that it's a bug (for example, you can pinpoint the place in the code where it happens, and you maybe have a fix), then send the message to FreeBSD-hackers. You should also enter a problem report with the send-pr utility. If the question relates to enhancements to FreeBSD, and you can make suggestions about how to implement them, then send the message to FreeBSD-hackers. If the question is of particularly technical nature, such as implementation details or suggestions for improvements, then send the message to FreeBSD-hackers. If you're new to FreeBSD, and the message is about your own relationship to FreeBSD, send the message to FreeBSD-newbies. There are also a number of other specialized mailing lists, for example FreeBSD-isp, which caters to the interests of ISPs (Internet Service Providers) who run FreeBSD. If you happen to be an ISP, this doesn't mean you should automatically send your questions to FreeBSD-isp. The criteria above still apply, and it's in your interest to stick to them, since you're more likely to get good results that way. IV: How to submit a question ============================= When submitting a question to FreeBSD-questions, consider the following points: 1. Remember that nobody gets paid for answering a FreeBSD question. They do it of their own free will. You can influence this free will positively by submitting a well-formulated question supplying as much relevant information as possible. You can influence this free will negatively by submitting an incomplete, illegible, or rude question. It's perfectly possible to send a message to FreeBSD-questions and not get an answer even if you follow these rules. It's much more possible to not get an answer if you don't. In the rest of this document, we'll look at how to get the most out of your question to FreeBSD-questions. 2. Not everybody who answers FreeBSD questions reads every message: they look at the subject line and decide whether it interests them. Clearly, it's in your interest to specify a subject. ``FreeBSD problem'' or ``Help'' aren't enough. If you provide no subject at all, many people won't bother reading it. If your subject isn't specific enough, the people who can answer it may not read it. 3. Format your message so that it is legible, and PLEASE DON'T SHOUT!!!!!. We appreciate that a lot of people don't speak English as their first language, and we try to make allowances for that, but it's really painful to try to read a message written full of typos or without any line breaks. A lot of badly formatted messages come from bad mailers or badly configured mailers. The following mailers are known to send out badly formatted messages without you finding out about them: Eudora exmh Microsoft Exchange Microsoft Internet Mail Microsoft Outlook Netscape As you can see, the mailers in the Microsoft world are frequent offenders. If at all possible, use a UNIX mailer. If you must use a mailer under Microsoft environments, make sure it is set up correctly. Try not to use MIME: a lot of people use mailers which don't get on very well with MIME. For further information on this subject, check out http://www.lemis.com/email.html. 4. Make sure your time and time zone are set correctly. This may seem a little silly, since your message still gets there, but many of the people you are trying to reach get several hundred messages a day. They frequently sort the incoming messages by subject and by date, and if your message doesn't come before the first answer, they may assume they missed it and not bother to look. 5. Don't include unrelated questions in the same message. Firstly, a long message tends to scare people off, and secondly, it's more difficult to get all the people who can answer all the questions to read the message. 6. Specify as much information as possible. This is a difficult area, and we need to expand on what information you need to submit, but here's a start: If you get error messages, don't say ``I get error messages'', say (for example) ``I get the error message 'No route to host'''. If your system panics, don't say ``My system panicked'', say (for example) ``my system panicked with the message 'free vnode isn't'''. If you have difficulty installing FreeBSD, please tell us what hardware you have. In particular, it's important to know the IRQs and I/O addresses of the boards installed in your machine. If you have difficulty getting PPP to run, describe the configuration. Which version of PPP do you use? What kind of authentication do you have? Do you have a static or dynamic IP address? What kind of messages do you get in the log file? 7. If you don't get an answer immediately, or if you don't even see your own message appear on the list immediately, don't resend the message. Wait at least 24 hours. The FreeBSD mailer offloads messages to a number of subordinate mailers around the world, and sometimes it can take several hours for the mail to get through. And once it gets through, the one person who might know the answer will probably just have gone to bed in his part of the world. 8. If you do all this, and you still don't get an answer, there could be other reasons. For example, the problem is so complicated that nobody knows the answer, or the person who does know the answer was offline. If you don't get an answer after, say, a week, it might help to re-send the message. If you don't get an answer to your second message, though, you're probably not going to get one from this forum. Resending the same message again and again will only make you unpopular. To summarize, let's assume you know the answer to the following question (yes, it's the same one in each case :-). You choose which of these two questions you would be more prepared to answer: Message 1: Subject: (none) I just can't get hits damn silly FereBSD system to workd, and Im really good at this tsuff, but I have never seen anythign sho difficult to install, it jst wont work whatever I try so why don't y9ou guys tell me what I doing wrong. ---------------------------------------------------------------------- Message 2: Subject: Problems installing FreeBSD I've just got the FreeBSD 2.1.5 CD-ROM from Walnut Creek, and I'm having a lot of difficulty installing it. I have a 66 MHz 486 with 16 MB of memory and an Adaptec 1540A SCSI board, a 1.2GB Quantum Fireball disk and a Toshiba 3501XA CD-ROM drive. The installation works just fine, but when I try to reboot the system, I get the message "Missing Operating System". ---------------------------------------------------------------------- V: How to follow up to a question ================================= Often you will want to send in additional information to a question you have already sent. The best way to do this is to reply to your original message. This has three advantages: 1. You include the original message text, so people will know what you're talking about. Don't forget to trim unnecessary text out, though. 2. The text in the subject line stays the same (you did remember to put one in, didn't you?). Many mailers will sort messages by subject. This helps group messages together. 3. The message reference numbers in the header will refer to the previous message. Some mailers, such as mutt, can thread messages, showing the exact relationships between the messages. VI: How to answer a question ============================ Before you answer a question to FreeBSD-questions, consider: 1. A lot of the points on submitting questions also apply to answering questions. Read them. 2. Has somebody already answered the question? The easiest way to check this is to sort your incoming mail by subject: then (hopefully) you'll see the question followed by any answers, all together. If somebody has already answered it, it doesn't automatically mean that you shouldn't send another answer. But it makes sense to read all the other answers first. 3. Do you have something to contribute beyond what has already been said? In general, "Yeah, me too" answers don't help much, although there are exceptions, like when somebody is describing a problem he's having, and he doesn't know whether it's his fault or whether there's something wrong with the hardware or software. If you do send a "me too" answer, you should also include any further relevant information. 4. Are you sure you understand the question? Very frequently, the person who asks the question is confused or doesn't express himself very well. Even with the best understanding of the system, it's easy to send a reply which doesn't answer the question. This doesn't help: you'll leave the person who submitted the question more frustrated or confused than ever. If nobody else answers, and you're not too sure either, you can always ask for more information. 5. Are you sure your answer is correct? If not, wait a day or so. If nobody else comes up with a better answer, you can still reply and say, for example, "I don't know if this is correct, but since nobody else has replied, why don't you try replacing your ATAPI CD-ROM with a frog?". 6. Unless there's a good reason to do otherwise, reply to the sender and to FreeBSD-questions. Many people on the FreeBSD-questions are "lurkers": they learn by reading messages sent and replied to by others. If you take a message which is of general interest off the list, you're depriving these people of their information. Be careful with group replies; lots of people send messages with hundreds of CCs. If this is the case, be sure to trim the Cc: lines appropriately. 7. Include relevant text from the original message. Trim it to the minimum, but don't overdo it. It should still be possible for somebody who didn't read the original message to understand what you're talking about. 8. Use some technique to identify which text came from the original message, and which text you add. I personally find that prepending ``> '' to the original message works best. Leaving white space after the ``> '' and leave empty lines between your text and the original text both make the result more readable. 9. Put your response in the correct place (after the text to which it replies). It's very difficult to read a thread of responses where each reply comes before the text to which it replies. 10. Most mailers change the subject line on a reply by prepending a text such as ``Re: ''. If your mailer doesn't do it automatically, you should do it manually. 11. If the submitter didn't abide by format conventions (lines too long, inappropriate subject line), please fix it. In the case of an incorrect subject line (such as ``HELP!!??''), change the subject line to (say) ``Re: Difficulties with sync PPP (was: HELP!!??)''. That way other people trying to follow the thread will have less difficulty following it. In such cases, it's appropriate to say what you did and why you did it, but try not to be rude. If you find you can't answer without being rude, don't answer. If you just want to reply to a message because of its bad format, just reply to the submitter, not to the list. You can just send him this message in reply, if you like. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 17: 3: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id B5DB437B4CF; Fri, 20 Oct 2000 17:02:30 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", third edition: errata and addenda Message-Id: <20001021000230.B5DB437B4CF@hub.freebsd.org> Date: Fri, 20 Oct 2000 17:02:30 -0700 (PDT) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Errata and addenda for the Complete FreeBSD, third edition Last revision: 2 August 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, ``The Complete FreeBSD'', published by Walnut Creek, is no exception. In- evitably, a number of bugs and changes have surfaced. The following is a list of modifications which go beyond simple typos. They relate to the third edition, formatted on 17 May 1999. You'll find this information on page iv (the page before the beginning of the Table of Contents). See the end of this document for instructions on how to find the errata for an older version. You can get the current document in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-3.ps. See page 302 of the third edition to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-3.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-3.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-3.html. All these modifications have been applied to the ongoing source text of the book, so if you buy a later edition, they will be in it as well. If you find a Page 1 The Complete FreeBSD bug or a suspected bug in the book, please contact me at Page ii _______ The instructions on page ii (opposite the title page) tell you to look at ftp://ftp.lemis.com/pub/cfbsd/errata-2 for the errata list. That's wrong. Look at this list. Pages 190 and 191 _________________ The description is not very clear about which text appears when booting from floppy for initial install, and which appears when booting normally. The procedure is very similar, but there are some differences. Add the following text after the heading Boot messages: You'll boot your system in at least two different ways: initially you'll boot from floppy or CD-ROM in order to install the system. Later, after the system is installed, you'll boot from hard disk. The procedure is almost identical, so we'll look at both versions in the following examples. Replace the text from the middle of page 191 with: If you're booting from 1.44 MB floppies, you will then see: Please insert MFS root floppy and press enter: When you insert the MFS root floppy and press Enter, you see more twirling batons, then the UserConfig screen appears. UserConfig: Modifying the boot configuration ____________________________________________ After the kernel has been loaded, the following screen will appear if you are installing the system, or if you have requested it with the -c option to the boot loader: Page 206 ________ The bottom two lines on this page should be in bold constant font, indicating that this is input for your /etc/rc.config file Page 2 Errata and addenda for the Complete FreeBSD, third edition nfs_client_enable="YES" # This host is an NFS client (or NO). nfs_server_enable="YES" # This host is an NFS server (or NO). Page 265 ________ The example on the second half of the page refers to the old SCSI driver. The scsi program is no longer available in FreeBSD 3.x. Instead, use the camcontrol program. Replace the text with:. Modern disks make provisions for recovering from such errors by allocating an alternate sector for the data. IDE drives do this automatically, but with SCSI drives you have the option of enabling or disabling reallocation. Usually it is turned on when you buy them, but occasionally it is not. When installing a new disk, you should check that the parameters ARRE (Auto Read Reallocation Enable) and AWRE (Auto Write Reallocation Enable) are turned on. For example, to check and set the values for disk da1, you would enter: # camcontrol modepage da1 -m 1 -e -P 3 # scsi -f /dev/rda1c -m 1 -e -P 3 This command will start up your favourite editor (either the one specified in the EDITOR environment variable, or vi by default) with the following data: AWRE (Auto Write Reallocation Enbld): 0 ARRE (Auto Read Reallocation Enbld): 1 TB (Transfer Block): 0 RC (Read Continuous): 0 EER (Enable Early Recovery): 0 PER (Post Error): 0 DTE (Disable Transfer on Error): 0 DCR (Disable Correction): 0 Read Retry Count: 16 Correction Span: 41 Head Offset Count: 0 Data Strobe Offset Count: 0 Write Retry Count: 16 Recovery Time Limit: 0 The values for AWRE and ARRE should both be 1. If they aren't, as in this case, where AWRE is 0, change the data with the editor, save it, and exit. The camcontrol program will write the data back to the disk and enable the option. Page 3 The Complete FreeBSD Page 331 ________ The description of the config refers to the SCSI drive sd0. This is the old name; in FreeBSD version 3, SCSI drives are called da, so this reference should be da0. Thanks to Francisco Reyes for pointing out this problem. Page 362 ________ Replace the text at the top of the page with: Next, change to the build directory and build the kernel: # cd ../../compile/FREEBIE # make depend # make The make depend is needed even if the directory has just been created: apart from creating dependency information, it also creates some files needed for the build. Thanks to Mark Ovens for drawing this to my attention, and to Francisco Reyes and Bill Fumerola for pointing out that it still wasn't fixed in the third edition. Page 409 ________ The information on setting the default routers specified the wrong end of the PPP links in some places. It should always be the ``far'' end of the link. Replace the second example on page 409, and the text following it, with this text: defaultrouter="139.130.136.129" # Set to default gateway (or NO). static_routes="" # Set to static route list (or leave empty). gateway_enable="YES" # Set to YES if this host will be a gateway. This is the normal way to set the default route on a point-to-point interface. In fact, for PPP you don't need to specify the default address: the PPP packages will set it for you when the link comes up. This makes it possible to Page 4 Errata and addenda for the Complete FreeBSD, third edition set default routes when you're forced to use dynamic IP addresses, where you don't know the address at this point. We'll see how PPP does this on page 446. In the first example on page 410, the sixth example on page 412 and the second example on page 413, replace the defaultrouter definition with: defaultrouter="139.130.237.65" # Set to default gateway (or NO). Thanks to Andreas Longwitz for pointing out this error. Getting errata for older editions of the book _____________________________________________ There have been a total of five different versions of ``The Complete FreeBSD''. The most accurate way to distinguish them is by the format date, which you'll find at the bottom of page iv (the page before the beginning of the Table of Contents) in all versions of the book. 1. The first was titled ``Installing and running FreeBSD'', and was formatted on 24 February 1996. No errata list exists for this book. 2. For the first edition (19 July 1996), get ftp://ftp.lemis.com/pub/cfbsd/er- rata-1. This same file is also available via the web link http://www.lemis.com/errata-1. I am no longer updating this errata list. 3. The list for the second edition (16 December 1997) is available in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ps. See page 222 of the second edition to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only Page 5 Getting errata for older editions of the book take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-2.html. 4. The revised second edition was formatted on 11 February 1999. As the name suggests, it's not a complete new edition: in fact, only three chapters are different: o The chapter ``Setting up X11'' has been brought up to date. o Appendix D (``Contents of the Ports Collection'') has been replaced by two appendixes, ``Errata and Addenda'' (the errata list up to date at the time) and ``FreeBSD 3.0'', which describes the differences between FreeBSD 2.x and FreeBSD 3.x. There is no separate errata list for this book. Refer to the second edition errata list. 5. The current, third edition, formatted on 17 May 1999. This is the correct list for this edition. Page 6 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 17: 3:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 9F8EC37B4C5; Fri, 20 Oct 2000 17:02:30 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", second edition: errata and addenda Message-Id: <20001021000230.9F8EC37B4C5@hub.freebsd.org> Date: Fri, 20 Oct 2000 17:02:30 -0700 (PDT) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Errata and addenda for the Complete FreeBSD, second edition Last revision: 21 June 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, ``The Complete FreeBSD'', published by Walnut Creek, is no exception. In- evitably, a number of bugs and changes have surfaced. The following is a list of modifications which go beyond simple typos. They relate to the second edition, formatted on 16 December 1997. If you have this book, please check this list. If you have the first edition of 19 July 1996, please check ftp://ftp.lemis.com/pub/cfbsd/errata-1. This same file is also available via the web link http://www.lemis.com/. This list is available in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ps. See page 222 of the book to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-2.html. All these modifications have been applied to the ongoing source text of the book, so if you buy a later edition, they will be in it as well. If you find a Page 1 The Complete FreeBSD bug or a suspected bug in the book, please contact me at General changes _______________ o In a number of places, I suggest the use of the following command to find process information: $ ps aux | grep foo Unfortunately, ps is sensitive to the column width of the terminal emulator upon which it is working. This command usually works fine on a relatively wide xterm, but if you're running on an 80-column terminal, it may truncate exactly the information you're looking for, so you end up with no output. You can fix that with the w option: $ ps waux | grep foo Thanks to Sue Blake for this information Location of the sample files ____________________________ On the 2.2.5 CD-ROM only, the location of the sample files does not match the specifications in the book (/book on the first CD-ROM). The 2.2.5 CD-ROM came out before the book, and it contains the files on the third (repository) CD-ROM as a single gzipped tar file /xperimnt/cfbsd/cfbsd.tar.gz. It contains the following files: drwxr-xr-x jkh/jkh 0 Oct 17 13:01 1997 cfbsd/ drwxr-xr-x jkh/jkh 0 Oct 17 13:01 1997 cfbsd/mutt/ -rw-r--r-- jkh/jkh 352 Oct 15 15:21 1997 cfbsd/mutt/.mail_aliases -rw-r--r-- jkh/jkh 9394 Oct 15 15:22 1997 cfbsd/mutt/.muttrc drwxr-xr-x jkh/jkh 0 Oct 17 14:02 1997 cfbsd/scripts/ -rw-r--r-- jkh/jkh 18281 Oct 16 16:52 1997 cfbsd/scripts/.fvwm2rc -rwxr-xr-x jkh/jkh 1392 Oct 17 12:54 1997 cfbsd/scripts/install-desktop -rw-r--r-- jkh/jkh 296 Oct 17 12:35 1997 cfbsd/scripts/.xinitrc -rwxr-xr-x jkh/jkh 622 Oct 17 13:51 1997 cfbsd/scripts/install-rcfiles -rw-r--r-- jkh/jkh 1133 Oct 17 13:00 1997 cfbsd/scripts/Uutry -rw-r--r-- jkh/jkh 1028 Oct 17 14:02 1997 cfbsd/scripts/README drwxr-xr-x jkh/jkh 0 Oct 18 19:32 1997 cfbsd/docs/ -rw-r--r-- jkh/jkh 199111 Oct 16 14:29 1997 cfbsd/docs/packages.txt Page 2 Errata and addenda for the Complete FreeBSD, second edition -rw-r--r-- jkh/jkh 189333 Oct 16 14:28 1997 cfbsd/docs/packages-by-category.txt -rw-r--r-- jkh/jkh 188108 Oct 16 14:29 1997 cfbsd/docs/packages.ps -rw-r--r-- jkh/jkh 226439 Oct 16 14:27 1997 cfbsd/docs/packages-by-category.ps -rw-r--r-- jkh/jkh 788 Oct 16 15:01 1997 cfbsd/README -rw-r--r-- jkh/jkh 248 Oct 17 11:52 1997 cfbsd/errata To extract one of these files, say cfbsd/docs/packages.txt, and assuming you have the CD-ROM mounted as /cdrom, enter: # cd /usr/share/doc # tar xvzf /cdrom/xperimnt/cfbsd/cfbsd.tar.gz cfbsd/docs/packages.txt See page 209 for more information on using tar. These files are an early version of what is described in the book. I'll put up some updated versions on ftp://ftp.lemis.com/ in the near future. Thanks to Frank McCormick for drawing this to my attention. Chapter 8: Setting up X11 _________________________ For FreeBSD 2.2.7, this chapter has changed sufficiently to make it impractical to distribute errata. You can download the PostScript version from ftp://www.lemis.com/pub/cfbsd/xsetup.ps, or the ASCII version from ftp://www.lemis.com/pub/cfbsd/xsetup.txt. No HTML version is available. Page xxxiv __________ Before the discussion of the shell prompts in the middle of the page, add: In this book, I recommend the use of the Bourne shell or one of its descendents (sh, bash, pdksh, ksh or zsh). With the exception of sh, they are all in the Ports Collection. I personally use the bash shell. This is a personal preference, and a recommendation, but it's not the standard shell. The standard BSD shell is the C shell (csh), which has a fuller- featured descendent tcsh. In particular, the standard installation sets the root user up with a csh. See page 152 (in this errata) for details of how to change the shell. Page 3 General changes Page 11: Reading the handbook _____________________________ The CD-ROM now includes Netscape. Replace the last paragraph on the page and the example on the following page with: If you're running X, you can use a browser like netscape to read the handbook. If you don't have X running yet, use lynx. Both of these programs are included on the CD-ROM. To install them, enter: # pkg_add /cdrom/packages/All/netscape-communicator-4.5.tgz or # pkg_add /cdrom/packages/All/lynx-2.8.1.1.tgz The numbers after the name (4.5 and 2.8.1.1) may change after this book has been printed. Use ls to list the names if you can't find these particular versions. Note that lynx is not a complete substitute for netscape: since it is text- only, it is not capable of displaying the large majority of web pages correctly. It will suffice for reading most of the handbook, however. Thanks to Stuart Henderson and for drawing this to my attention. Page 12: Printing the handbook ______________________________ The instructions for formatting the handbook are obsolete. Replace the section starting Alternatively, you can print out the handbook with the following text: Alternatively, you can print out the handbook. You need to have the documentation sources (/usr/doc) installed on your system. You can find them on the second CD-ROM in the directory of the same name. To install them, first mount your CD-ROM (see page 175). Then enter: $ cd /cdrom/usr/doc/handbook $ mkdir -p /usr/doc/handbook you may need to be root for this operation $ cp -pr * /usr/doc/handbook You have a choice of formats for the output: o ascii will give you plain 7-bit ASCII output, suitable for reading on a character-mode terminal. Page 4 Errata and addenda for the Complete FreeBSD, second edition o html will give you HTML output, suitable for browsing with a web browser. o latex will give you LATEX format, suitable for further processing with TEX and LATEX. o ps will give you PostScript output, probably the best choice for printing. o roff will give you output in troff source. You can process this output with nroff or troff, but it's currently not very polished. LATEX output is a better choice if you want to process it further. Once you have decided your format, use make to create the document. For example, if you decide on PostScript format, you would enter: $ make FORMATS=ps This creates a file handbook.ps which you can then print to a PostScript printer or with the aid of ghostscript (see page 222). Thanks to Bob Beer for drawing this to my attention. Page 45: Preparing floppies for installation _____________________________________________ Replace the paragraph below the list of file names (in the middle of the page) with: The floppy set should contain the file bin.inf and the ones whose names start with bin. followed by two letters. These other files are all 240640 bytes long, except for the final one which is usually shorter. Use the MS-DOS COPY program to copy as many files as will fit onto each disk (5 or 6) until you've got all the distributions you want packed up in this fashion. Copy each distribution into subdirectory corresponding to the base name--for example, copy the bin distribution to the files A:\BIN\BIN.INF, A:\BIN\BIN.AA and so on. Page 80 and 81 ______________ In a couple of examples, the FreeBSD partition is shown as type 164. It should be 165. Thanks to an unknown contributer for this correction (sorry, I lost your name). Page 5 General changes Page 88: setting up for dumping _______________________________ The example mentions a variable savecore in /etc/rc.conf. This variable is no longer used--it's enough to set the variable dumpdev. Page 92 _______ At the end of the section How to install a package add the text: Alternatively, you can install packages from the /stand/sysinstall Final Configuration Menu. We saw this menu on page in figure 4-14 on page 71. When you start sysinstall from the command line, you get to this menu by selecting Index, and then selecting Configure. Page 93 _______ Before the heading Install ports from the first CD-ROM add: Install ports when installing the system ________________________________________ The file ports/ports.tgz on the first CD-ROM is a tar archive containing all the ports. You can install it with the base system if you select the Custom distribution and include the ports collection. If you didn't install them at the time, use the following method to install them all (about 40 MB). Make sure your CD-ROM is mounted (in this example on /cdrom), and enter: Page 96 _______ Replace the example at the top of the page with: Instead, do: # cd /cd4/ports/distfiles # mkdir -p /usr/ports/distfiles make sure you have a distfiles directory # for i in *; do > ln -s /cd4/ports/distfiles/$i /usr/ports/distfiles/$i > done Page 6 Errata and addenda for the Complete FreeBSD, second edition If you're using csh or tcsh, enter: # cd /cd4/ports/distfiles # mkdir -p /usr/ports/distfiles make sure you have a distfiles directory # foreach i (*) ? ln -s /cd4/ports/distfiles/$i /usr/ports/distfiles/$i ? end Thanks to Christopher Raven and Francois Jacques for drawing this to my attention. Page 104 ________ The examples at the bottom of the page and the top of the next page specify the wrong directory (/usr). It should be /usr/X11R6. Replace the examples with: For a full install, choose /cdrom/dists/XF86331/X331*.tgz. If you are using sh, enter: # cd /usr/X11R6 # for i in /cdrom/dists/XF86331/X331*.tgz; do # tar xzf $i # done If you are using csh, enter: % cd /usr/X11R6 % foreach i (/cdrom/dists/XF86331/X331*.tgz) % tar xzf $i % end For a minimal installation, first choose a server archive corresponding to your VGA board. If table 8-2 on page 103 doesn't give you enough information, check the server man pages, starting on page 1545, which list the VGA chip sets supported by each server. For example, if you have an ET4000 based board you will use the XF86_SVGA server. In this case you would enter: # cd /usr/X11R6 # tar xzf /cdrom/dists/XF86331/X331SVGA.tgz substitute your server name here # for i in bin fnts lib xicf; do # tar xzf /cdrom/dists/XF86331/X331$i.tgz # done Page 7 Install ports when installing the system If you are using csh, enter: % cd /usr/X11R6 % tar xzf /cdrom/dists/XF86331/X331SVGA.tgz substitute your server name here % foreach i (bin fnts lib xicf) % tar xzf /cdrom/dists/XF86331/$i % end Thanks to Manuel Enrique Garcia Cuesta for pointing out this one. Page 128 ________ Replace the complete text below the example with the following: These values are defaults, and many are either incorrect for FreeBSD (for example the device name /dev/com1) or do not apply at all (for example Xqueue). If you are configuring manually, select one Protocol and one Device entry from the following selection. If you must use a two-button mouse, uncomment the keyword Emulate3Buttons--in this mode, pressing both mouse buttons simultane- ously within Emulate3Timeout milliseconds causes the server to report a middle button press. Section "Pointer" Protocol "Microsoft" for Microsoft protocol mice Protocol "MouseMan" for Logitech mice Protocol "PS/2" for a PS/2 mouse Protocol "Busmouse" for a bus mouse Device "/dev/ttyd0" for a mouse on the first serial port Device "/dev/ttyd1" for a mouse on the second serial port Device "/dev/ttyd2" for a mouse on the third serial port Device "/dev/ttyd3" for a mouse on the fourth serial port Device "/dev/psm0" for a PS/2 mouse Device "/dev/mse0" for a bus mouse Emulate3Buttons only for a two-button mouse EndSection You'll notice that the protocol name does not always match the manufacturer's Page 8 Errata and addenda for the Complete FreeBSD, second edition name. In particular, the Logitech protocol only applies to older Logitech mice. The newer ones use either the MouseMan or Microsoft protocols. Nearly all modern serial mice run one of these two protocols, and most run both. If you are using a bus mouse or a PS/2 mouse, make sure that the device driver is included in the kernel. The GENERIC kernel contains drivers for both mice, but the PS/2 driver is disabled. Use UserConfig (see page 50) to enable it. Page 140 ________ Just before the paragraph The super user add the following paragraph: If you do manage to lose the root password, all may not be lost. Reboot the machine to single user mode (see page 157), and enter: # mount -u / mount root file system read/write # mount /usr mount /usr file system (if separate) # passwd root change the password for root Enter new password: Enter password again: # ^D enter ctrl-D to continue with startup If you have a separate /usr file system (the normal case), you need to mount it as well, since the passwd program is in the directory /usr/bin. Note that you should explicitly state the name root: in single user mode, the system doesn't have the concept of user IDs. Page 148 ________ Replace the text at the top of the page with: Modern shells supply command line editing which resembles the editors vi or Emacs. In bash, sh, ksh, and zsh you can make the choice by entering Page 152 ________ After figure 10-8, add the following text: It would be tedious for every user to put settings in their private initialization files, so the shells also read a system-wide default file. For the Bourne shell family, it is /etc/profile, while the C shell family has three Page 9 Install ports when installing the system files: /etc/csh.login to be executed on login, /etc/csh.cshrc to be executed when a new shell is started after you log in, and /etc/csh.logout to be executed when you stop a shell. The start files are executed before the corresponding individual files. In addition, login classes (page 141) offer another method of setting environment variables at a global level. Changing your shell ___________________ The FreeBSD installation gives root a C shell, csh. This is the traditional Berkeley shell, but it has a number of disadvantages: command line editing is very primitive, and the script language is significantly different from that of the Bourne shell, which is the de facto standard for shell scripts: if you stay with the C shell, you may still need to understand the Bourne shell. The latest version of the Bourne shell sh also includes some command line editing. See page 148 for details of how to enable it. You can get better command line editing with tcsh, in the Ports Collection. You can get both better command line editing and Bourne shell syntax with bash, also in the Ports Collection. If you have root access, you can use vipw to change your shell, but there's a more general way: use chsh (Change Shell). Simply run the program. It starts your favourite editor (as defined by the EDITOR environment variable). Here's an example before: #Changing user database information for velte. Shell: /bin/csh Full Name: Jack Velte Location: Office Phone: Home Phone: You can change anything after the colons. For example, you might change this to: #Changing user database information for velte. Shell: /usr/local/bin/bash Full Name: Jack Velte Location: On the road Office Phone: +1-408-555-1999 Home Phone: Page 10 Errata and addenda for the Complete FreeBSD, second edition chsh checks and updates the password files when you save the modifications and exit the editor. The next time you log in, you get the new shell. chsh tries to ensure you don't make any mistakes--for example, it won't let you enter the name of a shell which isn't mentioned in the file /etc/shells--but it's a very good idea to check the shell before logging out. You can try this with su, which you normally use to become super user: bumble# su velte Password: su-2.00$ note the new prompt There are a couple of problems in using tcsh or bash as a root shell: o The shell for root must be on the root file system, otherwise it will not work in single user mode. Unfortunately, most ports of shells put the shell in the directory /usr/local/bin, which is almost never on the root file system. o Most shells are dynamically linked: they rely on library routines in files such as /usr/lib/libc.a. These files are not available in single user mode, so the shells won't work. You can solve this problem by creating statically linked versions of the shell, but this requires programming experience beyond the scope of this book. If you can get hold of a statically linked version, perform the following steps to install it: o Copy the shell to /bin, for example: # cp /usr/local/bin/bash /bin o Add the name of the shell to /etc/shells, in this example the line in bold print: # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/sh /bin/csh /bin/bash You can then change the shell for root as described above. Page 11 Install ports when installing the system Thanks to Lars Koller for drawing this to my attention. Page 160 ________ Replace the text at the fourth bullet with the augmented text: The second-level boot locates the kernel, by default the file /kernel on the root file system, and loads it into memory. It prints the Boot: prompt at this point so that you can influence this choice--see the man page on page 579 for more details of what you can enter at this prompt. Page 169 ________ Replace the last paragraph on the page with: The standard solution for these problems is to relocate the /tmp file system to a different directory, say /usr/tmp, and create a symbolic link from /usr/tmp to /tmp--see Chapter 4, Installing FreeBSD, page 72, for more details. Thanks to Charlie Sorsby for drawing this to my attention. Page 176 ________ Add the following paragraph Unmounting file systems When you mount a file system, the system assumes it is going to stay there, and in the interests of efficiency it delays writing data back to the file system. This is the same effect we discussed on page 158. As a result, if you want to stop using a file system, you need to tell the system about it. You do this with the umount command. Note the spelling--there's no n in the command name. You need to do this even with read-only media such as CD-ROMs: the system assumes it can access the data from a mounted file system, and it gets quite unhappy if it can't. Where possible, it locks removable media so that you can't remove them from the device until you unmount them. Using umount is straightforward: just tell it what to unmount, either the device name or the directory name. For example, to unmount the CD-ROM we Page 12 Errata and addenda for the Complete FreeBSD, second edition mounted in the example above, you could enter one of these commands: # umount /dev/cd1a # umount /cd1 Before unmounting a file system, umount checks that nobody is using it. If somebody is using it, it will refuse to unmount it with a message like umount: /cd1: Device busy. This message often occurs because you have changed your directory to a directory on the file system you want to remove. For example (which also shows the usefulness of having directory names in the prompt): === root@freebie (/dev/ttyp2) /cd1 16 -> umount /cd1 umount: /cd1: Device busy === root@freebie (/dev/ttyp2) /cd1 17 -> cd === root@freebie (/dev/ttyp2) ~ 18 -> umount /cd1 === root@freebie (/dev/ttyp2) ~ 19 -> Thanks to Ken Deboy for pointing out this omission. Page 180 ________ The example in the middle of the page should read: For example, to generate a second set of 32 pseudo-terminals, enter: # cd /dev # ./MAKEDEV pty1 You can generate up to 256 pseudo-terminals. They are named ttyp0 through ttypv, ttyq0 through ttyqv, ttyr0 through ttyrv, ttys0 through ttysv, ttyP0 through ttyPv, ttyQ0 through ttyQv, ttyR0 through ttyRv and ttyS0 through ttySv. To create each set of 32 terminals, use the number of the set: the first set is pty0, and the eighth set is pty7. Note that some processes, such as xterm, only look at ttyp0 through ttysv. Thanks to Karl Wagner for pointing out this error. Page 197, first line ____________________ The text of the first full sentence reads: Page 13 Install ports when installing the system The first name, up the the symbol, is the label. In fact, it should read: The first name, up to the | symbol, is the label. Page 208, middle of page ________________________ The example shows the file name /dev/rst0 when using the Bourne shell, and /dev/nrst0 when using C shell and friends. This is inconsistent; use /dev/nrst0 with any shell if you want a non-rewinding tape, or /dev/rst0 if you want a rewinding tape. Thanks to Norman C Rice for pointing out this one. Page 219 ________ Before the section Testing the spooler add the following section: As we saw above, the line printer daemon lpd is responsible for printing spooled jobs. By default it isn't started at boot time. If you're root, you can start it by name: # lpd Normally, however, you will want it to be started automatically when the system starts up. You do this by setting the variable lpd_enable in /etc/rc.conf: lpd_enable="YES" # Run the line printer daemon See page for more details of /etc/rc.conf. Another line in /etc/rc.conf refers to the line printer daemon: lpd_flags="" # Flags to lpd (if enabled). You don't normally need to change this line. See the man page for lpd for details of the flags. Thanks to Tommy G. James for bringing this to my attention. Page 14 Errata and addenda for the Complete FreeBSD, second edition Page 231 ________ Replace the first line of the example with: xhost presto bumble gw The original version allowed anybody on the Internet to access your system. Thanks to Jerry Dunham for drawing this one to my attention. Page 237 ________ In the section Installing the sample desktop, replace the first paragraph with: You'll find all the files described in this chapter on the first CD-ROM (Installation CD-ROM) in the directory /book. Remember that you must mount the CD-ROM before you can access the files--see page 175 for further details. The individual scripts are in the directory /book/scripts, but you'll probably find it easier to install them with the script install-desktop: Thanks to Chris Kaiser for drawing this to my attention. Page 242 ________ The instructions for extracting the source files from CD-ROM in the middle of page 242 are incorrect. You'll find the kernel sources on the first CD-ROM in the directory /src. Replace the example with: # mkdir -p /usr/src/sys # ln -s /usr/src/sys /sys # cd / # cat /cdrom/src/ssys.[a-d]* | tar xzvf - Thanks to Raymond Noel , Suttipan Limanond and Satwant for finding this one in several small slices. Page 15 Install ports when installing the system Page 257 ________ Replace the paragraph Berkeley Packet Filter with: pseudo-device bpfilter ______________________ The Berkeley Packet Filter (bpf) allows you to capture packets crossing a network interface to disk or to examine them with the tcpdump program. Note that this capability represents a significant compromise of network security. The number after bpfilter is the number of concurrent processes that can use the facility. Not all network interfaces support bpf. In order to use the Berkeley Packet Filter, you must also create the device nodes /dev/bpf0 to /dev/bpf3 (if you're using the default number 4). Current- ly, MAKEDEV doesn't help much--you need to create each device separately: # cd /dev # ./MAKEDEV bpf0 # ./MAKEDEV bpf1 # ./MAKEDEV bpf2 # ./MAKEDEV bpf3 Thanks to Christopher Raven for drawing this to my attention. Page 264 ________ In the list of disk driver flags, add: o Bit 12 (0x1000) enables LBA (logical block addressing mode). If this bit is not set, the driver accesses the disk in CHS (cylinder/head/sector) mode. o In CHS mode, if bits 11 to 8 are not equal to 0, they specify the number of heads to assume (between 1 and 15). The driver recalculates the number of cylinders to make up the total size of the disk. Page 16 Errata and addenda for the Complete FreeBSD, second edition Page 273, ``Building the kernel'' _________________________________ Replace the example with: Next, change to the build directory and build the kernel: # cd ../../compile/FREEBIE # make depend # make The make depend is needed even if the directory has just been created: apart from creating dependency information, it also creates some files needed for the build. Thanks to Mark Ovens for drawing this to my attention. Page 283, ``Creating the source tree'' ______________________________________ Add a third point to what you need to know: 3. Possibly, the date of the last update that you want to be included in the checkout. If you specify this date, cvs ignores any more recent updates. This option is often useful when somebody discovers a recently introduced bug in -CURRENT: you check out the modules as they were before the bug was introduced. You specify the date with the -D option, for example -D "10 December 1997". Page 285, after the second example. ___________________________________ Add the text: If you need to check out an older version, for example if there are problems with the most recent version of -CURRENT, you could enter: # cvs co -D "10 December 1997" src/sys This command checks out the kernel sources as of 10 December 1997. Page 17 Install ports when installing the system Page 294 ________ Add the following section: Problems executing Linux binaries _________________________________ One of the problems with the ELF format used by more recent Linux binaries is that they usually contain no information to identify them as Linux binaries. They might equally well be BSD/OS or UnixWare binaries. That's not really a problem at this point, since the only ELF format that FreeBSD 3.2 understands is Linux, but FreeBSD-CURRENT recognizes a native FreeBSD ELF format as well, and of course that's the default. If you want to run a Linux ELF binary on such a system, you must brand the executable using the program brandelf. For example, to brand the StarOffice program swriter3, you would enter: # brandelf -t linux /usr/local/StarOffice-3.1/linux-x86/bin/swriter3 Thanks to Dan Busarow for bringing this to my attention. Page 364, middle of page ________________________ Change the text from: The names MYADDR and HISADDR are keywords which represent the addresses at each end of the link. They must be written as shown, though they may be in lower case. to The names MYADDR and HISADDR are keywords which represent the addresses at each end of the link. They must be written as shown, though newer versions of ppp allow you to write them in lower case. Thanks to Mark S. Reichman for this correction. Page 368 ________ Replace the paragraph after the second example with: In FreeBSD version 3.0 and later, specify the options PPP_BSDCOMP and Page 18 Errata and addenda for the Complete FreeBSD, second edition PPP_DEFLATE to enable two kinds of compression. You'll also need to specify the corresponding option in Kernel PPP's configuration file. These options are not available in FreeBSD version 2. Thanks to Brian Somers for this information. Page 397 ________ In the section ``Nicknames'', the example should read: www IN CNAME freebie ftp IN CNAME presto In other words, there should be a space between CNAME and the system name. Page 422 ________ Replace the text above the example with: tcpdump is a program which monitors a network interface and displays selected information which passes through it. It uses the Berkeley Packet Filter (bpf), an optional component of the kernel. It is not included in the GENERIC kernel: see page 257 for information on how to configure it. If you don't configure the Berkeley Packet Filter, you will get a message like tcpdump: /dev/bpf0: device not configured If you forget to create the devices for bpf, you will get a message like: tcpdump: /dev/bpf0: No such file or directory Since tcpdump poses a potential security problem, you must be root in order to run it. The simplest way to run it is without any parameters. This will cause tcpdump to monitor and display all traffic on the first active network interface, normally Ethernet: Thanks to Christopher Raven for drawing this to my attention. Page 19 Install ports when installing the system Page 423 ________ The description at the top of the page incorrectly uses the term IP address instead of Ethernet address. In addition, a page number reference is incorrect. Replace the paragraph with: o Line 1 shows an ARP request: system presto is looking for the Ethernet address of wait. It would appear that wait is currently not responding, since there is no reply. o Line 2 is not an IP message at all. tcpdump shows the Ethernet addresses and the beginning of the packet. We don't consider this kind of request in this book. o Line 3 is a broadcast ntp message. We looked at ntp on page 160. o Line 4 is another attempt by presto to find the IP address of wait. o Line 5 is a broadcast message from bumble on the rwho port, giving information about its current load averages and how long it has been up. See the man page for rwho on page 1167 for more information. o Line 6 is from a TCP connection between port 6000 on freebie and port 1089 on presto. It is sending 384 bytes (with the sequence numbers 536925467 to 536925851; see page 305), and is acknowledging that the last byte it received from presto had the sequence number 325114346. The window size is 17280. o Line 7 is another ARP request. presto is looking for the Ethernet address of freebie. How can that happen? We've just seen that they have a TCP connection. In fact, ARP information expires after 20 minutes. It's quite possible that all connections between presto and freebie have been dormant for this period, so presto needs to find freebie's IP address again. o Line 8 is the ARP reply from freebie to presto giving its Ethernet address. o Line 9 shows a reply from presto on the connection to freebie that we saw on line 6. It acknowledges the data up to sequence number 536925851, but doesn't send any itself. o Line 10 shows another 448 bytes of data from freebie to presto, and acknowledging the same sequence number from presto as in line 6. Thanks to Sergei S. Laskavy for drawing this to my Page 20 Errata and addenda for the Complete FreeBSD, second edition attention. Page 450: anonymous ftp _______________________ Replace the paragraph starting with Create a user ftp: Create a user ftp, with the anonymous ftp directory as the home directory and the shell /dev/null. Using /dev/null as the shell makes it impossible to log in as user ftp, but does not interfere with the use of anonymous ftp. ftp can be a member of group bin, or you can create a new group ftp by adding the group to /etc/group. See page 138 for more details of adding users, and the man page on page 805 for adding groups. Thanks to Mark S. Reichman for drawing this to my attention. Page 466, before the ps example _______________________________ Add another bullet: o Finally, you may find it convenient to let some other system handle all your mail delivery for you: you just send anything you can't deliver locally to this other host, which sendmail calls a smart host. This is particularly convenient if you send your mail with UUCP. To tell sendmail to use a smart host (in our case, mail.example.net), find the following line in sendmail.cf: # "Smart" relay host (may be null) DS Change it to: # "Smart" relay host (may be null) DSmail.example.net Page 478, ``Running Apache'' ____________________________ The text describes the location of the server as /usr/local/www/server/httpd. This appears to depend on where you get the port from. Some people report the file being at the more likely location /usr/local/sbin/httpd (though note the Page 21 Install ports when installing the system directory sbin, not bin). Check both locations if you run into trouble. Thanks to Sue Blake for this information. Page 492 ________ Replace references to nmdb with nmbd. Page 493 ________ Replace the last paragraph on the page with: socket options is hardly mentioned in the documentation, but it's very important: many Microsoft implementations of TCP/IP are inefficient and establish a new TCP more often than necessary. Select the socket options TCP_NODELAY and IPTOS_LOWDELAY, which can speed up the response time of such applications by over 95%. Page 22 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 17:42:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id E05E237B479 for ; Fri, 20 Oct 2000 17:42:38 -0700 (PDT) Received: (qmail 67682 invoked by uid 100); 21 Oct 2000 00:42:38 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14832.59006.237813.575688@guru.mired.org> Date: Fri, 20 Oct 2000 19:42:38 -0500 (CDT) To: Johan Pettersson Cc: questions@freebsd.org Subject: Re: limit bandwidth for users dir In-Reply-To: <130686476@toto.iv> X-Mailer: VM 6.75 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Johan Pettersson writes: > Hi! > > We have problem with some users and > want to limit bandwith for them, > for example: > > /www/user1/public_html/ <- good user only text files > /www/user2/public_html/ <- bad user a lot of movies > > Is it possible to limith bandwith for only > user2's directory ? Check out thttpd (ports/www/thttpd). It allows throttling based on the URL. ; Fri, 20 Oct 2000 17:47:28 -0700 (PDT) Received: from fwd03.sul.t-online.com by mailout03.sul.t-online.com with smtp id 13mmop-00011e-00; Sat, 21 Oct 2000 02:47:27 +0200 Received: from default (0222516395-0001@[193.159.109.161]) by fwd03.sul.t-online.com with esmtp id 13mmof-22FvFIC; Sat, 21 Oct 2000 02:47:17 +0200 From: Stappi@t-online.de To: questions@FreeBSD.org Date: Sat, 21 Oct 2000 02:45:13 +0100 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: cant' find bin directory... X-mailer: Pegasus Mail for Win32 (v3.12b) Message-ID: <13mmof-22FvFIC@fwd03.sul.t-online.com> X-Sender: 0222516395-0001@t-dialin.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to install freebsd through floppies and after I configured everything and am supposed to "enter a floppy" (I inserted a disk containing bin.inf) and after clicking OK - I get the error "can't find bin directory". The floppy is never read again and the install program claims "can find man directory" etc.. What did I do wrong? Regards, Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 18:17:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc2.bc.home.com (mail2.rdc2.bc.home.com [24.2.10.85]) by hub.freebsd.org (Postfix) with ESMTP id B75A737B479 for ; Fri, 20 Oct 2000 18:17:46 -0700 (PDT) Received: from wkstn ([24.113.176.126]) by mail2.rdc2.bc.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001021011746.CQHO24217.mail2.rdc2.bc.home.com@wkstn> for ; Fri, 20 Oct 2000 18:17:46 -0700 Message-ID: <000a01c03afc$a689eb40$0201a8c0@carpoolbc.com> From: "Roop Nanuwz" To: Subject: Large hard drive... Date: Fri, 20 Oct 2000 18:15:22 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C03AC1.B5F056E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C03AC1.B5F056E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm trying to install FreeBSD 4.0 from CD onto a 30GB maxtor (7200RPM) = hard drive. The hard drive is partitioned into 28GB and 2GB.. the 28GB = are used by Win98 (FAT32) and the 2GB partition is free.. I'm trying to = install FreeBSD onto the 2GB partition, but the install proggie only = recognizes the first 2GB which is part of the win98 partition.. is there = a kernel feature i have add before it recognizes the large hard drive? = or is there something else I need to do before I can install BSD onto = the end of the drive like this? Any help would be appreciated.. thanks Roop ------=_NextPart_000_0007_01C03AC1.B5F056E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'm trying to install FreeBSD 4.0 from = CD onto a=20 30GB maxtor (7200RPM) hard drive. The hard drive is partitioned into = 28GB and=20 2GB.. the 28GB are used by Win98 (FAT32) and the 2GB partition is free.. = I'm=20 trying to install FreeBSD onto the 2GB partition, but the install = proggie only=20 recognizes the first 2GB which is part of the win98 partition.. is there = a=20 kernel feature i have add before it recognizes the large hard drive? or = is there=20 something else I need to do before I can install BSD onto the end of the = drive=20 like this? Any help would be appreciated.. thanks
 
Roop
------=_NextPart_000_0007_01C03AC1.B5F056E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 18:25:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 6748837B479 for ; Fri, 20 Oct 2000 18:25:49 -0700 (PDT) Received: from parish ([62.255.96.124]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001021004509.TIOC27285.mta07-svc.ntlworld.com@parish>; Sat, 21 Oct 2000 01:45:09 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e9L0iaU00490; Sat, 21 Oct 2000 01:44:36 +0100 (BST) (envelope-from mark) Date: Sat, 21 Oct 2000 01:44:35 +0100 From: Mark Ovens To: Eric Osterweil Cc: questions@freebsd.org Subject: Re: Why does chflags cause make install to fail? Message-ID: <20001021014435.B258@parish> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: ; from eosterweil@hotmail.com on Fri, Oct 20, 2000 at 03:41:19AM +0000 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 03:41:19AM +0000, Eric Osterweil wrote: > > > I needed to recompile my kernal (to enable natd) in freeBSD 4.1.1-stable, > and when I run make install I get an error telling me that the "chflags > noschg /kernal" command is not allowed. Then the "mv /kernal /kernal.old" > fails and dumps the install process. > > I cannot find any reference to this on the freeBSD.org site. I also tried > to run "chflags nouchg /kernal", but it also fails. Is there something else ^^^^^^ Is this a typo? it should be ``noschg''. chflags(1) will only work if you are root, you are not trying to run it as a normal user are you? > I should try? > > Thanks, > > Eric > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@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 Fri Oct 20 18:34:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from downstairs.conyers.net (cr419806-a.wlfdle1.on.wave.home.com [24.42.55.97]) by hub.freebsd.org (Postfix) with ESMTP id 6593F37B4D7; Fri, 20 Oct 2000 18:34:44 -0700 (PDT) Received: from home.com (localhost [127.0.0.1]) by downstairs.conyers.net (8.9.3/8.9.3) with ESMTP id VAA75388; Fri, 20 Oct 2000 21:34:41 -0400 (EDT) (envelope-from pnmurphy@home.com) Message-ID: <39F0F2AB.C50E0E8D@home.com> Date: Fri, 20 Oct 2000 21:34:35 -0400 From: Paul Murphy X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Marko Ruban Cc: FreeBSD questions , freebsd-hackers@FreeBSD.ORG Subject: Re: Routing issue with cable modem References: <39EF5505.7B7C2BFD@tellurian.com> <04c701c03a0f$716181f0$6d0a280a@speedera.com> <39EF8AAD.94739B2B@tellurian.com> <06ba01c03a2e$f66625d0$6d0a280a@speedera.com> <39F08B52.2E598CC5@tellurian.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Marko Ruban wrote: > > I tried replicating my windows routing table in freebsd. > Only one entry didn't work... (guess) > "route add default 10.17.56.xx" > > I'm cursed ! > read below .... > > > > > > Goal -- to add cable modem as the default gateway to internet. > > > > > Symptom -- "add net default: gateway 10.17.56.XXX: Network is > > > > > unreachable" > > > > > Problem -- I think modem gateway cannot be added because it's on a > > > > > different subnet then my NICs. > > > > > Attempted -- aliasing ed0 to modem subnet.... all 10.17.56 IPs seem to > > > > > be occupied. > > > > > > > > It does sound like routing- > > > > A gateway, by definition, has to be on the same network as your NIC. > > > > I'm guessing your cable modem is in bridging mode? (vs routing mode) > > > > > > What would that mean in terms of my config changes ?? > > > So is the cable modem in this computer, or is it some standalone device? > > The cable modem is an external device. It is connected to one of my two NICs. > The other NIC has been connected to a small LAN for a while (which worked > perfect with dialup PPP and NAT). And it is also connected to the TV cable and > a phone line. The uplink is handled automatically by the modem. > > > > > So it's presenting itself as some IP right? > > > > And you just have to use this IP as the default gateway for all your > > other > > > > machines- > > > > > > > What is the subnet masking in place here? > > > > > > The modem works fine on my windows machine, and I looked up the > > configuration > > > there (winipcfg). > > > Windows sets 10.17.56.XXX as the default gateway (and DHCP server), and > > assigns > > > 208.59.162.XXX (subnet 255.255.255.0) to me. DNS server is set to > > 207.172.3.9. > > > > > > Seems like should be no difficulty setting up unix in the same way... but > > unix > > > does like 10.17.56.XXX as gateway (because supposedly network is > > unreachable). > > > > > > So that's the story... any suggestions? > > > > Ok, so the machine is being given a 208.59.162.xxx IP address (via DHCP), > > and a default gateway of 10.17.56.xx. > > > > Ok I think I know what's going on- > > > > Try manually adding the default route, but specify the interface that you > > want to use. > > It's something like: > > > > "route add default 10.17.56.xx netmask 255.255.255.0 interface ed0" > > "route add default 10.17.56.xx -netmask 255.255.255.0 -interface ed0" did not > work, probably because 10.17.56.xx was specifying a gateway for the network > 0.0.0.0 and ed0 was trying to be a gateway as well. I can however "route add > default -interface ed0" which is actually the closest I've gotten to it working > (modem dials out when I ping 10.17.56.1). > > "route add default 10.17.56.xx" would not work under any circumstances :( > tells me "Network is unreachable". I just wonder how windows has no problem > adding it as gateway. > > > I think that because the machine doesnt have an interface on the 10.x.x.x > > network, it doesn't know how to get to the 10.x.x.0 network. > > > > I think you alternately could add a static route that looks like this: > > > > "route add 10.0.0.0 208.59.162.xx" > > When route to 10.0.0.0 is added, outgoing packets are corrupted (checked with > ethereal). I.E. the header of the packet has 4 bytes inserted between the > source and destination MACs. Those 4 bytes always seem to be part of the > destination MAC itself. > > Following from another reply..... > >>>>>>>>>>>>>>>>>>>>>> > >> > > defaultrouter="10.17.56.12" #<-- fails with symptom previously > described > >> > > >> > DHCP will normally configure the default route for you -- try setting > >> > this to NO. > >> > >> Tried setting to NO... DHCP doesn't seem to add a default route, so in my > case it > >> makes no difference really. > >> Should it add default route? > > > >Normally, yes. You sort of need default route and netmask in order to > >make things work. This should happen with the stock dhclient.conf > >(which is empty). You could try to run dhclient by hand, something > >like: > > > > # killall dhclient > > # dhclient -dD ed0 > > > >Or whatever your interface is. Terminate it with Ctrl+C. You should > >get a bunch of files in /tmp, containing values received from the > >server. You may also get some interesting error messages. > > Tried "dhclient -d -D ed0".... no files are written to /tmp dir. > Do you think it could be a problem with my dhclient ? > I tried using wide-dhcp client earlier, with even less success. > > Marko > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I could never manually config my cable modem for @home; it works if you let DHCP config it. [ifconfig_ep0="DHCP" <- in rc.conf] -- P. Murphy Home: Lat 43.5584 Long -79.6502 Work: Lat 43.4277 Long -79.7077 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 18:41:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 247F337B4CF for ; Fri, 20 Oct 2000 18:41:11 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13mneo-000HaY-00; Sat, 21 Oct 2000 02:41:10 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id CAA52158; Sat, 21 Oct 2000 02:41:09 +0100 (BST) (envelope-from jcm) Date: Sat, 21 Oct 2000 02:41:09 +0100 From: j mckitrick To: Salvo Bartolotta Cc: freebsd-questions@FreeBSD.ORG Subject: Re: gnucash and odd port behavior Message-ID: <20001021024109.A52139@dogma.freebsd-uk.eu.org> References: <20001020114718.A44597@dogma.freebsd-uk.eu.org> <20001020.20213100@bartequi.ottodomain.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001020.20213100@bartequi.ottodomain.org>; from bartequi@inwind.it on Fri, Oct 20, 2000 at 08:21:31PM +0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG | The recipe, in short, is: **add** a suitable "date" tag to your | ports-supfile, as per the instructions in cvsup(1). The '.' tag has worked fine until now. Why does it need to change? jcm -- "That depends on what the meaning of the word 'is' is." -President Bill Clinton "I don't know what you mean by the word 'ask.'" -CEO Bill Gates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 18:44:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from kuku.excite.com (kuku-rwcmta.excite.com [198.3.99.63]) by hub.freebsd.org (Postfix) with ESMTP id EC04A37B4D7 for ; Fri, 20 Oct 2000 18:44:50 -0700 (PDT) Received: from hippie.excite.com ([199.172.148.180]) by kuku.excite.com (InterMail vM.4.01.02.39 201-229-119-122) with ESMTP id <20001021014450.CDHV17063.kuku.excite.com@hippie.excite.com> for ; Fri, 20 Oct 2000 18:44:50 -0700 Message-ID: <32382260.972092690803.JavaMail.imail@hippie.excite.com> Date: Fri, 20 Oct 2000 18:44:50 -0700 (PDT) From: Arthur Peet To: freebsd-questions@freebsd.org Subject: Build world error [Undef Ref `setresuid'] Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Excite Inbox X-Sender-Ip: 24.4.254.17 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have run into an error upgrading from 3.4 to 4.1.1-STABLE. I cvsup=92d =96STABLE and then=20 cd /usr/src make buildworld Halfway through the build, I received the following errors: . . . cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c opmini.c cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl =20 -L/usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl -static -o miniperl miniperlmain.o opmini.o=20 /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a -lm -lcrypt -lutil /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a(pp_hot.o): In function =91Perl_pp_aassign=92: pp_hot.o(.text+0x16a1): undefined reference to =91setresuid=92 pp_hot.o(.text+0x16d4): undefined reference to =91setresgid=92 *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Any thoughts? Any help would be appreciated. Thanks, Art _______________________________________________________ Say Bye to Slow Internet! http://www.home.com/xinbox/signup.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 18:46:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.screaming.net (smtp.screaming.net [212.49.224.20]) by hub.freebsd.org (Postfix) with ESMTP id DFA1537B4C5 for ; Fri, 20 Oct 2000 18:46:06 -0700 (PDT) Received: from lexx.my.domain (dyn203-ras36.screaming.net [212.188.131.203]) by smtp.screaming.net (8.9.3/8.9.3) with SMTP id BAA23205 for ; Sat, 21 Oct 2000 01:49:30 GMT From: John Murphy To: questions@freebsd.org Subject: Re: hardware diagnostics? Date: Sat, 21 Oct 2000 02:45:36 +0100 Organization: The Organisation Reply-To: bigotfo@bigfoot.com Message-ID: X-Mailer: Forte Agent 1.8/32.548 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 Kenneth Ingham wrote: >I have a machine built from parts (to avoid the microsoft tax) >running 4.1 with a 4-STABLE kernel (built on another FreeBSD 4-Stable >machine). It is hanging at random places. I suspect hardware for >the following reason: If I boot the system and try to compile a >kernel, it will hang (no response to ping, no response on console) >during the make depend. Unfortunately, it does not hang in the >same place each time, which is why I suspect hardware. > >How does one go about testing hardware short of buying a second >collection of parts and changing them one at a time? > "Hanging at random places" reminds me of something I was reading at: http://www.BitWizard.nl/sig11/ HTH John. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 19:15:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ego.mind.net (ego.mind.net [206.99.66.9]) by hub.freebsd.org (Postfix) with ESMTP id 6F89B37B479; Fri, 20 Oct 2000 19:15:23 -0700 (PDT) Received: from takhus-home.ashlandfn.org (AFN-Dyn-2084621972.pc.ashlandfiber.net [208.46.219.72]) by ego.mind.net (8.9.3/8.9.3) with ESMTP id TAA03986; Fri, 20 Oct 2000 19:15:12 -0700 Received: from localhost (fleisher@localhost) by takhus-home.ashlandfn.org (8.11.1/8.11.1) with ESMTP id e9L2FBL00314; Fri, 20 Oct 2000 19:15:11 -0700 (PDT) (envelope-from takhus@takhus.mind.net) X-Authentication-Warning: takhus-home.ashlandfn.org: fleisher owned process doing -bs Date: Fri, 20 Oct 2000 19:15:11 -0700 (PDT) From: Tony Fleisher X-Sender: fleisher@takhus-home.ashlandfn.org To: Marko Ruban Cc: FreeBSD questions , freebsd-hackers@FreeBSD.ORG Subject: Re: Routing issue with cable modem In-Reply-To: <39F0B9A6.56FFE589@dppl.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Have you perhaps updated to a new kernel since you installed ethereal? I seem to recall seing similiar situations to this when some data structures changed sizes. Is "/usr/sbin/tcpdump -e" showing this same MAC address corruption you describe? If not, I would recommend rebuilding ethereal. TOny. On Fri, 20 Oct 2000, Marko Ruban wrote: > New issue seems to be at hand... > > I set the alias for the interface to be the gateway IP (10.17.56.12), and then I was > able to add that as my default gateway. Not sure why aliasing wouldn't work with > 10.17.56.11 or some other IP in that subnet. > > I tried to ping the DNS server after that, and watched hundreds of corrupt packets > get sent out with no replies. > So my new question is, which part of the system actually builds the packets ? Any > way to debug or log that process ? > > Here's an example taken from ethereal output.... (view with proportional font) > --------------------------------------------------------- > Frame 6 (102 on wire, 102 captured) > Arrival Time: Oct 20, 2000 16:42:38.2715 > Time delta from previous packet: 0.000071 seconds > Frame Number: 6 > Packet Length: 102 bytes > Capture Length: 102 bytes > Ethernet II > Destination: 02:00:00:00:52:54 (02:00:00:00:52:54) > Source: 05:f4:21:3f:52:54 (05:f4:21:3f:52:54) > Type: Unknown (0x05f4) > Data (88 bytes) > > 0 0200 0000 5254 05f4 213f 5254 05f4 213f ....RT..!?RT..!? > 10 0800 4500 0054 13fa 0000 fa01 97dc 0a11 ..E..T.......... > 20 380c cfac 0309 0800 c1f0 6101 0000 3eae 8.........a...>. > 30 f039 b722 0400 0809 0a0b 0c0d 0e0f 1011 .9."............ > 40 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 .............. ! > 50 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 "#$%&'()*+,-./01 > 60 3233 3435 3637 234567 > --------------------------------------------------------- > > Why I think this packet is malformed..... > > First of all, protocol type Unknown (0x05f4) looks definitely bad. > Secondly, protocol type looks like part of my NICs MAC address (52:54:05:f4:21:3f > according to ifconfig, which translates into hex: 0x5254 05f4 213f). > Thirdly, source address decoded by ethereal (and probably by any other packet > processor) is wrong (first two bytes are carried over to the other side). > > Now, keeping all that in mind, lets do a pattern match on the REAL MAC address in > hex dump of the packet. > HEY, the source address actually starts four bytes later than it should, thus > shifting the TRUE protocol type (0x0800 = IP) as well. > > First six bytes are the destination MAC, then come the EVIL 4 bytes, followed by 6 > bytes of source MAC. > I don't know what's going on, but looks pretty bad, yet simple on the hex level :) > > Any ideas ? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 19:36:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from epsilon.lucida.qc.ca (epsilon.lucida.qc.ca [216.95.146.6]) by hub.freebsd.org (Postfix) with SMTP id 4B95A37B479 for ; Fri, 20 Oct 2000 19:36:07 -0700 (PDT) Received: (qmail 28317 invoked by uid 1000); 21 Oct 2000 02:36:01 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 21 Oct 2000 02:36:01 -0000 Date: Fri, 20 Oct 2000 22:35:59 -0400 (EDT) From: Matt Heckaman X-Sender: matt@epsilon.lucida.qc.ca To: FreeBSD-QUESTIONS Subject: Keyboard behaviour under FreeBSD 4.1.1-RELEASE & XFree86 4.0.1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost 1.6.2 0/1000/N Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I've had a problem with my keyboard off and on under X here. It does not happen all the time, and I've been unable to determine just what causes it to do this, or what triggers it. At times, my number pad on the keyboard ceases printing out numbers and starts to move my mouse curser (very slowly) with the #5 key acting as a highlight button on the mouse.. This is with NUMLOCK turned on. I have found that this behaviour also happens with the NUMLOCK key off.. This is quite frustrating. I've never had this happen under X 3.3.6, and since it doesn't happen all the time under 4.0.1, I'm at a loss. I most definately need the number pad to speed up number entry. My XF86Config entry for the keyboard looks like: Section "InputDevice" Identifier "Keyboard0" Driver "keyboard" Option "XkbModel" "pc104" Option "XkbLayout" "us" EndSection If anyone has seen this behaviour, could you give me a pointer on how to fix it? Also, if you require more information; please let me know! Thanks in advance for your time. Regards, Matt Heckaman * Matt Heckaman - mailto:matt@lucida.qc.ca http://www.lucida.qc.ca/ * * GPG fingerprint - A9BC F3A8 278E 22F2 9BDA BFCF 74C3 2D31 C035 5390 * -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: http://www.lucida.qc.ca/pgp iD8DBQE58QERdMMtMcA1U5ARAjgKAKCLi7bvyDDVNM3IFq3vPTS7zNTU6gCgzHb9 ezkvdTew5//FrLQ/9NmldgE= =GmMz -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 19:50:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from garlic.acadiau.ca (garlic.acadiau.ca [131.162.138.193]) by hub.freebsd.org (Postfix) with ESMTP id 1A26837B4CF for ; Fri, 20 Oct 2000 19:50:44 -0700 (PDT) Received: from thinkpada20 (039646u-nb.acadiau.ca [131.162.149.156]) by garlic.acadiau.ca (8.10.0/8.10.0) with SMTP id e9L2sfR37820 for ; Fri, 20 Oct 2000 23:54:41 -0300 (ADT) Message-ID: <002501c03b09$af9fbe00$9c95a283@acadiau.ca> Reply-To: "Brandon W. Uhlman" <039646u@acadiau.ca> From: "Brandon W. Uhlman" <039646u@acadiau.ca> To: Subject: FTP Install Fails with Signal 11 Date: Fri, 20 Oct 2000 23:50:34 -0300 Organization: Acadia University MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0022_01C03AF0.8A0F6280" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0022_01C03AF0.8A0F6280 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable G'day: I've tried doing FTP installs of FreeBSD 4.1 and 4.1.1 from both a local = mirror, and one of the freebsd.org sites as well (ftp3, IIRC). The = machine is an IBM Thinkpad A20m (2628-14U) - Celeron 500, 6.0GB, 64MB = (upgraded to 128MB). I've read some stories about IBM A and T series = laptops on this list, but it doesn't seem related... other than FreeBSD = combined with this machine seems to generally be cursed. :-) I lease the laptop from the University I attend, so any hardware = problems would have to go through them... and I don't relish asking them = for new RAM because an operating system they don't officially support = won't install on this machine. I know some people have installed FreeBSD successfully on an identically = configured A20m. Thoughts or suggestions? Thanks, Brandon Uhlman BCS (Hons.), Acadia University ('03) ------=_NextPart_000_0022_01C03AF0.8A0F6280 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
G'day:
 
I've tried doing FTP installs of = FreeBSD 4.1 and=20 4.1.1 from both a local mirror, and one of the freebsd.org sites as well = (ftp3,=20 IIRC). The machine is an IBM Thinkpad A20m (2628-14U) - Celeron 500, = 6.0GB, 64MB=20 (upgraded to 128MB). I've read some stories about IBM A and T series = laptops on=20 this list, but it doesn't seem related... other than FreeBSD combined = with this=20 machine seems to generally be cursed. :-)
 
I lease the laptop from the University = I attend, so=20 any hardware problems would have to go through them... and I don't = relish asking=20 them for new RAM because an operating system they don't officially = support won't=20 install on this machine.
 
I know some people have installed = FreeBSD=20 successfully on an identically configured A20m. Thoughts or=20 suggestions?
 
Thanks,
 
Brandon Uhlman
BCS (Hons.), Acadia University=20 ('03)
------=_NextPart_000_0022_01C03AF0.8A0F6280-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 19:56: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from egotistic.aego.net (egotistic.aego.net [198.77.82.21]) by hub.freebsd.org (Postfix) with ESMTP id CCE3737B4CF for ; Fri, 20 Oct 2000 19:56:05 -0700 (PDT) Received: from aego.com (pc-194.alteregonet.com [198.77.82.194] (may be forged)) by egotistic.aego.net (8.10.0/8.10.0) with ESMTP id e9L2prV26951 for ; Fri, 20 Oct 2000 19:51:53 -0700 Message-ID: <39F105C5.ACFD9CC9@aego.com> Date: Fri, 20 Oct 2000 19:56:05 -0700 From: BrianStadtmiller Reply-To: brians@aego.com Organization: aego.com X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Thinkpad T20 install/support Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone had success installing FreeBSD onto an IBM Thinkpad T20? I gave it a shot, and the smoke is just clearing....I mean she blew up something fierce. After things cool off I may go at it again..... If anyone has any knowledge on compatibility etc. I'd like to hear. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 20: 4:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 1F46A37B4C5 for ; Fri, 20 Oct 2000 20:04:17 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id UAA00851; Fri, 20 Oct 2000 20:00:27 -0700 Message-ID: <39F106CB.2FCBF65A@urx.com> Date: Fri, 20 Oct 2000 20:00:27 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Roop Nanuwz Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Large hard drive... References: <000a01c03afc$a689eb40$0201a8c0@carpoolbc.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You will have better luck with 4.1 and your hardware arrangement. The / partition has to end before cylinder 1024, which is ~8.4GB using LBA, when you use anything before version 4.1. Kent > Roop Nanuwz wrote: > > I'm trying to install FreeBSD 4.0 from CD onto a 30GB maxtor > (7200RPM) hard drive. The hard drive is partitioned into 28GB and > 2GB.. the 28GB are used by Win98 (FAT32) and the 2GB partition is > free.. I'm trying to install FreeBSD onto the 2GB partition, but the > install proggie only recognizes the first 2GB which is part of the > win98 partition.. is there a kernel feature i have add before it > recognizes the large hard drive? or is there something else I need > to do before I can install BSD onto the end of the drive like this? > Any help would be appreciated.. thanks > > Roop -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 20:10:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 96D6A37B479 for ; Fri, 20 Oct 2000 20:10:32 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id UAA00880; Fri, 20 Oct 2000 20:10:26 -0700 Message-ID: <39F10922.9003A107@urx.com> Date: Fri, 20 Oct 2000 20:10:26 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Arthur Peet Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Build world error [Undef Ref `setresuid'] References: <32382260.972092690803.JavaMail.imail@hippie.excite.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Arthur Peet wrote: > > Hi, > I have run into an error upgrading from 3.4 to 4.1.1-STABLE. > I cvsup’d –STABLE and then > cd /usr/src > make buildworld > > Halfway through the build, I received the following errors: You might look at http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=51796+57580+/usr/local/www/db/text/2000/freebsd-stable/20001015.freebsd-stable and see if what he did help you. They appear to have had the same problems. Some of what he did appears to be overkill but when you are dealing with a number of systems, it may be necessary. BTW, the search of -stable was for "[PROCEDURE] Successful 3.5-S to 4.1-S upgrade". Kent > > . > . > . > > > cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 > -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl -c opmini.c > cc -O -pipe -I/usr/src/gnu/usr.bin/perl/miniperl/../../../../contrib/perl5 > -I/usr/obj/usr/src/gnu/usr.bin/perl/miniperl > -L/usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl -static -o miniperl > miniperlmain.o opmini.o > /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a -lm -lcrypt > -lutil > /usr/obj/usr/src/gnu/usr.bin/perl/miniperl/../libperl/libperl.a(pp_hot.o): > In function ‘Perl_pp_aassign’: > pp_hot.o(.text+0x16a1): undefined reference to ‘setresuid’ > pp_hot.o(.text+0x16d4): undefined reference to ‘setresgid’ > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Any thoughts? > Any help would be appreciated. > Thanks, > Art > > _______________________________________________________ > Say Bye to Slow Internet! > http://www.home.com/xinbox/signup.html > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 20:39:56 2000 Delivered-To: freebsd-questions@freebsd.org Received: from advdata.net (mail.advdata.net [63.77.232.3]) by hub.freebsd.org (Postfix) with ESMTP id E199537B479 for ; Fri, 20 Oct 2000 20:39:54 -0700 (PDT) Received: from adni.net (ppp174.as5300-1.advdata.net [63.77.235.174]) by advdata.net (8.9.3/8.8.5) with ESMTP id XAA21070 for ; Fri, 20 Oct 2000 23:39:47 -0400 (EDT) Message-ID: <39F10FFE.AAA07D96@adni.net> Date: Fri, 20 Oct 2000 23:39:42 -0400 From: Bill Webb X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: FreeBSD vs OpenBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Unfair question, but how is FreeBSD differant and/or less secure than OpenBSD? Also, am I correct that FreeBSD will work with Compaq drives and RAID controllers? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 20:48:47 2000 Delivered-To: freebsd-questions@freebsd.org Received: from static.unixfreak.org (static.unixfreak.org [63.198.170.139]) by hub.freebsd.org (Postfix) with ESMTP id C01F837B479; Fri, 20 Oct 2000 20:48:45 -0700 (PDT) Received: by static.unixfreak.org (Postfix, from userid 1000) id EEB7E1F1F; Fri, 20 Oct 2000 20:48:44 -0700 (PDT) Subject: Re: Why does chflags cause make install to fail? In-Reply-To: <20001021014435.B258@parish> "from Mark Ovens at Oct 21, 2000 01:44:35 am" To: Mark Ovens Date: Fri, 20 Oct 2000 20:48:44 -0700 (PDT) Cc: Eric Osterweil , questions@freebsd.org From: Dima Dorfman Reply-To: dima@unixfreak.org X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Message-Id: <20001021034844.EEB7E1F1F@static.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ Charset ISO-8859-1 unsupported, converting... ] > On Fri, Oct 20, 2000 at 03:41:19AM +0000, Eric Osterweil wrote: > > > > > > I needed to recompile my kernal (to enable natd) in freeBSD 4.1.1-stable, > > and when I run make install I get an error telling me that the "chflags > > noschg /kernal" command is not allowed. Then the "mv /kernal /kernal.old" > > fails and dumps the install process. > > > > I cannot find any reference to this on the freeBSD.org site. I also tried > > to run "chflags nouchg /kernal", but it also fails. Is there something else > ^^^^^^ > > Is this a typo? it should be ``noschg''. I think he really meant nouchg. It shouldn't be set on /kernel, but I guess he wanted to make sure. He said he already tried unsetting noschg in the previous paragraph. > chflags(1) will only work if you are root, you are not trying to run > it as a normal user are you? Chflags works just fine as a normal user: dima@lambda% id uid=1000(dima) gid=100(users) groups=100(users), 0(wheel) dima@lambda% touch test dima@lambda% chflags uchg test dima@lambda% rm -f test rm: test: Operation not permitted dima@lambda% chflags nouchg test dima@lambda% rm test You certainly can't (un)set schg as a regular user, but most flags can be (un)set by the owner. See `man 1 chflags` for details. Regards -- Dima Dorfman Finger dima@unixfreak.org for my public PGP key. "If you understand everything, you must be misinformed." -- Japanese Proverb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 21: 1:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from drizzle.com (twinpeaks.drizzle.com [216.162.192.3]) by hub.freebsd.org (Postfix) with ESMTP id E92E337B4C5 for ; Fri, 20 Oct 2000 21:01:51 -0700 (PDT) Received: from localhost (mook@localhost) by drizzle.com (8.11.1/8.11.1) with ESMTP id e9L41pE29808 for ; Fri, 20 Oct 2000 21:01:51 -0700 Date: Fri, 20 Oct 2000 21:01:51 -0700 (PDT) From: Mike Cummings To: freebsd-questions@freebsd.org Subject: Setting up a PCI modem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I hope this isn't too dumb a question, but I haven't found more than a fragment of an answer so far. I'm converting from Linux to FreeBSD and would like to get my PCI modem working. It's not a brain-dead WinModem; I had it working under Linux. (it's a USR 56K PCI) I'm just not sure how to do the same thing in FreeBSD. In Linux, I found out the IRQ and port by cat /proc/pci And then added to my init scripts setserial /dev/ttyS1 irq 9 port 0x1051 autoconfig And everything was fine. Now, under FreeBSD, I assume I want to configure my serial port in the kernel config file and recompile. OK, but how do I do that? My example file shows, among other things, device si01 at isa? port IO_COM2 irq 3 I assume this is the line I want to change, but I'm not sure how to ram the info I got from Linux into this config file. Do I need something special to tell it it's a PCI modem? I did some experimenting with embarrassing results. Thanks! ,-----------------------------------------------------------------------------. > Mike Cummings | "The face of a child can say it all, especially < > mook@drizzle.com | the mouth part of the face." -- Jack Handy < > ICQ #34152632 | < `-----------------------------------------------------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 21:25:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from clyde.goodleaf.net (piscator.seanet.com [199.181.165.218]) by hub.freebsd.org (Postfix) with ESMTP id C93F137B479 for ; Fri, 20 Oct 2000 21:25:45 -0700 (PDT) Received: by clyde.goodleaf.net (Postfix, from userid 1001) id 92AC75BD7; Fri, 20 Oct 2000 21:24:27 -0700 (PDT) From: john@goodleaf.net To: questions@freebsd.org Subject: SuperMicro ServerSet Mobo? Date: Sat, 21 Oct 2000 04:24:27 GMT Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20001021042427.92AC75BD7@clyde.goodleaf.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone used the SuperMicro ServerSet motherboards? I'm pondering the 370DLE or 370 DL3, but I don't know the specifics of the chipset or anything... Anyone? Any luck? -TIA -John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 21:44: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 01B8D37B4C5 for ; Fri, 20 Oct 2000 21:44:03 -0700 (PDT) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id XAA08021; Fri, 20 Oct 2000 23:42:04 -0500 (CDT) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id XAA04933; Fri, 20 Oct 2000 23:42:04 -0500 (CDT) Date: Fri, 20 Oct 2000 23:42:04 -0500 (CDT) From: vcardon@siue.edu Message-Id: <200010210442.XAA04933@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: dima@unixfreak.org Reply-To: vcardon@siue.edu Cc: freebsd-questions@freebsd.org References: <20001020234158.C7DDE1F21@static.unixfreak.org> In-Reply-To: <20001020234158.C7DDE1F21@static.unixfreak.org> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: Re: /etc/hosts ignored Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, sorry about the line length. I am sending these messages from a web mail based system, and have little control over line length. I have tried pinging skippy. That is how I noticed the problem in the first place. Could there be some other cause? Thanks, Victor Quoting Dima Dorfman : > > Hi everyone, > > Hi. Please wrap your lines at ~72 characters. > > > I am having a small problem. My it seems that my /etc/hosts file is > > being ignored. When I try to connect to skippy (192.168.1.1) I get a > > real IP address. I have skippy listed in my hosts file. host.conf > > has hosts before bind. Is there something I\\\'m missing? > > How are you checking? `host`, `nslookup`, and `dig` (maybe a few > others) contact the DNS servers directly (listed in /etc/resolv.conf). > They don\'t use /etc/hosts. If your program uses the gethostbyname() > library call, /etc/hosts should be checked. Try `ping skippy` and see > if that works. > > Hope this helps > > -- > Dima Dorfman > Finger dima@unixfreak.org for my public PGP key. > > You can never be too thin, too rich, or have too much bandwidth. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 22:22:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from jsc-ems-vws03.jsc.nasa.gov (jsc-ems-vws03.jsc.nasa.gov [139.169.39.50]) by hub.freebsd.org (Postfix) with SMTP id 782F037B479 for ; Fri, 20 Oct 2000 22:22:29 -0700 (PDT) Received: from 139.169.16.21 by jsc-ems-vws03.jsc.nasa.gov (InterScan E-Mail VirusWall NT); Sat, 21 Oct 2000 00:22:08 -0500 (Central Daylight Time) Received: by jsc-ems-gws02.jsc.nasa.gov with Internet Mail Service (5.5.2448.0) id ; Sat, 21 Oct 2000 00:22:03 -0500 Message-ID: <41D2696EE385D0118DE90020AFFC1E5C05C57C96@jsc-ems-mbs09.jsc.nasa.gov> From: "WILLIAMS, DENNIS E. (JSC-DA9)" To: "'questions@FreeBSD.org'" Subject: tape drive Date: Sat, 21 Oct 2000 00:22:06 -0500 X-Mailer: Internet Mail Service (5.5.2448.0) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I would like to do back-up of my system. I have Exabyte 8500 attached to aha1542 (my hard drive is attached to the same card and it is mounting the hard drive). What do I need to configure so I can use tar or any other tape backup software to see the tape drive. I have tried using "/dev/MAKEDEV sa3" (tape drive is id 3). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 23:31:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id CA45937B4C5 for ; Fri, 20 Oct 2000 23:31:12 -0700 (PDT) Received: from stargate.gpcc.itd.umich.edu (smtp@stargate.gpcc.itd.umich.edu [141.211.2.154]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id CAA16483 for ; Sat, 21 Oct 2000 02:31:12 -0400 (EDT) Received: from localhost (timcm@localhost) by stargate.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id CAA26843 for ; Sat, 21 Oct 2000 02:31:11 -0400 (EDT) Date: Sat, 21 Oct 2000 02:31:11 -0400 (EDT) From: Tim McMillen X-Sender: timcm@stargate.gpcc.itd.umich.edu To: freebsd-questions@freebsd.org Subject: errors installing KDE-1.94 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I had bought 4.1 release and just upgraded to 4.1.1 last night after downloading the ISO. I decided to try to install KDE-1.94 beta. pkg_add kde_1.94.tgz told me the other packages I would need. I ftp'd all those. I tried again and got numerous errors about needing XFree86-3.3.6_2. I had 3.3.5 apparently installed so I used /stand/sysinstall to upgrade to 3.3.6 off the 4.1.1 release cd. I got the X server working. trying pkg_add kde_1.94.tgz again gives more errors: pkg_add: could not find package XFree86-3.3.6_2 ! pkg_add: autoload of dependency `/usr/home/tim/Mesa-3.2.1_1.tgz' failed! and numerous more like it. Of course it can't find the package. I couldn't either! :) I guess I find it strange that there is a package available for all sorts of oddities (and for XFree4.1something) but not for 3.3.6_2. Is there one coming soon and that is why kde-1.94 expects a package? Anyway, could anybody show me a work around or a way to get 1.94 installed? Or can show me what I did wrong? I'm pretty much a moron with make but I really like how slick the package system really is. Everything else I have tried has installed just great. Thank you, Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 20 23:34:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id B8BBA37B4C5 for ; Fri, 20 Oct 2000 23:34:43 -0700 (PDT) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id CAA44530; Sat, 21 Oct 2000 02:34:40 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <39F105C5.ACFD9CC9@aego.com> References: <39F105C5.ACFD9CC9@aego.com> Date: Sat, 21 Oct 2000 02:34:38 -0400 To: brians@aego.com, freebsd-questions@FreeBSD.ORG From: Garance A Drosihn Subject: Re: Thinkpad T20 install/support Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 7:56 PM -0700 10/20/00, BrianStadtmiller wrote: >Has anyone had success installing FreeBSD onto an IBM Thinkpad T20? >I gave it a shot, and the smoke is just clearing....I mean she blew >up something fierce. After things cool off I may go at it again..... >If anyone has any knowledge on compatibility etc. I'd like to hear. This issue has come up many many times in this mailing list over the past few weeks. Please scan thru the archives. After the install, you probably have a laptop that does not boot up, at all. Seems to be a dead hard disk. It is not. Move the disk to another machine (not a T20, obviously), and change the partition-id to linux. Your laptop will be usable again (of course, you will then have to install some operating system on it before you can really use it, but it is usable). Again, see the archives of this mailing list for further details. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 1:30:52 2000 Delivered-To: freebsd-questions@freebsd.org Received: from snoopy.brwn.org (intgw1.brwn.org [196.28.127.66]) by hub.freebsd.org (Postfix) with ESMTP id ADAF037B4C5 for ; Sat, 21 Oct 2000 01:30:48 -0700 (PDT) Received: by snoopy.brwn.org (Postfix, from userid 1000) id 4E6633ABC; Sat, 21 Oct 2000 10:30:41 +0200 (SAST) Date: Sat, 21 Oct 2000 10:30:41 +0200 From: Willem Brown To: "WILLIAMS, DENNIS E. (JSC-DA9)" Cc: "'questions@FreeBSD.org'" Subject: Re: tape drive Message-ID: <20001021103041.M40098@snoopy.brwn.org> References: <41D2696EE385D0118DE90020AFFC1E5C05C57C96@jsc-ems-mbs09.jsc.nasa.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <41D2696EE385D0118DE90020AFFC1E5C05C57C96@jsc-ems-mbs09.jsc.nasa.gov>; from dennis.e.williams1@jsc.nasa.gov on Sat, Oct 21, 2000 at 12:22:06AM -0500 X-Public-Key: http://willem.brwn.org/pubkey.txt X-Chat-Server: http://chat.brwn.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, The device is actually called /dev/sa0 or /dev/rsa0 for the rewind device and /dev/nsa0 or /dev/nrsa0 for the no-rewind device. The man page for the sa(4) driver will tell what to add to the kernel config file to have FreeBSD recognize it at boot time. man 4 sa. As for MAKEDEV, /dev/MAKEDEV sa0 should do the trick. I don't think the device id is reflected in it's name, rather the order in which they are detected by the kernel at boot time. On Sat, Oct 21, 2000 at 12:22:06AM -0500, WILLIAMS, DENNIS E. (JSC-DA9) wrote: > I would like to do back-up of my system. I have Exabyte 8500 attached to > aha1542 (my hard drive is attached to the same card and it is mounting the > hard drive). What do I need to configure so I can use tar or any other tape > backup software to see the tape drive. I have tried using "/dev/MAKEDEV sa3" > (tape drive is id 3). > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > Best Regards Willem Brown -- /* =============================================================== */ /* Linux, FreeBSD, NetBSD, OpenBSD. The choice is yours. */ /* =============================================================== */ Never pay a compliment as if expecting a receipt. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 2:47:36 2000 Delivered-To: freebsd-questions@freebsd.org Received: from obelix.rby.hk-r.se (obelix.rby.hk-r.se [194.47.134.4]) by hub.freebsd.org (Postfix) with ESMTP id A40B937B4CF for ; Sat, 21 Oct 2000 02:47:32 -0700 (PDT) Received: from orc.rby.hk-r.se (orc [194.47.134.179]) by obelix.rby.hk-r.se (8.10.2/8.10.2) with ESMTP id e9L9lpK15746 for ; Sat, 21 Oct 2000 11:47:51 +0200 (MEST) Received: from localhost (t98pth@localhost) by orc.rby.hk-r.se (8.10.2/8.10.2) with ESMTP id e9L9lQL11232 for ; Sat, 21 Oct 2000 11:47:26 +0200 (MET DST) Date: Sat, 21 Oct 2000 11:47:26 +0200 (MET DST) From: =?ISO-8859-1?Q?P=E4r_Thoren?= To: freebsd-questions@freebsd.org Subject: FreeBSD and DNS Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! This is more of a question concerning how the dns hierarchy works rather then fbsd as a dns server. I have register a domain name, "domain.com" at directnic.com and I have a fbsd server at an isp assigned with an ip. I don=B4t know if anyone of you is familiar with directnic.com but it can b= e configured to act like Network Solution. At least it says so in the directnic faq. How do I make "domain.com" to point to my assigned ip at my isp? Is it enough to use the future at directnic.com that let me type in the two dns servers at my isp? Is any configuration of the dns servers at my ip necessary? And can I have a dns server at my fbsd box that let me assign domain names like "www.domain.com" or "ftp.domain.com" etc.. Should my dns server in that case point to the dns servers my isp uses? /P=E4r To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 2:49:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id F097B37B4CF for ; Sat, 21 Oct 2000 02:49:54 -0700 (PDT) Received: from mail.Go2France.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 0F5E36A905 for ; Sat, 21 Oct 2000 11:49:54 +0200 (CEST) Received: from sv.Go2France.com [212.73.210.79] by mail.Go2France.com with ESMTP (SMTPD32-6.04) id A8147DA30054; Sat, 21 Oct 2000 11:55:32 +0200 Message-Id: <5.0.0.25.0.20001021114855.035be2a0@mail.Go2France.com> X-Sender: lconrad%Go2France.com@mail.Go2France.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sat, 21 Oct 2000 11:50:17 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: Re: FreeBSD and DNS In-Reply-To: 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 >How do I make "domain.com" to point to my assigned ip at my isp? Is it >enough to use the future at directnic.com that let me type in the two dns >servers at my isp? >Is any configuration of the dns servers at my ip necessary? see http://bind8nt.meiway.com/publicDNS.cfm Len http://BIND8NT.MEIway.com: ISC BIND 8.2.2 p5 & 8.2.3 T6B for NT4 & W2K http://IMGate.MEIway.com: Build free, hi-perf, anti-spam mail gateways To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 2:51:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from itp.ac.ru (itp.ac.ru [193.233.32.4]) by hub.freebsd.org (Postfix) with ESMTP id D7C0437B4FE for ; Sat, 21 Oct 2000 02:51:33 -0700 (PDT) Received: from itp.ac.ru (anis.itp.ac.ru [193.233.47.19]) by itp.ac.ru (8.9.1/8.9.1) with ESMTP id NAA24587 for ; Sat, 21 Oct 2000 13:51:25 +0400 (MSD) Message-ID: <39F1673A.4223B1C6@itp.ac.ru> Date: Sat, 21 Oct 2000 13:51:55 +0400 From: "Ivan S. Anisimov" Organization: Landau Institute for Theoretical Physics X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 3.4-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: no buffer space available Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Could anyone help with the following: when I'm trying to send something huge (about 500K) from my machine (both pppd and ppp) it hangs, when I try to ping the remote machine I get "sendto: no buffer space available". Thanks in advance, Ivan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 3: 9:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mss.rdc2.nsw.optushome.com.au (ha1.rdc2.nsw.optushome.com.au [203.164.2.50]) by hub.freebsd.org (Postfix) with ESMTP id 8F23B37B65F for ; Sat, 21 Oct 2000 03:09:16 -0700 (PDT) Received: from powerhouse ([203.164.6.148]) by mss.rdc2.nsw.optushome.com.au (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001021100817.JLYD29783.mss.rdc2.nsw.optushome.com.au@powerhouse> for ; Sat, 21 Oct 2000 21:08:17 +1100 Message-ID: <014a01c03b4f$5537cf70$0500a8c0@eburwd1.vic.optushome.com.au> From: "Tristan" To: Subject: Banshee Vid Card Date: Sat, 21 Oct 2000 21:09:08 +1000 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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just wanted to know how many people out there have a banshee ??? And if you have any problems with it in XFree86 ??? Because i have experanced problems and wanted to know if there are any fixes and if you could list your problems etc.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 3:34:10 2000 Delivered-To: freebsd-questions@freebsd.org Received: from laxmls02.socal.rr.com (laxmls02.socal.rr.com [24.30.163.11]) by hub.freebsd.org (Postfix) with ESMTP id B191B37B4D7 for ; Sat, 21 Oct 2000 03:34:08 -0700 (PDT) Received: from sc-24-160-53-139.socal.rr.com (sc-24-160-53-139.socal.rr.com [24.160.53.139]) by laxmls02.socal.rr.com (8.10.1/8.10.1) with ESMTP id e9LAX5r13502 for ; Sat, 21 Oct 2000 03:33:05 -0700 (PDT) Date: Sat, 21 Oct 2000 03:34:08 -0700 (PDT) From: Ixokai To: freebsd-questions@freebsd.org Subject: Old->New Harddrive; Old Q, I know, need verification 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 Howdy. Okay, i've looked through the archives and on freebsddiary.org, and just want to make sure that I have everything down right. :) The situation: I have two hdd's installed currently (one's new'n'empty). The origional one had Windows and FreeBSD 4.1.1 sharing 10gigs, the new one is 30 total. I've repartitioned the new drive, preparing to give FreeBSD 20gigs on it, and they are currently mounted in /mnt (/), /mnt/usr, and /mnt/var. Not to mention a swapfile, of course. I am prepared to use tar, as described on freebsddiary.org, to copy the relevant partitions over to the new drive. Then, i'm not clear exactly what to do. Both of these drives are IDE, and I keep seeing people talk about SCSI and SCSI ID's. I'm _assuming_ I need to change something in some boot config somewhere. Incidentely, the new drive shows up in my bootmgr menu already, with nothing on it, as 'Disk X', where X is a number I forget. :) Thanks. --Ix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 4:31:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from prime.gushi.org (prime.gushi.org [208.23.118.172]) by hub.freebsd.org (Postfix) with ESMTP id 6B3CD37B4D7 for ; Sat, 21 Oct 2000 04:31:35 -0700 (PDT) Received: from localhost (danm@localhost) by prime.gushi.org (8.9.3/8.9.3) with ESMTP id HAA17043 for ; Sat, 21 Oct 2000 07:20:19 -0400 (EDT) (envelope-from danm@prime.gushi.org) Date: Sat, 21 Oct 2000 07:20:18 -0400 (EDT) From: "Dan Mahoney, System Admin" To: questions@freebsd.org Subject: PAO and 4.x Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey all. i've tried to do an FTP install with my PC card internet of freebsd. No matter what I did, it did not detect the card (a d-link DFE-650). So I tried using the PAO boot floppies, which DID detect it, but the release they were after (3.5 RELEASE) was not available. What I've done is just change the installation options so they download 4.1.1 (this may break things, I'm guessing, but it's the only way I can download anything). If it goes unsuccessfully I spose I'll try setting it to 3.5.1 RELEASE instead. My questions are this: From what I can see some of the features of PAO have been integrated into 4.x RELEASE, however, if I was unable to access my PCcard via the install floppies, does this mean I'll also be out of luck with the kernel? Also, Are there plans to make a "smarter" install floppy like the PAO ones? Thanks, Dan Mahoney -- "I can feel it, comin' back again...Like a rolling thunder chasin' the wind..." -Dan Mahoney, JS, JB & SL, May 10th, 1997, Approx 1AM --------Dan Mahoney-------- Techie, Sysadmin, WebGeek Gushi on efnet/undernet IRC ICQ: 13735144 AIM: LarpGM Web: http://prime.gushi.org finger danm@prime.gushi.org for pgp public key and tel# --------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5: 5: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tori.COM (L0009P07.dipool.highway.telekom.at [62.46.65.7]) by hub.freebsd.org (Postfix) with ESMTP id 17DBD37B479 for ; Sat, 21 Oct 2000 05:04:49 -0700 (PDT) Received: (from philipp@localhost) by tori.COM (8.11.0/8.9.3) id e9LAcHr00336 for questions@freebsd.org; Sat, 21 Oct 2000 12:38:17 +0200 (CEST) (envelope-from philipp) Date: Sat, 21 Oct 2000 12:38:17 +0200 From: Philipp Huber To: questions@freebsd.org Subject: Re: Ink Jet Printing in FBSD??? Message-ID: <20001021123817.B243@tori.mini.net> References: <39F0CF5B.F8D4EF23@ispchannel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39F0CF5B.F8D4EF23@ispchannel.com>; from mhumm@ispchannel.com on Fri, Oct 20, 2000 at 06:03:55PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > install in order to use my printer? I've read the FAQ and even tried > what the handbook describes, but I found out it only applies to line > printers like dot matrixes and such. > have a look at the ports ghostscript, apsfilter. you might also want to try gimp-print (for ghostscript, my epson 760 works perfectly with it). http://gimp-print.sourceforge.net Philipp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5: 5:13 2000 Delivered-To: freebsd-questions@freebsd.org Received: from tori.COM (L0009P07.dipool.highway.telekom.at [62.46.65.7]) by hub.freebsd.org (Postfix) with ESMTP id 8F45637B4CF for ; Sat, 21 Oct 2000 05:05:06 -0700 (PDT) Received: (from philipp@localhost) by tori.COM (8.11.0/8.9.3) id e9LAa1h00330 for questions@freebsd.org; Sat, 21 Oct 2000 12:36:01 +0200 (CEST) (envelope-from philipp) Date: Sat, 21 Oct 2000 12:35:54 +0200 From: Philipp Huber To: questions@freebsd.org Subject: Re: Banshee Vid Card Message-ID: <20001021123554.A243@tori.mini.net> References: <014a01c03b4f$5537cf70$0500a8c0@eburwd1.vic.optushome.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <014a01c03b4f$5537cf70$0500a8c0@eburwd1.vic.optushome.com.au>; from tristan@optushome.com.au on Sat, Oct 21, 2000 at 09:09:08PM +1000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Oct 21, 2000 at 09:09:08PM +1000, Tristan wrote: > Just wanted to know how many people out there have a banshee ??? > And if you have any problems with it in XFree86 ??? > Because i have experanced problems and wanted to know if there are any fixes > and if you could list your problems etc.. my banshee runs fine with xfree86 4.0.1 (it also runs fine with 3.3.6 on netbsd, i'm sure this apllies for freebsd as well). so what was your problem? Philipp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5:10:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from be-well.ilk.org (lowellg.ne.mediaone.net [24.147.184.128]) by hub.freebsd.org (Postfix) with ESMTP id 1EA8237B4C5 for ; Sat, 21 Oct 2000 05:10:39 -0700 (PDT) Received: (from lowell@localhost) by be-well.ilk.org (8.11.1/8.11.1) id e9LCAWb21605; Sat, 21 Oct 2000 08:10:32 -0400 (EDT) (envelope-from lowell) To: freebsd-questions@freebsd.org Subject: Re: [freebsd-questions] Logrotate and 2.7 References: <200010202255.JAA81515@mail.beyondtech.net> From: Lowell Gilbert Date: 21 Oct 2000 08:10:31 -0400 In-Reply-To: marcus@redcentre.com's message of "20 Oct 2000 23:45:29 +0200" Message-ID: <444s262y4o.fsf@lowellg.ne.mediaone.net> Lines: 7 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG marcus@redcentre.com writes: > thanks for the response - I'm actually after logrotate for the > ability to email files to different receipents. I don't think > newsyslog has this functionality? You are correct. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5:14:29 2000 Delivered-To: freebsd-questions@freebsd.org Received: from be-well.ilk.org (lowellg.ne.mediaone.net [24.147.184.128]) by hub.freebsd.org (Postfix) with ESMTP id 0E3FC37B479 for ; Sat, 21 Oct 2000 05:14:26 -0700 (PDT) Received: (from lowell@localhost) by be-well.ilk.org (8.11.1/8.11.1) id e9LCEPx21631; Sat, 21 Oct 2000 08:14:25 -0400 (EDT) (envelope-from lowell) To: freebsd-questions@freebsd.org Subject: Re: IRC/oidentd problem References: <20001020221537.C53961F28@static.unixfreak.org> From: Lowell Gilbert Date: 21 Oct 2000 08:14:25 -0400 In-Reply-To: dima@unixfreak.org's message of "21 Oct 2000 00:42:18 +0200" Message-ID: <441yxa2xy6.fsf@lowellg.ne.mediaone.net> Lines: 12 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dima@unixfreak.org (Dima Dorfman) writes: > Some time ago, when I had the same problem, I wrote a patch for > pidentd to, instead of replying with a NO-USER, reply with a default > user name. Here's a comment from my web site: > > This patch adds a feature to pidentd-2.8.5 which sends back a default > username if one was not found for that particular query. I'm pretty > sure this breaks the RFC (I never bothered to read it), but I can't > see any real harm. The 'auth' implementation built into inetd implements this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5:25:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from imo-r05.mail.aol.com (imo-r05.mx.aol.com [152.163.225.5]) by hub.freebsd.org (Postfix) with ESMTP id 1231F37B4D7 for ; Sat, 21 Oct 2000 05:25:10 -0700 (PDT) Received: from celacunza@netscape.net by imo-r05.mx.aol.com (mail_out_v28.31.) id 6.f1.1a2b5c (16244); Sat, 21 Oct 2000 08:25:06 -0400 (EDT) Received: from netscape.com (aimmail11.aim.aol.com [205.188.144.203]) by air-in03.mx.aol.com (v76_r1.8) with ESMTP; Sat, 21 Oct 2000 08:25:06 -0400 Date: Sat, 21 Oct 2000 08:25:06 -0400 From: celacunza@netscape.net To: Matt Heckaman Cc: FreeBSD-QUESTIONS Subject: Re: Keyboard behaviour under FreeBSD 4.1.1-RELEASE & XFree86 4.0.1 Mime-Version: 1.0 Message-ID: <4CF6162B.041D7C39.02E614FA@netscape.net> X-Mailer: Franklin Webmailer 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi Matt. normally, this behavior is toggled with Alt-Shift-Num_Lock. -- christian. > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hello, > > I've had a problem with my keyboard off and on under X here. It does not > happen all the time, and I've been unable to determine just what causes it > to do this, or what triggers it. > > At times, my number pad on the keyboard ceases printing out numbers and > starts to move my mouse curser (very slowly) with the #5 key acting as a > highlight button on the mouse.. This is with NUMLOCK turned on. I have > found that this behaviour also happens with the NUMLOCK key off.. > > This is quite frustrating. I've never had this happen under X 3.3.6, and > since it doesn't happen all the time under 4.0.1, I'm at a loss. I most > definately need the number pad to speed up number entry. > > My XF86Config entry for the keyboard looks like: > > Section "InputDevice" > Identifier "Keyboard0" > Driver "keyboard" > Option "XkbModel" "pc104" > Option "XkbLayout" "us" > EndSection > > If anyone has seen this behaviour, could you give me a pointer on how to > fix it? Also, if you require more information; please let me know! > > Thanks in advance for your time. > > Regards, > Matt Heckaman > > * Matt Heckaman - mailto:matt@lucida.qc.ca http://www.lucida.qc.ca/ * > * GPG fingerprint - A9BC F3A8 278E 22F2 9BDA BFCF 74C3 2D31 C035 5390 * > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.3 (FreeBSD) > Comment: http://www.lucida.qc.ca/pgp > > iD8DBQE58QERdMMtMcA1U5ARAjgKAKCLi7bvyDDVNM3IFq3vPTS7zNTU6gCgzHb9 > ezkvdTew5//FrLQ/9NmldgE= > =GmMz > -----END PGP SIGNATURE----- > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5:35:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 2ADBD37B4C5 for ; Sat, 21 Oct 2000 05:35:08 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13mxrf-000PBX-00 for freebsd-questions@freebsd.org; Sat, 21 Oct 2000 13:35:07 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id NAA59546 for freebsd-questions@freebsd.org; Sat, 21 Oct 2000 13:35:07 +0100 (BST) (envelope-from jcm) Date: Sat, 21 Oct 2000 13:35:07 +0100 From: j mckitrick To: freebsd-questions@freebsd.org Subject: no access to packages at the ftp site? Message-ID: <20001021133506.A59526@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I got this error recently on the main ftp site: root:~# pkg_add -r gnucash Error: FTP Unable to get ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stable/Latest/gnucash.tgz: File unavailable (e.g., file not found, no access) pkg_add: unable to fetch `ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stable/Latest/gnucash.tgz' by URL root:~# Also, using sysinstall, the INDEX was not found. Does anyone know what causus this? What is going wrong? jcm -- "That depends on what the meaning of the word 'is' is." -President Bill Clinton "I don't know what you mean by the word 'ask.'" -CEO Bill Gates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5:43:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id E920337B4C5 for ; Sat, 21 Oct 2000 05:43:37 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id FAA10700; Sat, 21 Oct 2000 05:43:22 -0700 (PDT) From: "Otter" To: , Subject: RE: IRC/oidentd problem Date: Sat, 21 Oct 2000 08:48:41 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" 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.50.4133.2400 Importance: Normal In-Reply-To: <200010202209.RAA11279@smtp.intop.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Charlie }Schloemer }Sent: Friday, October 20, 2000 6:16 PM }To: questions@FreeBSD.ORG; doomstar@doomstar.com }Subject: Re: IRC/oidentd problem } } }On 20 Oct 00, at 10:47, doomstar@doomstar.com wrote: } }Watch your mouth about the man pages, especially if you're as }broke as you purport. } }Have you tried IRC'ing from your firewall? RIGHT! Maybe it's not for everyone. As Charlie stated, you could install ircii or bitchx or etc... but what if you prefer a GUI? Grab an X server for windows and check out http://www.defcon1.org/x11ssh.html and if you have any qustions about how to do it, write me back. I've been running mine like this for some time now. X-Win Pro, Exceed, Reflections X, the list goes on... take your pick. -Otter That's usually not the }smartest idea in the world, but if there's a problem with }ident (tcp: }113), then it may be due to your firewall blocking it. Therefore, }install ircii or bitchX and try it from there. } }Is the IRC server saying you have a problem with identd, or does it }just say you're unauthorised? BTW, if you're trying to get onto }Efnet lately, and your ISP doesn't *own* an Efnet server, you're }going to run into a lot of this; they won't allow users that aren't }special. What networks have you tried? } }What is your IP scheme? What kind of network connection do you }have? What is included in your firewall rules? How are you }invoking oidentd, and with what arguments? If the man pages }suck, what shall we say of your description of your problem? } }-Charlie } }> Hi, } }> I have a FreeBSD4.1 box set up as a firewall/natd/dhcpd }box. I have a }> windows box behind this firewall. I can get online and }use the internet from }> the windows box but I cannot connect to IRC servers. They }all say I'm not }> authorized. I installed the oidentd package and thought I }set it up according }> to the man page, restarted inetd with kill -HUP [pid] but }its still not working. I }> even created oidentd.users in /etc which I thought I did }right. The man pages }> suck. They are written for people who already know how to }do this stuff. } }> I dont know what to do and I have searched for info and }help with no luck. } }> The FreeBSD book I have doesn't even mention identd.. but }its not the latest }> book. Am I screwed? I would think its possible to do }what i'm trying to do }> but I am really confused. } }> Thanks for any help.. I would offer to pay for help but I }dont have any money. } }> Kris } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 5:54:41 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id 9E71B37B4C5 for ; Sat, 21 Oct 2000 05:54:36 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id FAA14709; Sat, 21 Oct 2000 05:47:29 -0700 (PDT) From: "Otter" To: "j mckitrick" , Subject: RE: no access to packages at the ftp site? Date: Sat, 21 Oct 2000 08:55:15 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" 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.50.4133.2400 Importance: Normal In-Reply-To: <20001021133506.A59526@dogma.freebsd-uk.eu.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of j mckitrick }Sent: Saturday, October 21, 2000 8:35 AM }To: freebsd-questions@FreeBSD.ORG }Subject: no access to packages at the ftp site? } } }I got this error recently on the main ftp site: } }root:~# pkg_add -r gnucash }Error: FTP Unable to get }ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stabl }e/Latest/gnucash.tgz: }File unavailable (e.g., file not found, no access) }pkg_add: unable to fetch }`ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stab }le/Latest/gnucash.tgz' }by URL }root:~# } }Also, using sysinstall, the INDEX was not found. Does }anyone know what }causus this? What is going wrong? } If you fire up /stand/sysinstall and click on Options. For your use (from what yoou stated above) you want the release name set to 4.1-STABLE. Space to select option, Q to save it as it says on the bottom of the page. Save it and then go to Configure; Packages to try an ftp mirror. -Otter }jcm }-- }"That depends on what the meaning of the word 'is' is." }-President Bill Clinton } }"I don't know what you mean by the word 'ask.'" -CEO Bill Gates } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 6: 8: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id A195D37B4C5 for ; Sat, 21 Oct 2000 06:07:56 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id GAA14054; Sat, 21 Oct 2000 06:01:58 -0700 (PDT) From: "Otter" To: "j mckitrick" , Subject: RE: no access to packages at the ftp site? Date: Sat, 21 Oct 2000 09:07:18 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" 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.50.4133.2400 Importance: Normal In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ok, so maybe the first sentence in my reply isn't exacly a proper sentence. It isn't a lack of knowledge of the English language; nor is it poor grammar. It's simply a lack of caffeine! Read it for what it's worth. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Otter }Sent: Saturday, October 21, 2000 8:55 AM }To: j mckitrick; freebsd-questions@FreeBSD.ORG }Subject: RE: no access to packages at the ftp site? } } } } }}-----Original Message----- }}From: owner-freebsd-questions@FreeBSD.ORG }}[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of j mckitrick }}Sent: Saturday, October 21, 2000 8:35 AM }}To: freebsd-questions@FreeBSD.ORG }}Subject: no access to packages at the ftp site? }} }} }}I got this error recently on the main ftp site: }} }}root:~# pkg_add -r gnucash }}Error: FTP Unable to get }}ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stabl }}e/Latest/gnucash.tgz: }}File unavailable (e.g., file not found, no access) }}pkg_add: unable to fetch }}`ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stab }}le/Latest/gnucash.tgz' }}by URL }}root:~# }} }}Also, using sysinstall, the INDEX was not found. Does }}anyone know what }}causus this? What is going wrong? }} }If you fire up /stand/sysinstall and click on Options. For your use }(from what yoou stated above) you want the release name set to }4.1-STABLE. Space to select option, Q to save it as it says on the }bottom of the page. Save it and then go to Configure; Packages to try }an ftp mirror. }-Otter } }}jcm }}-- }}"That depends on what the meaning of the word 'is' is." }}-President Bill Clinton }} }}"I don't know what you mean by the word 'ask.'" -CEO Bill Gates }} }} }}To Unsubscribe: send mail to majordomo@FreeBSD.org }}with "unsubscribe freebsd-questions" in the body of the message } } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 6:31: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 90A5837B4CF for ; Sat, 21 Oct 2000 06:30:57 -0700 (PDT) Received: from parish ([62.255.97.4]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001021133055.RCNG16640.mta01-svc.ntlworld.com@parish>; Sat, 21 Oct 2000 14:30:55 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e9LDUGG00350; Sat, 21 Oct 2000 14:30:16 +0100 (BST) (envelope-from mark) Date: Sat, 21 Oct 2000 14:30:16 +0100 From: Mark Ovens To: Dima Dorfman Cc: Eric Osterweil , questions@freebsd.org Subject: Re: Why does chflags cause make install to fail? Message-ID: <20001021143016.A255@parish> References: <20001021014435.B258@parish> <20001021034844.EEB7E1F1F@static.unixfreak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20001021034844.EEB7E1F1F@static.unixfreak.org>; from dima@unixfreak.org on Fri, Oct 20, 2000 at 08:48:44PM -0700 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Oct 20, 2000 at 08:48:44PM -0700, Dima Dorfman wrote: > [ Charset ISO-8859-1 unsupported, converting... ] > > On Fri, Oct 20, 2000 at 03:41:19AM +0000, Eric Osterweil wrote: > > > > > > > > > I needed to recompile my kernal (to enable natd) in freeBSD 4.1.1-stable, > > > and when I run make install I get an error telling me that the "chflags > > > noschg /kernal" command is not allowed. Then the "mv /kernal /kernal.old" > > > fails and dumps the install process. > > > > > > I cannot find any reference to this on the freeBSD.org site. I also tried > > > to run "chflags nouchg /kernal", but it also fails. Is there something else > > ^^^^^^ > > > > Is this a typo? it should be ``noschg''. > > I think he really meant nouchg. It shouldn't be set on /kernel, but I > guess he wanted to make sure. He said he already tried unsetting > noschg in the previous paragraph. > > > chflags(1) will only work if you are root, you are not trying to run > > it as a normal user are you? > > Chflags works just fine as a normal user: > I meant in the context of /kernel. > dima@lambda% id > uid=1000(dima) gid=100(users) groups=100(users), 0(wheel) > dima@lambda% touch test > dima@lambda% chflags uchg test > dima@lambda% rm -f test > rm: test: Operation not permitted > dima@lambda% chflags nouchg test > dima@lambda% rm test > > You certainly can't (un)set schg as a regular user, but most flags can > be (un)set by the owner. See `man 1 chflags` for details. > > Regards > > -- > Dima Dorfman > Finger dima@unixfreak.org for my public PGP key. > > "If you understand everything, you must be misinformed." > -- Japanese Proverb -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 7: 5:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.rdc1.il.home.com (mail2.rdc1.il.home.com [24.2.1.77]) by hub.freebsd.org (Postfix) with ESMTP id D98B137B4C5 for ; Sat, 21 Oct 2000 07:05:47 -0700 (PDT) Received: from c151460a ([24.17.229.11]) by mail2.rdc1.il.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001021140547.IRN6811.mail2.rdc1.il.home.com@c151460a>; Sat, 21 Oct 2000 07:05:47 -0700 Message-ID: <0ace01c03b91$ede246a0$0201a8c0@alton1.il.home.com> From: "Victor R. Cardona" To: "Tristan" Cc: References: <014a01c03b4f$5537cf70$0500a8c0@eburwd1.vic.optushome.com.au> Subject: Re: Banshee Vid Card Date: Sat, 21 Oct 2000 14:05:51 -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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I had some problems with mine as well. I still have to set my monitor up differently then I do in Linux. I also had to add the following to /etc/rc.conf in order to be able to return to the console after exiting X. allscreens_flags="80x30" HTH Victor ----- Original Message ----- From: "Tristan" To: Sent: Saturday, October 21, 2000 6:09 AM Subject: Banshee Vid Card > Just wanted to know how many people out there have a banshee ??? > And if you have any problems with it in XFree86 ??? > Because i have experanced problems and wanted to know if there are any fixes > and if you could list your problems etc.. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 7:29:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail.isg.siue.edu (mail.isg.siue.edu [146.163.5.4]) by hub.freebsd.org (Postfix) with ESMTP id 21B1037B4C5 for ; Sat, 21 Oct 2000 07:29:48 -0700 (PDT) Received: from cougar.isg.siue.edu (cougar [146.163.5.29]) by mail.isg.siue.edu (8.9.1/8.9.1) with ESMTP id JAA28393 for ; Sat, 21 Oct 2000 09:29:21 -0500 (CDT) Received: (from nobody@localhost) by cougar.isg.siue.edu (8.9.1/8.9.1) id JAA03676; Sat, 21 Oct 2000 09:29:21 -0500 (CDT) Date: Sat, 21 Oct 2000 09:29:21 -0500 (CDT) From: vcardon@siue.edu Message-Id: <200010211429.JAA03676@cougar.isg.siue.edu> X-Authentication-Warning: cougar.isg.siue.edu: nobody set sender to vcardon@siue.edu using -f To: freebsd-questions@freebsd.org Reply-To: vcardon@siue.edu MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP3 Imap webMail Program 2.0.11 X-Originating-IP: 24.17.229.11 Subject: SOLVED: /etc/hosts being ignored Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have discovered the the domain name I used internally is now owned by someone. Changing my internal domain name has fixed the problem for the moment. I am still not sure why the resolver even went to bind. I have the appropriate entries in /etc/hosts, and host.conf is configured to use hosts first. I would still be interested in any ideas people on the list might have. Thanks, Victor Cardona To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 7:49: 0 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rh62.subzero.per.sg (qtas0328.singnet.com.sg [165.21.56.158]) by hub.freebsd.org (Postfix) with ESMTP id 4EE5337B479 for ; Sat, 21 Oct 2000 07:48:57 -0700 (PDT) Received: from rh62.subzero.per.sg (IDENT:chankp@rh62 [127.0.0.1]) by rh62.subzero.per.sg (8.9.3/8.9.3) with SMTP id WAA00872 for ; Sat, 21 Oct 2000 22:49:48 +0800 From: Lionel Chan Reply-To: kinpoonc@singnet.com.sg To: freebsd-questions@FreeBSD.ORG Subject: FreeBSD 4.1.1 & sendmail Date: Sat, 21 Oct 2000 22:42:56 +0800 X-Mailer: KMail [version 1.0.29] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00102122494800.00833@rh62.subzero.per.sg> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just upgraded from 4.1 to 4.1.1. Everytime when 4.1.1 boots up the system hangs @ the point when it starts sendmail. It will only come out of it after a couple of minutes and then continue with the booting. I don't have this problem with 4.0 nor 4.1. Anyone having the same problem? Any pointers here? Tks very much. -- CHAN Kin Poon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 7:53:37 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lerami.lerctr.org (lerami.lerctr.org [207.158.72.11]) by hub.freebsd.org (Postfix) with ESMTP id 61FA837B479 for ; Sat, 21 Oct 2000 07:53:34 -0700 (PDT) Received: (from ler@localhost) by lerami.lerctr.org (8.11.1/8.11.1/20000901) id e9LErJp03445; Sat, 21 Oct 2000 09:53:19 -0500 (CDT) (envelope-from ler) Date: Sat, 21 Oct 2000 09:53:19 -0500 From: Larry Rosenman To: Lionel Chan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.1.1 & sendmail Message-ID: <20001021095319.A3148@lerami.lerctr.org> References: <00102122494800.00833@rh62.subzero.per.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: <00102122494800.00833@rh62.subzero.per.sg>; from kinpoonc@singnet.com.sg on Sat, Oct 21, 2000 at 10:42:56PM +0800 X-Mailer: Mutt http://www.mutt.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Generally, this is DNS problems. Check that the machine can figure out it's name. Also, stuff moved around. Larry * Lionel Chan [001021 09:49]: > Just upgraded from 4.1 to 4.1.1. Everytime when 4.1.1 boots up the system > hangs @ the point when it starts sendmail. It will only come out of it after a > couple of minutes and then continue with the booting. I don't have this > problem with 4.0 nor 4.1. Anyone having the same problem? Any pointers here? > Tks very much. > > -- > CHAN Kin Poon > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 (voice) Internet: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 7:54:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gus33.homeip.net (hybrid-024-221-140-147.az.sprintbbd.net [24.221.140.147]) by hub.freebsd.org (Postfix) with ESMTP id 4F93837B4CF for ; Sat, 21 Oct 2000 07:54:10 -0700 (PDT) Received: from localhost (kdavey@localhost [127.0.0.1]) by gus33.homeip.net (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id HAA03874; Sat, 21 Oct 2000 07:36:12 -0700 Date: Sat, 21 Oct 2000 07:36:12 -0700 (MST) From: Keith Davey To: Lionel Chan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.1.1 & sendmail In-Reply-To: <00102122494800.00833@rh62.subzero.per.sg> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have seen this in both FreeBSD and Linux systems when the routing table is bad and/or Sendmail can not find a DNS server. Basicly you are waiting for it to timeout. I would check your network settings. Keith Davey Tivoli Systems On Sat, 21 Oct 2000, Lionel Chan wrote: > Just upgraded from 4.1 to 4.1.1. Everytime when 4.1.1 boots up the system > hangs @ the point when it starts sendmail. It will only come out of it after a > couple of minutes and then continue with the booting. I don't have this > problem with 4.0 nor 4.1. Anyone having the same problem? Any pointers here? > Tks very much. > > -- > CHAN Kin Poon > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 9: 5: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 0F88C37B479 for ; Sat, 21 Oct 2000 09:05:01 -0700 (PDT) Received: from ispchannel.com ([206.31.81.146]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001021160733.SDED382.smtp2a@ispchannel.com>; Sat, 21 Oct 2000 09:07:33 -0700 Message-ID: <39F1BEB0.7B3E8741@ispchannel.com> Date: Sat, 21 Oct 2000 11:05:04 -0500 From: Mark Hummel Organization: Innovative Solutions X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Philipp Huber , FSD Subject: Re: Ink Jet Printing in FBSD??? References: <39F0CF5B.F8D4EF23@ispchannel.com> <20001021123817.B243@tori.mini.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Philipp, Thanks for the reply. I installed apsfilter (which automatically installed ghostscript and several other print utilities and fonts). It took more than 2 hours to download (cable modem at 50KBps) and compile on my 200Mhz AMD computer running FBSD4.1.1R and KDE destop. Now that it's installed, what do I do to print? I brought up the KDE word processor or notepad program, but my Lexmark did nothing. Mark Philipp Huber wrote: > On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > > install in order to use my printer? I've read the FAQ and even tried > > what the handbook describes, but I found out it only applies to line > > printers like dot matrixes and such. > > > > have a look at the ports ghostscript, apsfilter. you might also want to try > gimp-print (for ghostscript, my epson 760 works perfectly with it). > http://gimp-print.sourceforge.net > > Philipp > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 9:22: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mx-a.qnet.com (mx-a.qnet.com [209.221.198.11]) by hub.freebsd.org (Postfix) with ESMTP id 5524437B4C5 for ; Sat, 21 Oct 2000 09:22:05 -0700 (PDT) Received: from cello.qnet.com (root@cello.qnet.com [209.221.198.10]) by mx-a.qnet.com (8.9.1a/8.9.3) with ESMTP id JAA29037; Sat, 21 Oct 2000 09:21:59 -0700 (PDT) Received: from STORK (56k-socal-03-16.dial.qnet.com [209.221.198.175]) by cello.qnet.com (8.9.0/8.9.1) with SMTP id JAA23812; Sat, 21 Oct 2000 09:17:53 -0700 (PDT) From: "Heredity Choice" To: "Philipp Huber" , Subject: RE: Ink Jet Printing in FBSD??? Date: Sat, 21 Oct 2000 09:13:21 -0700 Message-ID: <000a01c03b79$d70737f0$afc6ddd1@STORK> 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: <20001021123817.B243@tori.mini.net> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.5600 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I also have a Lexmark 5700 printer and wrote to Lexmark asking how it can be used with FreeBSD. They said it is "host dependant," meaning it is a WINprinter that requires a driver which utilizes the computer's CPU and cannot be used under FreeBSD. This is true of all Lexmark inkjet printers but not the Lexmark Optra, which is a laser printer. I think the only way to print to a Lexmark 5700 from FreeBSD is through a Windows printserver. There are some Hewlett Packard inkjet printers, including all the older ones, which work with DOS, and will probably work with FreeBSD. A Macintosh printer might do well. You can also get some leads by searching on the Internet for "Linux printers." As for the Lexmark 5700, it can be used for a planter or a rather cumbersome paperweight. Paul Smith > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Philipp Huber > Sent: Saturday, 21 October, 2000 03:38 AM > To: questions@FreeBSD.ORG > Subject: Re: Ink Jet Printing in FBSD??? > > > On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > > install in order to use my printer? I've read the FAQ and even tried > > what the handbook describes, but I found out it only applies to line > > printers like dot matrixes and such. > > > > have a look at the ports ghostscript, apsfilter. you might also > want to try > gimp-print (for ghostscript, my epson 760 works perfectly with it). > http://gimp-print.sourceforge.net > > Philipp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 9:36: 8 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 5E36637B479; Sat, 21 Oct 2000 09:36:02 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Sat, 21 Oct 2000 12:36:16 -0400 Message-ID: <39F1C652.9ADA7EB0@tellurian.com> Date: Sat, 21 Oct 2000 12:37:38 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: Tony Fleisher Cc: FreeBSD questions , freebsd-hackers@FreeBSD.ORG Subject: Re: Routing issue with cable modem References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I tried tcpdump, and it's reporting the same malformed MAC and same erroneous protocol type. I guess that means, that the packets are trully bad... correct ? I will try rebuilding my kernel once again. I would like to track this problem to the source, I guess stdlib is where I would find the basic functions the build packets and throw them onto the net. I would appreciate any help as to which files/subroutines I should look into. Also, would be great to get some help from someone that knows their way around core system sources :) (I've never been there before) Tony Fleisher wrote: > Hello, > > Have you perhaps updated to a new kernel since you installed ethereal? > I seem to recall seing similiar situations to this when some data > structures changed sizes. > > Is "/usr/sbin/tcpdump -e" showing this same MAC address corruption > you describe? > > If not, I would recommend rebuilding ethereal. > > TOny. > > On Fri, 20 Oct 2000, Marko Ruban wrote: > > > New issue seems to be at hand... > > > > I set the alias for the interface to be the gateway IP (10.17.56.12), and then I was > > able to add that as my default gateway. Not sure why aliasing wouldn't work with > > 10.17.56.11 or some other IP in that subnet. > > > > I tried to ping the DNS server after that, and watched hundreds of corrupt packets > > get sent out with no replies. > > So my new question is, which part of the system actually builds the packets ? Any > > way to debug or log that process ? > > > > Here's an example taken from ethereal output.... (view with proportional font) > > --------------------------------------------------------- > > Frame 6 (102 on wire, 102 captured) > > Arrival Time: Oct 20, 2000 16:42:38.2715 > > Time delta from previous packet: 0.000071 seconds > > Frame Number: 6 > > Packet Length: 102 bytes > > Capture Length: 102 bytes > > Ethernet II > > Destination: 02:00:00:00:52:54 (02:00:00:00:52:54) > > Source: 05:f4:21:3f:52:54 (05:f4:21:3f:52:54) > > Type: Unknown (0x05f4) > > Data (88 bytes) > > > > 0 0200 0000 5254 05f4 213f 5254 05f4 213f ....RT..!?RT..!? > > 10 0800 4500 0054 13fa 0000 fa01 97dc 0a11 ..E..T.......... > > 20 380c cfac 0309 0800 c1f0 6101 0000 3eae 8.........a...>. > > 30 f039 b722 0400 0809 0a0b 0c0d 0e0f 1011 .9."............ > > 40 1213 1415 1617 1819 1a1b 1c1d 1e1f 2021 .............. ! > > 50 2223 2425 2627 2829 2a2b 2c2d 2e2f 3031 "#$%&'()*+,-./01 > > 60 3233 3435 3637 234567 > > --------------------------------------------------------- > > > > Why I think this packet is malformed..... > > > > First of all, protocol type Unknown (0x05f4) looks definitely bad. > > Secondly, protocol type looks like part of my NICs MAC address (52:54:05:f4:21:3f > > according to ifconfig, which translates into hex: 0x5254 05f4 213f). > > Thirdly, source address decoded by ethereal (and probably by any other packet > > processor) is wrong (first two bytes are carried over to the other side). > > > > Now, keeping all that in mind, lets do a pattern match on the REAL MAC address in > > hex dump of the packet. > > HEY, the source address actually starts four bytes later than it should, thus > > shifting the TRUE protocol type (0x0800 = IP) as well. > > > > First six bytes are the destination MAC, then come the EVIL 4 bytes, followed by 6 > > bytes of source MAC. > > I don't know what's going on, but looks pretty bad, yet simple on the hex level :) > > > > Any ideas ? > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-hackers" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 9:39: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from icc.cgu.chel.su (gw.csu.ru [195.54.14.5]) by hub.freebsd.org (Postfix) with ESMTP id 0789637B667 for ; Sat, 21 Oct 2000 09:38:48 -0700 (PDT) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.9.3/8.9.2) with ESMTP id WAA45594 for ; Sat, 21 Oct 2000 22:38:16 +0600 (ESS) (envelope-from ilia@cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.9.3/8.8.6) with UUCP id WAA39405 for questions@FreeBSD.ORG; Sat, 21 Oct 2000 22:37:49 +0600 (ESS) Received: from localhost (localhost.cgu.chel.su [127.0.0.1]) by jane.cgu.chel.su (8.11.0/8.9.2) with ESMTP id e9LGaIh02398 for ; Sat, 21 Oct 2000 22:36:19 +0600 (ESS) (envelope-from ilia@cgu.chel.su) Date: Sat, 21 Oct 2000 22:36:17 +0600 (ESS) From: Ilia Chipitsine To: questions@FreeBSD.ORG Subject: user ppp & "urgent" ports Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sirs, what ports are "urgent by default" for user-ppp ? where can I read about it ? Regards, (=EE=C1=C9=CC=D5=DE=DB=C9=C5 =D0=CF=D6=C5=CC=C1=CE=C9=D1) Ilia Chipitsine (=E9=CC=D8=D1 =FB=C9=D0=C9=C3=C9=CE) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 10: 3:59 2000 Delivered-To: freebsd-questions@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id C03CD37B4C5 for ; Sat, 21 Oct 2000 10:03:57 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13n23o-00026p-00; Sat, 21 Oct 2000 18:03:56 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id SAA61073; Sat, 21 Oct 2000 18:03:56 +0100 (BST) (envelope-from jcm) Date: Sat, 21 Oct 2000 18:03:55 +0100 From: j mckitrick To: Otter Cc: freebsd-questions@FreeBSD.ORG Subject: Re: no access to packages at the ftp site? Message-ID: <20001021180355.A61043@dogma.freebsd-uk.eu.org> References: <20001021133506.A59526@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from otterr@telocity.com on Sat, Oct 21, 2000 at 08:55:15AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Oct 21, 2000 at 08:55:15AM -0400, Otter wrote: | If you fire up /stand/sysinstall and click on Options. For your use | (from what yoou stated above) you want the release name set to | 4.1-STABLE. Space to select option, Q to save it as it says on the So typing 'none' here doesn't just get the current list? jcm -- "That depends on what the meaning of the word 'is' is." -President Bill Clinton "I don't know what you mean by the word 'ask.'" -CEO Bill Gates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 10:34:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 57B4D37B4CF for ; Sat, 21 Oct 2000 10:34:50 -0700 (PDT) Received: (qmail 22850 invoked from network); 21 Oct 2000 19:34:47 +0200 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 21 Oct 2000 19:34:47 +0200 From: Mark Rowlands To: Tim McMillen , freebsd-questions@FreeBSD.ORG Subject: Re: errors installing KDE-1.94 Date: Sat, 21 Oct 2000 19:28:58 +0200 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: In-Reply-To: MIME-Version: 1.0 Message-Id: <00102119304800.00512@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Oct 2000, Tim McMillen wrote: > Hello, > > I had bought 4.1 release and just upgraded to 4.1.1 last night > after downloading the ISO. I decided to try to install KDE-1.94 beta. > pkg_add kde_1.94.tgz told me the other packages I would need. I ftp'd > all those. I tried again and got numerous errors about needing > XFree86-3.3.6_2. I had 3.3.5 apparently installed so I used > /stand/sysinstall to upgrade to 3.3.6 off the 4.1.1 release cd. I got > the X server working. > trying pkg_add kde_1.94.tgz again gives more errors: > > pkg_add: could not find package XFree86-3.3.6_2 ! > pkg_add: autoload of dependency `/usr/home/tim/Mesa-3.2.1_1.tgz' failed! > and numerous more like it. > Of course it can't find the package. I couldn't either! :) > I guess I find it strange that there is a package available for all sorts > of oddities (and for XFree4.1something) but not for 3.3.6_2. Is there one > coming soon and that is why kde-1.94 expects a package? > Anyway, could anybody show me a work around or a way to get 1.94 > installed? Or can show me what I did wrong? I'm pretty much a moron with > make but I really like how slick the package system really is. Everything > else I have tried has installed just great. > Thank you, > > Tim did you cvsup your ports collection? pkg_version ftp://ftp.FreeBSD.org/pub/FreeBSD/branches/-current/ports/INDEX will compare your installed packages against the current list > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- These are just my opinions you are free to disagree please do so quietly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 10:40:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 8A4AF37B479 for ; Sat, 21 Oct 2000 10:40:45 -0700 (PDT) Received: (qmail 23757 invoked from network); 21 Oct 2000 19:40:44 +0200 Received: from bb-62-5-7-17.bb.tninet.se (HELO marbsd.tninet.se) (62.5.7.17) by mail.telenordia.se with SMTP; 21 Oct 2000 19:40:44 +0200 From: Mark Rowlands To: freebsd-questions@freebsd.org Subject: make world procedure Date: Sat, 21 Oct 2000 19:32:46 +0200 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00102119364401.00512@marbsd.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG running 4.1.1 -stable After cvsupping and performing the following make buildworld make buildkernel KERNEL=MYKERNEL make installkernel KERNEL=MYKERNEL make world mergemaster after subsequent cvsups is it still necessary to make buildworld? it may be dumb question but after reading various bits of documentation I am still in some doubt. -- These are just my opinions you are free to disagree please do so quietly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 10:42:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from post.webmailer.de (natmail2.webmailer.de [192.67.198.65]) by hub.freebsd.org (Postfix) with ESMTP id 6A4C737B479 for ; Sat, 21 Oct 2000 10:42:20 -0700 (PDT) Received: from 62.157.61.156 (p3E9D3D9C.dip.t-dialin.net [62.157.61.156]) by post.webmailer.de (8.9.3/8.8.7) with ESMTP id TAA09250 for ; Sat, 21 Oct 2000 19:42:13 +0200 (MET DST) Date: Fri, 20 Oct 2000 18:39:00 +0200 From: bk X-Mailer: The Bat! (v1.45) Personal Reply-To: bk X-Priority: 3 (Normal) Message-ID: <14122691348.20001020183900@x-itec.de> To: freebsd-questions@FreeBSD.ORG Subject: Re: Root-Like telnet account In-reply-To: <007401c036f8$10325fe0$86e1e440@lmc.ericsson.se> References: <007401c036f8$10325fe0$86e1e440@lmc.ericsson.se> Mime-Version: 1.0 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 Travor, Monday, October 16, 2000, 12:34:20 AM, you wrote: >> Hi, >> >> I just installed FreeBSD on an older system I have, just to try it out, MG> and would like to be able to telnet into it, and configure things remotely. MG> Is is possible to make it so that I can login from root, or that another MG> account has many of the same pr >> velages as root, such as modifying configuration files? look at /etc/ttys and add "secure" on the terminal you want to connect to. if you do not know the right termial, login with a normal account remotely and use the command "w" to see who is online. Example: localhost# w 8:46PM up 1:11, 2 users, load averages: 0.01, 0.00, 0.00 USER TTY FROM LOGIN@ IDLE WHAT root v0 - 7:36PM 1:08 -csh (csh) blabla p0 master 8:39PM - w i am looging in as root remotely from v0 on the console and from p0 remotely. so i have to add secure to the ttyp0 pseudo terminal. If you want to keep your bsd system secure, i suggest you not to allow root to login remotely. Create a user with adduser command and put this user into the group "wheel". login with this user and enter "su" to switch to root account. This is more secure, because an external attacker do not know what account is required to logon or to be root. >> >> Also, when I login to through telnet, it connects, and sits for about 1-2 MG> minutes before I get a login dialog. After this, data transfers very this is mostly a resolver "problem" (not a real one). Look in your /etc/hosts and add pseudo names of your client(s). for example, if you want to connect from 192.168.0.2 to your freebsd server 192.168.0.99 then you add on your freebsd server this line 192.168.0.2 master master is a pseudonym only for the freebsd resolver. all connects are tried to resolv to a hostname, if there is no nameserver available and if there is no hostname, it seems to block somewhere. This is a normal and will stop i think if you modify/create your /etc/hosts. -- Boris Köster To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 10:58:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gate.tellurian.net (gate.tellurian.net [216.182.1.1]) by hub.freebsd.org (Postfix) with ESMTP id 0A03B37B6D2 for ; Sat, 21 Oct 2000 10:58:16 -0700 (PDT) Received: from tellurian.com (unverified [208.59.162.242]) by gate.tellurian.net (Rockliffe SMTPRA 4.2.4) with ESMTP id ; Sat, 21 Oct 2000 13:58:35 -0400 Message-ID: <39F1D998.ABC769CB@tellurian.com> Date: Sat, 21 Oct 2000 13:59:52 -0400 From: Marko Ruban X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en,uk MIME-Version: 1.0 To: Mark Rowlands Cc: freebsd-questions@freebsd.org Subject: Re: make world procedure References: <00102119364401.00512@marbsd.tninet.se> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG - cvsup gets the sources (.c .h) - buildworld makes objects and binaries (executables) - installworld copies executables to their proper locations within the system Mark Rowlands wrote: > running 4.1.1 -stable > After cvsupping and performing the following > make buildworld > make buildkernel KERNEL=MYKERNEL > make installkernel KERNEL=MYKERNEL > make world Haven't heard of "make world", I think this should be "make installworld", but not sure. > > mergemaster > > after subsequent cvsups is it still necessary to make buildworld? > > it may be dumb question but after reading various bits of documentation I am > still in some doubt. > > -- > These are just my opinions > you are free to disagree > please do so quietly > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:20:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from Socrates.i-pi.com (Socrates.i-pi.com [198.49.217.5]) by hub.freebsd.org (Postfix) with ESMTP id 3DD0F37B4C5 for ; Sat, 21 Oct 2000 11:20:27 -0700 (PDT) Received: (from ingham@localhost) by Socrates.i-pi.com (8.11.0/8.9.3) id e9LIKD806092; Sat, 21 Oct 2000 12:20:13 -0600 (MDT) (envelope-from ingham) Date: Sat, 21 Oct 2000 12:20:12 -0600 From: Kenneth Ingham To: Marko Ruban Cc: Mark Rowlands , freebsd-questions@FreeBSD.ORG Subject: Re: make world procedure Message-ID: <20001021122012.A5974@Socrates.i-pi.com> References: <00102119364401.00512@marbsd.tninet.se> <39F1D998.ABC769CB@tellurian.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <39F1D998.ABC769CB@tellurian.com>; from marko@tellurian.com on Sat, Oct 21, 2000 at 01:59:52PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Oct 21, 2000 at 01:59:52PM -0400, Marko Ruban wrote: > Haven't heard of "make world", I think this should be "make installworld", but > not sure. make world does what make buildworld and make installworld does; in other words, it is the two combined. By having them split, you can build on one machine and then through the magic of NFS do the install part on multiple machines. Kenneth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:25:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mtu.ru (ns.mtu.ru [195.34.32.10]) by hub.freebsd.org (Postfix) with ESMTP id 4199037B479 for ; Sat, 21 Oct 2000 11:25:32 -0700 (PDT) X-Recipient: questions@freebsd.org Received: from igor (ppp103-116.dialup.mtu-net.ru [212.188.103.116]) by mtu.ru (Postfix) with SMTP id E39A8752C for ; Sat, 21 Oct 2000 22:25:25 +0400 (MSD) (envelope-from igor-kuptsov@mtu-net.ru) Message-ID: <000a01c03b8c$2c1c8260$7467bcd4@igor> From: "Igor Kuptsov" To: Subject: FreeBSD 4.0 Date: Sat, 21 Oct 2000 22:20:03 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 5.00.2417.2000 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG FreeBSD 4.0 How to automate process of count of a entering traffic on the user? It is required that on excess of a limit, firewall locked IP and it is necessary precisely to know volume of a traffic in mbytes. Which software needs to be used for such purposes? Trafd does not give required result. ______________________________________ Best Regards, Igor Kuptsov igor-kuptsov@mtu-net.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:25:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mtu.ru (ns.mtu.ru [195.34.32.10]) by hub.freebsd.org (Postfix) with ESMTP id 4B4BE37B4D7 for ; Sat, 21 Oct 2000 11:25:35 -0700 (PDT) X-Recipient: questions@freebsd.org Received: from igor (ppp103-116.dialup.mtu-net.ru [212.188.103.116]) by mtu.ru (Postfix) with SMTP id 764EC755F for ; Sat, 21 Oct 2000 22:25:27 +0400 (MSD) (envelope-from igor-kuptsov@mtu-net.ru) Message-ID: <000b01c03b8c$2cf6b5c0$7467bcd4@igor> From: "Igor Kuptsov" To: Subject: Date: Sat, 21 Oct 2000 22:23:32 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 5.00.2417.2000 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG FreeBSD 4.0 As it is possible to set up FreeBSD on work with DVB ( SkyNet2 ) card for work in Internet through europeonline? ______________________________________ Best Regards, Igor Kuptsov igor-kuptsov@mtu-net.ru http://wildwindnet.chat.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:28:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay2.inwind.it (relay2.inwind.it [212.141.53.73]) by hub.freebsd.org (Postfix) with ESMTP id D87C737B479 for ; Sat, 21 Oct 2000 11:28:24 -0700 (PDT) Received: from bartequi.ottodomain.org (62.98.154.197) by relay2.inwind.it (5.1.046) id 39CB09790075CF74; Sat, 21 Oct 2000 20:24:25 +0200 From: Salvo Bartolotta Date: Sat, 21 Oct 2000 19:25:49 GMT Message-ID: <20001021.19254900@bartequi.ottodomain.org> Subject: Re: gnucash and odd port behavior To: j mckitrick Cc: freebsd-questions@FreeBSD.ORG References: <20001020114718.A44597@dogma.freebsd-uk.eu.org> <20001020.20213100@bartequi.ottodomain.org> <20001021024109.A52139@dogma.freebsd-uk.eu.org> X-Mailer: SuperCalifragilis X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/21/00, 2:41:09 AM, j mckitrick wrote regarding Re: gnucash and odd port behavior: > | The recipe, in short, is: **add** a suitable "date" tag to your > | ports-supfile, as per the instructions in cvsup(1). > The '.' tag has worked fine until now. Why does it need to change? Actually, it does not :-) You should use the '.' tag AND a suitable date tag (cf cvsup(1) for the exact format) for your **first** update operation only. By "suitable" date I mean a date close to the date of "shipping" of your ports tree. The operation described above makes sense if you have reinstalled your ports tree; more precisely, if you have an *initial* ports tree AND no checkouts file. Your first cvsup operation will only create a checkouts file. If you have looked at John Polstra's considerations, you can see the sense and purpose of the foregoing. You make cvsup check out (ideally/approximately) what you already have: cvsup writes a checkouts file describing your collection; which checkouts file allows cvsup to operate correctly in all subsequent updates (ie no stale files & C). Needless to say, in all your subsequent updates you will be using the *normal* supfile. I have always been "philologically"/paranoidly correct (if not politically correct :-), and I have never seen stale file problems & C. HTH, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:38:19 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.tetronsoftware.com (ns1.tetronsoftware.com [64.217.1.41]) by hub.freebsd.org (Postfix) with ESMTP id 6EBC637B4CF for ; Sat, 21 Oct 2000 11:38:16 -0700 (PDT) Received: from ns1.tetronsoftware.com (ns1.tetronsoftware.com [64.217.1.41]) by ns1.tetronsoftware.com (8.11.0/8.9.3) with ESMTP id e9LIc9l16863; Sat, 21 Oct 2000 13:38:14 -0500 (CDT) (envelope-from zeus@tetronsoftware.com) Date: Sat, 21 Oct 2000 13:38:09 -0500 (CDT) From: Gene Harris To: Mark Hummel Cc: freebsd-questions@freebsd.org Subject: Re: Ink Jet Printing in FBSD??? In-Reply-To: <39F1BEB0.7B3E8741@ispchannel.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just wanted to check, but have you set up an entry in your /etc/printcap file? I scanned the Lexmark web site, and the printer can be used with DOS, which means it is probably not a "WINprinter". The web site recommended telling your DOS application to print to a DeskJet 500C. This is good news, as you might look for DeskJet 500C support in the mailing list archives and on the FreeBSD site. Also, have you entered the following command to make sure your printer is connected correctly? lptest > /dev/lpt0 You should see a rotating pattern of text on your printer, if you are lucky. At the very least, your printer's busy light should at least show some activity, even if nothing prints. If you've done all the work of making sure your printcap is correct and the spooler directory has been created, then forgive me for wasting your time. Gene On Sat, 21 Oct 2000, Mark Hummel wrote: > Philipp, > > Thanks for the reply. I installed apsfilter (which automatically installed > ghostscript and several other print utilities and fonts). It took more than 2 > hours to download (cable modem at 50KBps) and compile on my 200Mhz AMD computer > running FBSD4.1.1R and KDE destop. > > Now that it's installed, what do I do to print? I brought up the KDE word > processor or notepad program, but my Lexmark did nothing. > > Mark > > Philipp Huber wrote: > > > On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > > > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > > > install in order to use my printer? I've read the FAQ and even tried > > > what the handbook describes, but I found out it only applies to line > > > printers like dot matrixes and such. > > > > > > > have a look at the ports ghostscript, apsfilter. you might also want to try > > gimp-print (for ghostscript, my epson 760 works perfectly with it). > > http://gimp-print.sourceforge.net > > > > Philipp > > > > 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 > Tetron Software, LLC http://www.tetronsoftware.com FreeBSD Apache PostgreSQL Oracle 8/8i Windows 95/98/NT Visual C Visual Basic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:39: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 51B2D37B479 for ; Sat, 21 Oct 2000 11:39:02 -0700 (PDT) Received: from breakout.gpcc.itd.umich.edu (smtp@breakout.gpcc.itd.umich.edu [141.211.2.141]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id OAA05358; Sat, 21 Oct 2000 14:38:57 -0400 (EDT) Received: from localhost (timcm@localhost) by breakout.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id OAA27569; Sat, 21 Oct 2000 14:38:57 -0400 (EDT) Date: Sat, 21 Oct 2000 14:38:56 -0400 (EDT) From: Tim McMillen X-Sender: timcm@breakout.gpcc.itd.umich.edu To: Mark Rowlands Cc: freebsd-questions@FreeBSD.ORG Subject: Re: errors installing KDE-1.94 In-Reply-To: <00102119304800.00512@marbsd.tninet.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Oct 2000, Mark Rowlands wrote: > On Sat, 21 Oct 2000, Tim McMillen wrote: > > pkg_add: could not find package XFree86-3.3.6_2 ! > > pkg_add: autoload of dependency `/usr/home/tim/Mesa-3.2.1_1.tgz' failed! > > and numerous more like it. > > Of course it can't find the package. I couldn't either! :) > > I guess I find it strange that there is a package available for all sorts > > of oddities (and for XFree4.1something) but not for 3.3.6_2. Is there one > > coming soon and that is why kde-1.94 expects a package? > > Tim > did you cvsup your ports collection? I'll try that as soon as I figure out how. I've never done it. > pkg_version ftp://ftp.FreeBSD.org/pub/FreeBSD/branches/-current/ports/INDEX > will compare your installed packages against the current list They all check out as the newest. But since XFree86-3.3.6_2 is not a package I don't see how that would help. Also since kde-1.94 expects a XFree86-3.3.6_2 package how will cvsup'ing the ports (even if that updates Xfree to 3.3.6_2) fix that? Thanks for the pointers, any more would be muchly appreciated. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:40:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from ns1.tetronsoftware.com (ns1.tetronsoftware.com [64.217.1.41]) by hub.freebsd.org (Postfix) with ESMTP id CFB6537B4CF for ; Sat, 21 Oct 2000 11:40:43 -0700 (PDT) Received: from ns1.tetronsoftware.com (ns1.tetronsoftware.com [64.217.1.41]) by ns1.tetronsoftware.com (8.11.0/8.9.3) with ESMTP id e9LIebl16879; Sat, 21 Oct 2000 13:40:37 -0500 (CDT) (envelope-from zeus@tetronsoftware.com) Date: Sat, 21 Oct 2000 13:40:37 -0500 (CDT) From: Gene Harris To: Heredity Choice Cc: Philipp Huber , questions@FreeBSD.ORG Subject: RE: Ink Jet Printing in FBSD??? In-Reply-To: <000a01c03b79$d70737f0$afc6ddd1@STORK> 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 not so sure of your assertion. A quick check of the Lexmark web site says that the 5700 emulates PCL3 and that it can be used with DOS applications. They recommend that DOS applications use a DeskJet 500C driver to print to the printer. The printer also appears to be supported under OS/2. Gene On Sat, 21 Oct 2000, Heredity Choice wrote: > I also have a Lexmark 5700 printer and wrote to Lexmark asking how it can be > used with FreeBSD. They said it is "host dependant," meaning it is a > WINprinter that requires a driver which utilizes the computer's CPU and > cannot be used under FreeBSD. This is true of all Lexmark inkjet printers > but not the Lexmark Optra, which is a laser printer. > > I think the only way to print to a Lexmark 5700 from FreeBSD is through a > Windows printserver. > > There are some Hewlett Packard inkjet printers, including all the older > ones, which work with DOS, and will probably work with FreeBSD. A Macintosh > printer might do well. You can also get some leads by searching on the > Internet for "Linux printers." As for the Lexmark 5700, it can be used for > a planter or a rather cumbersome paperweight. > > Paul Smith > > > -----Original Message----- > > From: owner-freebsd-questions@FreeBSD.ORG > > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Philipp Huber > > Sent: Saturday, 21 October, 2000 03:38 AM > > To: questions@FreeBSD.ORG > > Subject: Re: Ink Jet Printing in FBSD??? > > > > > > On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > > > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > > > install in order to use my printer? I've read the FAQ and even tried > > > what the handbook describes, but I found out it only applies to line > > > printers like dot matrixes and such. > > > > > > > have a look at the ports ghostscript, apsfilter. you might also > > want to try > > gimp-print (for ghostscript, my epson 760 works perfectly with it). > > http://gimp-print.sourceforge.net > > > > Philipp > > > > > > 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 > Tetron Software, LLC http://www.tetronsoftware.com FreeBSD Apache PostgreSQL Oracle 8/8i Windows 95/98/NT Visual C Visual Basic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 11:56:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay2.inwind.it (relay2.inwind.it [212.141.53.73]) by hub.freebsd.org (Postfix) with ESMTP id 18F1C37B4C5 for ; Sat, 21 Oct 2000 11:56:29 -0700 (PDT) Received: from bartequi.ottodomain.org (62.98.154.197) by relay2.inwind.it (5.1.046) id 39CB09790075DF63; Sat, 21 Oct 2000 20:56:26 +0200 From: Salvo Bartolotta Date: Sat, 21 Oct 2000 19:57:50 GMT Message-ID: <20001021.19575000@bartequi.ottodomain.org> Subject: Re: FreeBSD 4.0 To: "Igor Kuptsov" Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <000a01c03b8c$2c1c8260$7467bcd4@igor> References: <000a01c03b8c$2c1c8260$7467bcd4@igor> X-Mailer: SuperCalifragilis X-Priority: 1 (Highest) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/21/00, 7:20:03 PM, "Igor Kuptsov" wrote = regarding FreeBSD 4.0: > FreeBSD 4.0 > How to automate process of count of a entering traffic on the user? > It is required that on excess of a limit, firewall locked IP and it is= > necessary precisely to know volume of a traffic in mbytes. > Which software needs to be used for such purposes? > Trafd does not give required result. > ______________________________________ > Best Regards, > Igor Kuptsov igor-kuptsov@mtu-net.ru Dear Igor Kuptsov, you may wish to have a look at dummynet(4). HTH a little, Salvo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 12: 3: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from convex.cs.unb.ca (convex.cs.unb.ca [131.202.33.93]) by hub.freebsd.org (Postfix) with ESMTP id 2497C37B479 for ; Sat, 21 Oct 2000 12:03:07 -0700 (PDT) Received: (from bremner@localhost) by convex.cs.unb.ca (8.11.0/8.11.0) id e9LJ5qX14566; Sat, 21 Oct 2000 16:05:52 -0300 (ADT) (envelope-from bremner) From: David Bremner MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14833.59664.452666.592474@convex.cs.unb.ca> Date: Sat, 21 Oct 2000 16:05:52 -0300 (ADT) To: freebsd-questions@freebsd.org Subject: openssh incompatabilities X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I just installed 4.1.1-Release, which has openssh-2.1(.1 ?) as part of the base distribution. I need to be able to interoperate with a server running "SSH-2.0-2.2.0 SSH Secure Shell (non-commercial)" and openssh-2.1 does not seem to do this all that well (I can give more detailed complaints, but the response in the problem database was "Take it up with openssh"). ok, fine, so I built openssh-2.2.0p1 from the tar file on openssh.com. Now ssh works, but scp dies with bremner@gaea.cs.unb.ca's password: scp: warning: Executing scp1 compatibility. select: Bad file descriptor lost connection So hmm. I next considered installing the other ssh from the ports collection, but I'm not sure how that will interact with openssh in the base collection. Can I "deinstall" openssh somehow, or do I have to make world from source? Any other clever ideas? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 12:17: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.tznet.com (smtp.tznet.com [206.31.5.6]) by hub.freebsd.org (Postfix) with ESMTP id 419E137B479 for ; Sat, 21 Oct 2000 12:16:59 -0700 (PDT) Received: from darkangel.gothic.com ([205.216.111.169]) by smtp.tznet.com with ESMTP (IPAD 2.52/64) id 4510100; Sat, 21 Oct 2000 14:16:49 -0500 Received: by darkangel.gothic.com (Postfix, from userid 1001) id 3873EB5; Sat, 21 Oct 2000 14:24:20 -0500 (CDT) Date: Sat, 21 Oct 2000 14:24:20 -0500 From: Michael Urban To: freebsd-questions@freebsd.org Subject: Re: make world procedure Message-ID: <20001021142420.A508@tznet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In-Reply-To: <39F1D998.ABC769CB@tellurian.com>; from marko@tellurian.com on Sat, Oct 21, 2000 at 01:59:52PM -0400 Well, you have the order a bit mixed up and a few commands wrong.. On Sat, Oct 21, 2000 at 01:59:52PM -0400, Marko Ruban wrote: > > make buildworld > > make buildkernel KERNEL=MYKERNEL > > make installkernel KERNEL=MYKERNEL > > make world You should make world before building and installing the new kernel. Also, if you already did make buildworld, you should do make installworld instead of make world. make world basically combines the two steps of make buildworld and make installworld into one command. > > Haven't heard of "make world", I think this should be "make installworld", but > not sure. make world combines the two commands make buildworld and make installworld. > > > after subsequent cvsups is it still necessary to make buildworld? It depends on how much has changed.. If only a couple files has changed it is pointless to rebuild the entire world. You can just go into the source directories where the files are that have changed and rebuild that instead with "make all install". If a lot of files have changed, or very important systems have changed, then yes, remake the world. If you are new at this, and are not sure how to rebuild individual parts of the source tree, then it is probably easiest for you just to make the world, and may not be a big deal if you start it before you go to bed. It will be done by morning for sure. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 12:20: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1b.mail.yahoo.com (smtp3.mail.yahoo.com [128.11.68.135]) by hub.freebsd.org (Postfix) with SMTP id 7681337B4CF for ; Sat, 21 Oct 2000 12:20:06 -0700 (PDT) Received: from unknown (HELO pinky) (206.110.74.78) by smtp.mail.vip.suc.yahoo.com with SMTP; 21 Oct 2000 19:20:04 -0000 X-Apparently-From: From: "Joshua J. Berry" To: Subject: Configuring Yamaha Soundcard Date: Sat, 21 Oct 2000 12:18:05 -0700 Message-ID: <000001c03b93$a384e200$4e4a6ece@pinky> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0001_01C03B58.F7260A00" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0001_01C03B58.F7260A00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I just got FreeBSD 4.0 from Amazon (the 4-disc set). I'm running it on a P-II with 128 MB RAM, 2GB of drive space devoted to BSD (nowhere near full), and a Yamaha OPL3-SAx ISA soundcard, among other things (or at least, that's what the BIOS ISA PnP detection says it is, and the opl3sa driver works fine with it on Linux). During the installation, I didn't notice anything about setting up sound cards...the Multimedia category in the kernel configuration screen was empty. I looked around on the various FreeBSD CD's (and in /stand/sysinstall), but couldn't find anything pertaining to soundcards. My question: How do I set up my sound card on FreeBSD so I can use it for things like XMMS, etc.? A nudge in the right direction would be very helpful. :-) Thanks. -- Josh ---------------------------------------------------------------------------- ---- Joshua J. Berry Monte Vista High School Venture High School Network and Systems Administrator http://www.mvhs.net/~jberry/ jberry@mvhs.net This E-Mail "signature block" does not constitute a legally-binding signature. ------=_NextPart_000_0001_01C03B58.F7260A00 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I just = got FreeBSD=20 4.0 from Amazon (the 4-disc set). I'm running it on a P-II with 128 MB = RAM, 2GB=20 of drive space devoted to BSD (nowhere near full), and a Yamaha OPL3-SAx = ISA=20 soundcard, among other things (or at least, that's what the BIOS ISA PnP = detection says it is, and the opl3sa driver works fine with it on=20 Linux).
 
During = the=20 installation, I didn't notice anything about setting up sound = cards...the=20 Multimedia category in the kernel configuration screen was empty. I = looked=20 around on the various FreeBSD CD's (and in /stand/sysinstall), but = couldn't find=20 anything pertaining to soundcards.
 
My = question: How do=20 I set up my sound card on FreeBSD so I can use it for things like = XMMS,=20 etc.?
 
A = nudge in the right=20 direction would be very helpful. :-) Thanks.
 
--=20 Josh
 


Joshua J. Berry
Monte Vista High School
Venture High = School

Network=20 and Systems Administrator

http://www.mvhs.net/~jberry/
jberry@mvhs.net=20

This E-Mail "signature block" does not constitute a=20 legally-binding signature.

 
------=_NextPart_000_0001_01C03B58.F7260A00-- _________________________________________________________ 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 Sat Oct 21 12:44:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-1.sjc.telocity.net (mail-1.sjc.telocity.net [216.227.56.41]) by hub.freebsd.org (Postfix) with ESMTP id 40A9A37B4C5 for ; Sat, 21 Oct 2000 12:44:21 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-1.sjc.telocity.net (8.9.3/8.9.3) with SMTP id MAA15338; Sat, 21 Oct 2000 12:34:53 -0700 (PDT) From: "Otter" To: "j mckitrick" Cc: Subject: RE: no access to packages at the ftp site? Date: Sat, 21 Oct 2000 15:40:12 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" 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.50.4133.2400 In-Reply-To: <20001021180355.A61043@dogma.freebsd-uk.eu.org> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of j mckitrick }Sent: Saturday, October 21, 2000 1:04 PM }To: Otter }Cc: freebsd-questions@FreeBSD.ORG }Subject: Re: no access to packages at the ftp site? } } }On Sat, Oct 21, 2000 at 08:55:15AM -0400, Otter wrote: }| If you fire up /stand/sysinstall and click on Options. For your use }| (from what yoou stated above) you want the release name set to }| 4.1-STABLE. Space to select option, Q to save it as it says on the } }So typing 'none' here doesn't just get the current list? } Nope. You need to tell it what it's looking for. There are still folks running 2.x so you want to separate yourself from that group and the group of 3.x users and grab the packages for YOUR system by entering in 4.1-STABLE into that option. -Otter } }jcm }-- }"That depends on what the meaning of the word 'is' is." }-President Bill Clinton } }"I don't know what you mean by the word 'ask.'" -CEO Bill Gates } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 13: 4:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from relay2.inwind.it (relay2.inwind.it [212.141.53.73]) by hub.freebsd.org (Postfix) with ESMTP id DD0A737B479 for ; Sat, 21 Oct 2000 13:04:51 -0700 (PDT) Received: from bartequi.ottodomain.org (62.98.154.245) by relay2.inwind.it (5.1.046) id 39CB09790075FEFC; Sat, 21 Oct 2000 22:04:43 +0200 From: Salvo Bartolotta Date: Sat, 21 Oct 2000 21:06:06 GMT Message-ID: <20001021.21060600@bartequi.ottodomain.org> Subject: Re: make world procedure To: Mark Rowlands , freebsd-questions@FreeBSD.ORG References: <00102119364401.00512@marbsd.tninet.se> X-Mailer: SuperCalifragilis X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 10/21/00, 6:32:46 PM, Mark Rowlands wrote= regarding make world procedure: > running 4.1.1 -stable > After cvsupping and performing the following > make buildworld > make buildkernel KERNEL=3DMYKERNEL > make installkernel KERNEL=3DMYKERNEL > make world make world =3D make buildworld + make installworld. But your sources are already built (make buildworld step, above). Cf /usr/src/UPDATING. > mergemaster Here you configure what you have built and installed. > after subsequent cvsups is it still necessary to make buildworld? Why cvsup then ? :-) Authoritative references: the handbook (cf http://www.freebsd.org/handbook/makeworld.html) and /usr/src/UPDATING (which is found in your system, after you have cvup'ed). The /usr/src/UPDATING file is (wait for it) also mentioned in the handbook. N.B. cvsupping =3D> updating all your sources (kernel and userland). Thus: the updating sequence in /usr/src/UPDATING is {necessary,recommended, officially supported} in order to update the **whole** of your system (ie kernel & userland); which updating sequence is to be viewed as a single operation. You are normally supposed to update all of your system in one operation -- unless you know **exactly/perfectly** what you are doing and/or you have reason for doing otherwise (eg importing and tuning a newer version of perl). BTW, if you try and build only your kernel in the traditional way, the build may fail. On a related note, FreeBSD !=3D Linux. Rather, you keep kernel and userland in sync: you update your system as a whole. The reason for the buildkernel & installkernel targets: sometimes, the build of a kernel may depend on other pieces of software (ie newer tools). The "make buildworld" step, in fact, builds those tools. That's why you first make buildworld and then you make buildkernel & installkernel... In the light of the above considerations, it should now be clear that, if you haven't updated your sources, you can safely follow the standard/traditional kernel build procedure. I have almost written a tutorial :-) HTH, Salvo (in a good mood) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 13:26: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mtu.ru (ns.mtu.ru [195.34.32.10]) by hub.freebsd.org (Postfix) with ESMTP id AAE4437B4C5 for ; Sat, 21 Oct 2000 13:26:02 -0700 (PDT) X-Recipient: freebsd-questions@FreeBSD.ORG Received: from winnt (ppp109-2.dialup.mtu-net.ru [212.188.109.2]) by mtu.ru (Postfix) with SMTP id 56A3F75E4 for ; Sun, 22 Oct 2000 00:25:56 +0400 (MSD) (envelope-from admin@rustar.ru) From: "sergey" To: Subject: FreeBSD 4.0 RELEASE I/O problems Date: Fri, 22 Sep 2000 00:27:01 +0400 Message-ID: <01c0240a$4c9722a0$020000c6@winnt> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C0242B.D3A8C2A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C0242B.D3A8C2A0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: quoted-printable Helo! Dear developers I have some troubles with FreeBSD on my server: sometimes (not planed - may be depends of the moon phase...) problems = with i/o : for exapmle I set command (usualy somethink with file system like chmod = or mkdir) - so after setting command it not return in shell=20 jast wait... I try to kill it fom another console but no effect the = process has D mode in ps order. Last time there was next situation : I have big partition /space with many sites so in one directory I typed = command chown and it didn`t return in shell so = I waite some time but it still doesn`t return in shell, then I took = another console and began kill it but kill -9 didn`t work and with = others signals didn`t work too... So chown command was in memory and = blocked other process that tryed to access in this directory, in the = last chance i set 'shutdown -r NOW' but after 10 seconds it tells 'Some = proccess would not die'=20 We changed all hardware, changed ide harddrivers to SCSI but this = problem sometimes we have... This not problem with chown command - it = can be with commands that work with disk i/o - mkdir for example ... Please help me with this problem, may be you know this, and it was fixed = in 4.1 or 4.1.1 Our server: P3/393/18.2GB IBM UW SCSI/ Adaptec 2940 UW SCSI controller Best Regards Sergey sergeyyy@yahoo.com ------=_NextPart_000_0007_01C0242B.D3A8C2A0 Content-Type: text/html; charset="windows-1251" Content-Transfer-Encoding: quoted-printable
Helo!
Dear = developers
I have some troubles with FreeBSD = on my=20 server:
sometimes (not planed - may be = depends of the=20 moon phase...)  problems with i/o :
for exapmle I set command (usualy = somethink=20 with file system like chmod or mkdir) - so after setting command it not = return=20 in shell  
jast wait... I try to kill it fom = another=20 console but no effect the process has D mode in ps order. = Last   time=20 there was next situation :
I have big partition /space with = many sites=20 so in one directory I typed command chown <user:group> = <directory>=20 and it didn`t return in shell so I waite some time but it still doesn`t = return=20 in shell, then I took another console and began kill it but kill -9 = <PID>=20 didn`t work and with others signals didn`t work too... So chown command = was in=20 memory and blocked other process that tryed to access in this directory, = in the=20 last chance i set 'shutdown -r NOW' but after 10 seconds it tells 'Some = proccess=20 would not die' 
We changed all hardware, changed = ide=20 harddrivers to SCSI but this problem sometimes we have... This not = problem with=20 chown command - it can be with commands that work with disk i/o - mkdir = for=20 example  ... 
Please help me with this problem, = may be you=20 know this, and it was fixed in 4.1 or 4.1.1 
Our server: 
P3/393/18.2GB IBM UW SCSI/ = Adaptec 2940 UW=20 SCSI controller 
 
Best = Regards
Sergey
sergeyyy@yahoo.com
 
 
------=_NextPart_000_0007_01C0242B.D3A8C2A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 14:14:38 2000 Delivered-To: freebsd-questions@freebsd.org Received: from got.wedgie.org (got.wedgie.org [216.181.169.146]) by hub.freebsd.org (Postfix) with ESMTP id 2BA9337B479 for ; Sat, 21 Oct 2000 14:14:36 -0700 (PDT) Received: by got.wedgie.org (Postfix, from userid 1012) id A88F4D925; Sat, 21 Oct 2000 17:14:35 -0400 (EDT) Date: Sat, 21 Oct 2000 17:14:35 -0400 From: Keith Jones To: j mckitrick Cc: freebsd-questions@freebsd.org Subject: Re: gnucash and odd port behavior Message-ID: <20001021171435.B98826@got.wedgie.org> References: <20001020114718.A44597@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20001020114718.A44597@dogma.freebsd-uk.eu.org>; from j mckitrick on Fri, Oct 20, 2000 at 11:47:18AM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gnucash depends on slib, which in turn builds with scheme48. slib and scheme48 aren't getting along. From what I can get from the slib author, the scheme48 version currently in the ports is broken. I have been posting about this on the ports mailing list too, but no one is doing anything about it. If I knew what I could do, I would gladly do it. I also have a patch that I submitted to ports that would modify slib enough to get it working with scheme, hence make gnucash work. That is how I am currently using gnucash. You may want to locate that patch via the GNATS engine. Thanks, Keith. On Fri, Oct 20, 2000 at 11:47:18AM +0100, j mckitrick wrote: > I had some trouble building gnucash last night. I should mention I recently > deleted my entire ports tree so I could start from scratch, and I used the > cvsup file to limit them to those that interest me. Maybe this is what > caused my problem. The port won't build. First, D/Ling the package didn't > work, tellingg me I was denied access to the file on the freebsd server. > Then, when I tried a port instead of a package, the compile died. I don't > have the error, but I can get it later tonight. I thought maybe someone > would have some ideas first. > > jcm > -- > "That depends on what the meaning of the word 'is' is." -President Bill Clinton > > "I don't know what you mean by the word 'ask.'" -CEO Bill Gates > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 14:14:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail4.sdc1.sfba.home.com (femail4.sdc1.sfba.home.com [24.0.95.84]) by hub.freebsd.org (Postfix) with ESMTP id 6295F37B4C5 for ; Sat, 21 Oct 2000 14:14:52 -0700 (PDT) Received: from xwirl ([24.17.161.81]) by femail4.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001021211337.QJYX26644.femail4.sdc1.sfba.home.com@xwirl> for ; Sat, 21 Oct 2000 14:13:37 -0700 Message-ID: <000801c03ba3$7b41ed00$51a11118@alntn1.tx.home.com> From: "Alex" To: Subject: FreeBSD Freezing Problem Date: Sat, 21 Oct 2000 16:11:28 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C03B79.91ABA240" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C03B79.91ABA240 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, =20 I have an AMD K6 500 processor on an Epox EP-MVP3C2 motherboard. I = have a problem with FreeBSD freezing. It'll happen at random times. I'm = not sure what causes it but I think it has to do with either my memory, = processor or motherboard. Because I've been using the same hardware = cards with my other computers that also run FreeBSD and they run fine. = Any help will be welcomed. Thanks, Alex _____________________________________ ICQ#: 37637306 ------=_NextPart_000_0005_01C03B79.91ABA240 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
   I have an AMD K6 500 = processor on an=20 Epox EP-MVP3C2 motherboard. I have a problem with FreeBSD freezing. = It'll happen=20 at random times. I'm not sure what causes it but I think it has to do = with=20 either my memory, processor or motherboard. Because I've been using the = same=20 hardware cards with my other computers that also run FreeBSD and = they run=20 fine. Any help will be welcomed.
 
Thanks,
Alex
 
_____________________________________

ICQ#: = 37637306
------=_NextPart_000_0005_01C03B79.91ABA240-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 14:22:42 2000 Delivered-To: freebsd-questions@freebsd.org Received: from soup.thpoon.com (cr103675-a.bloor1.on.wave.home.com [24.114.152.71]) by hub.freebsd.org (Postfix) with SMTP id 633B337B479 for ; Sat, 21 Oct 2000 14:22:40 -0700 (PDT) Received: (qmail 17194 invoked from network); 21 Oct 2000 21:22:39 -0000 Received: from unknown (HELO tea.thpoon.com) (mail@192.168.1.2) by cr103675-a.bloor1.on.wave.home.com with SMTP; 21 Oct 2000 21:22:39 -0000 Received: from antipode by tea.thpoon.com with local (Exim 3.12 #1 (Debian)) id 13n66A-0001dH-00 for ; Sat, 21 Oct 2000 17:22:38 -0400 To: freebsd-questions@FreeBSD.ORG Subject: Too many open files in system From: Arcady Genkin X-Face: 0=A/O5-+sE[Tf%X>rYr?Y5LD4,:^'jaJ!4jC&UR*ZrrK2>^`g22Qeb]!:d;}2YJ|Hq"LHdF OX`jWX|AT-WVFQ(TPhFVak)0nt$aEdlOq=1~D,:\z5QlVOrZ2(H,mKg=Xr|'VlHA="r Organization: thpoon.com Mail-Copies-To: never Date: 21 Oct 2000 17:22:38 -0400 Message-ID: <87wvf1c2jl.fsf@tea.thpoon.com> Lines: 30 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Today I got quite a scare. At 16:50 I couldn't do almost anything, getting an error message about too many open files in system. At about 17:00 all came back to normal. I did `lsof' then, and it reported 913 open files, about a third of them belonging to apache/postgresql. After restart of apache, the number went down to 730. The system log contains: ,---- | Oct 21 16:50:26 soup syslogd: /dev/console: Too many open files in \ | system: Too many open files in system | Oct 21 16:50:26 soup syslogd: /var/run/utmp: Too many open files in system | Oct 21 16:50:26 soup syslogd: /var/run/utmp: Too many open files in system | Oct 21 16:50:26 soup /kernel: file: table is full `---- What could have caused this? The box runs 4.1-S, and the main services are apache/mod_php4, postgresql, and a UW IMAP server (private: not a busy one). No X. Could this have been an external attack? If there is a limit on the number of open files somewhere in the kernel, is it raisable? Many thanks, -- Arcady Genkin Don't read everything you believe. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 15: 2:17 2000 Delivered-To: freebsd-questions@freebsd.org Received: from orion.uk.insnet.net (orion.uk.insnet.net [194.177.174.244]) by hub.freebsd.org (Postfix) with ESMTP id EEF2837B479 for ; Sat, 21 Oct 2000 15:02:10 -0700 (PDT) Received: from plextor ([213.38.130.106]) by orion.uk.insnet.net (8.9.3/8.9.3) with SMTP id XAA18250 for ; Sat, 21 Oct 2000 23:02:00 +0100 (BST) Message-ID: <000c01c03baa$abf2a960$020a10ac@uk.insnet.net> From: "Zeljko Vujovic" To: Subject: installation Date: Sat, 21 Oct 2000 23:02:52 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C03BB3.0A362800" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C03BB3.0A362800 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Dear Sirs, What is a very minimum installation of FreeBSD I can install from floppy = disks (no CD-ROM)? Please, could I have instructions how to create those disks and how to = install them on PC. Thank you. Jake ------=_NextPart_000_0009_01C03BB3.0A362800 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Dear Sirs,
 
What is a very minimum installation of = FreeBSD I=20 can install from floppy disks (no CD-ROM)?
Please, could I have instructions how = to create=20 those disks and how to install them on PC.
 
Thank you.
 
Jake
------=_NextPart_000_0009_01C03BB3.0A362800-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 15: 3: 7 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id 7F8AF37B479 for ; Sat, 21 Oct 2000 15:03:03 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id OAA04452; Sat, 21 Oct 2000 14:56:19 -0700 (PDT) From: "Otter" To: "Arcady Genkin" , Subject: RE: Too many open files in system Date: Sat, 21 Oct 2000 18:04:05 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.50.4133.2400 Importance: Normal In-Reply-To: <87wvf1c2jl.fsf@tea.thpoon.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Arcady, Looking at the sysctl man page, you'll find plenty of options to tweak. I see a kern.maxfiles option, though I'm not exactly sure what it does. Sounds like it may be worth looking into. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of }Arcady Genkin }Sent: Saturday, October 21, 2000 5:23 PM }To: freebsd-questions@FreeBSD.ORG }Subject: Too many open files in system } } }Today I got quite a scare. At 16:50 I couldn't do almost anything, }getting an error message about too many open files in system. At }about 17:00 all came back to normal. I did `lsof' then, and it }reported 913 open files, about a third of them belonging to }apache/postgresql. After restart of apache, the number went down to }730. } }The system log contains: } },---- }| Oct 21 16:50:26 soup syslogd: /dev/console: Too many open }files in \ }| system: Too many open }files in system }| Oct 21 16:50:26 soup syslogd: /var/run/utmp: Too many open }files in system }| Oct 21 16:50:26 soup syslogd: /var/run/utmp: Too many open }files in system }| Oct 21 16:50:26 soup /kernel: file: table is full }`---- } }What could have caused this? The box runs 4.1-S, and the main }services are apache/mod_php4, postgresql, and a UW IMAP server }(private: not a busy one). No X. } }Could this have been an external attack? } }If there is a limit on the number of open files somewhere in the }kernel, is it raisable? } }Many thanks, }-- }Arcady Genkin }Don't read everything you believe. } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 15: 9:25 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail-2.sjc.telocity.net (mail-2.sjc.telocity.net [216.227.56.42]) by hub.freebsd.org (Postfix) with ESMTP id E03DF37B479 for ; Sat, 21 Oct 2000 15:09:17 -0700 (PDT) Received: from zoso (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-2.sjc.telocity.net (8.9.3/8.9.3) with SMTP id PAA06283; Sat, 21 Oct 2000 15:05:46 -0700 (PDT) From: "Otter" To: , "Joseph E. Royce" Cc: Subject: RE: FW: booting problems with SMP enabled Date: Sat, 21 Oct 2000 18:13:32 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" 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.50.4133.2400 Importance: Normal In-Reply-To: <39F099CB.BC701C70@urx.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks to all for the identification tips. I was not able to get any FCC id (though I did bookamrk the site!). Tracking down the BIOS ID # led me to Soyo. I wasn't able to ID it as anything they've made (or at least show on their web site) I did send them an email requesting info since the only thing I could ID was the manufacturer from the BIOS ID. None of the rest of the BIOS ID would translate to anything Amibios had listed. Thanks again. At least if they reply I might be able to get somewhere with this board. Until then, FreeBSD will continue to only see use processor, at least until I can get around this "testing interrupt" step. -Otter }-----Original Message----- }From: owner-freebsd-questions@FreeBSD.ORG }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Kent Stewart }Sent: Friday, October 20, 2000 3:15 PM }To: Joseph E. Royce }Cc: Otter; freebsd-questions@FreeBSD.ORG }Subject: Re: FW: booting problems with SMP enabled } } } } }"Joseph E. Royce" wrote: }> }> On Fri, Oct 20, 2000 at 06:57:18AM -0400, Otter wrote: }> > }> > }> > }-----Original Message----- }> > }From: owner-freebsd-questions@FreeBSD.ORG }> > }[mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf }Of Mike Meyer }> > }Sent: Thursday, October 19, 2000 11:05 PM }> > }To: Otter }> > }Cc: questions@FreeBSD.ORG }> > }Subject: Re: FW: booting problems with SMP enabled }> > } }> > } }> > }Otter writes: }> > }> I've got a new install of 4.1-RELEASE here. }> > }> Hardware consists of a dual processor board (unknown brand), }> > }> 2 Intel P2-300's, a single 128MB DIMM, onboard scsi }> > }> (disabled), on a 13GB IDE drive. The machine boots and runs }> > }> fine with a single processor. For testing purposes, I've }> > }> swapped them around to make sure that both CPU's are working }> > }> as they should. No problems there. When I boot up with the }> > }> SMP kernel (only the SMP and APIC_IO lines uncommented) it }> > }> hangs in the boot process at where it says "APIC_IO: testing }> > }> 8254 interrupt delivery". At this point, the machine locks }> > }> and requires me cycling power via the switch on the power }> > }> supply. I'm at a loss. I've got a bank of dipdswitches on }> > }> the board and have changed a few at random, but no luck so }> > }> far. Without knowing the brand of the board, I'm not sure }> > }> how I can take this any further. Any }tips/ideas/suggestions? TIA. }> > } }> > }Check the board manufacturers web site for a manual! }> > } }> > I'd love to, but as you can see above, I don't know who the }> > manufacturer is/was. I've found no markings on the board }that identify }> > it as any particular brand. }> }> If you can find a FCC ID number on the motherboard then you can do }> a search at http://www.fcc.govoet/fccid/ for the manufacturers. } }This wasn't copied right. I thought it was an important resource and }it was missing. I found it had a "/" missing. The address is }http://www.fcc.gov/oet/fccid/ } }Kent } }> }> -Joe }> > }> > }Also notice that "An SMP kernel will ONLY run on an Intel MP }> > }spec. qualified motherboard" and "Be sure to disable 'cpu }> > }I386_CPU' && }> > }'cpu I486_CPU' for SMP kernels." (The latter may not be }required for }> > }your version, but won't hurt in any case). }> > }> > already done. }> > }> > } }> > }Also, check the stepping number of the P2's (on the }chip, somewhere, }> > }one hopes, or possibly in dmesg when the system boots) }and then check }> > }the intel web to make sure the two chips will work }*together*. While }> > }each may work fine, if you've don't have compatible }stepping numbers, }> > }they won't work together. }> > } }> > } > } }> > The stepping numbers DO match. I've searched Intel's }site and found }> > some CPUID info charts, but nothing that states they }work together... }> > then again, I didn't find anything saying the contrary. I seem to }> > remember that was the big hype of P2 over Celerons-- }they had more }> > cache and would support SMP. I could only assume that }they all do... }> > and neer had problems getting any p2 or p3's to work in }SMP as long as }> > the stepping numbers matched. I've set this up on }several machines in }> > the past, so I know (or at least I used to!) what to }look for and the }> > steps to take to make it happen. I'm just at a loss on this one. }> > -Otter }> > }> > }> > }> > 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 } }-- }Kent Stewart }Richland, WA } }mailto:kbstew99@hotmail.com }http://kstewart.urx.com/kstewart/index.html }FreeBSD News http://daily.daemonnews.org/ } } }To Unsubscribe: send mail to majordomo@FreeBSD.org }with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 15:14:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from thor.afnetinc.com (thor.afnetinc.com [206.40.232.1]) by hub.freebsd.org (Postfix) with ESMTP id 58FC537B4D7 for ; Sat, 21 Oct 2000 15:14:33 -0700 (PDT) Received: from 206-40-232-173-csc-0.afnetinc.com ([206.40.232.173] helo=SCIENCE1) by thor.afnetinc.com with smtp (Exim 2.05 #1) id 13n6uI-0000DW-00 for freebsd-questions@FreeBSD.ORG; Sat, 21 Oct 2000 16:14:27 -0600 From: efinley@efinley.com (Elliot Finley) To: freebsd-questions@FreeBSD.ORG Subject: need help installing on 3ware Date: Sat, 21 Oct 2000 22:14:59 GMT Organization: System Hog (www.systemhog.com) Reply-To: efinley@efinley.com Message-ID: <39f313b4.20544890@mail.afnetinc.com> X-Mailer: Forte Agent 1.5/32.451 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 Hello, I'm trying to setup a 4.1.1-R system. I have an ABIT motherboard, Athlon 700Mhz, floppy, CDROM, and a 3ware escalade 6800 with 8 40G drives on it. I'm able to configure the drive array via the BIOS menu. The array is recognized by the BIOS on bootup and is assigned an IRQ. But when I boot from the CDROM, FBSD doesn't see the 3ware card, and thus it doesn't load any drivers for it. If anyone has any RTFM/pointers/suggestions etc., I would very much appreciate hearing them. =20 -- Do you manage an ISP? Do you have system hogs (line campers)? Do you have users that use multiple simultaneous ports? Want help? ---> http://www.systemhog.com <--- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 15:23: 3 2000 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.cluster.oleane.net (smtp2.cluster.oleane.net [195.25.12.17]) by hub.freebsd.org (Postfix) with ESMTP id 4539C37B479 for ; Sat, 21 Oct 2000 15:23:00 -0700 (PDT) Received: from graf (dyn-1-1-023.Lyn.dialup.oleane.fr [62.161.7.23]) by smtp2.cluster.oleane.net with ESMTP id AAA69316 for ; Sun, 22 Oct 2000 00:26:08 +0200 (CEST) From: "Thierry Thomas" Organization: Ploum, ploum, tra la la... To: freebsd-questions@FreeBSD.ORG Date: Sun, 22 Oct 2000 00:21:28 +0200 MIME-Version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 8BIT Comments: Sender has elected to use 8-bit data in this message. If problems arise, refer to postmaster at sender's site. Subject: Erratic PS/2 mouse with FreeBSD 4.1 Reply-To: thierry@thomas.as Message-ID: <39F23308.32378.13C4C0@localhost> X-mailer: Pegasus Mail for Win32 (v3.12cFR) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, It seems to be a FAQ, but I have not found any solution for my case. The mouse is a PS/2 "Browser Mouse", with 2 buttons and a wheel. It's seen as a model 4DT. And its mouvement is erratic. When the mouse is in motion, the cursor often jumps upward and to the right. Sometimes the software (X) reacts as if one of the buttons has been pressed. Thanks for your help. -- Th. Thomas, ICQ : 8823153 Mise en place d'un serveur autogéré respectueux de la liberté d'expression : voir . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 16:13:57 2000 Delivered-To: freebsd-questions@freebsd.org Received: from berzerk.gpcc.itd.umich.edu (berzerk.gpcc.itd.umich.edu [141.211.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 259B237B479 for ; Sat, 21 Oct 2000 16:13:55 -0700 (PDT) Received: from stargate.gpcc.itd.umich.edu (smtp@stargate.gpcc.itd.umich.edu [141.211.2.154]) by berzerk.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id TAA16661; Sat, 21 Oct 2000 19:13:54 -0400 (EDT) Received: from localhost (timcm@localhost) by stargate.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id TAA00392; Sat, 21 Oct 2000 19:13:53 -0400 (EDT) Date: Sat, 21 Oct 2000 19:13:53 -0400 (EDT) From: Tim McMillen X-Sender: timcm@stargate.gpcc.itd.umich.edu To: Zeljko Vujovic Cc: freebsd-questions@FreeBSD.ORG Subject: Re: installation In-Reply-To: <000c01c03baa$abf2a960$020a10ac@uk.insnet.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Oct 2000, Zeljko Vujovic wrote: > Dear Sirs, > What is a very minimum installation of FreeBSD I can install from floppy disks (no CD-ROM)? Please, could I have instructions how to create those disks and how to install them on PC. > Thank you. Jake Get a hold of the Complete FreeBSD 3rd Ed. Page 65 gives the instructions. You need the kernel floppy and the MFSroot floppy in addition to 9 3 1/2" flopies to fit the entire bin directory. If you can't get a hold of the book, I will scan the pages and send them to you. Hope that helps, Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 16:16: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 947E937B4C5 for ; Sat, 21 Oct 2000 16:16:01 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13n7rs-000CP9-00; Sun, 22 Oct 2000 00:16:00 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id AAA63555; Sun, 22 Oct 2000 00:15:59 +0100 (BST) (envelope-from jcm) Date: Sun, 22 Oct 2000 00:15:59 +0100 From: j mckitrick To: Keith Jones Cc: freebsd-questions@freebsd.org Subject: Re: gnucash and odd port behavior Message-ID: <20001022001559.A63486@dogma.freebsd-uk.eu.org> References: <20001020114718.A44597@dogma.freebsd-uk.eu.org> <20001021171435.B98826@got.wedgie.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001021171435.B98826@got.wedgie.org>; from kjones@got.wedgie.org on Sat, Oct 21, 2000 at 05:14:35PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey Keith, thanks for a meaningful answer. I hate to say this, but most of the time I just expect FreeBSD to work, and when it doesn't, I assume I am doing something wrong. Thanks for the info. I don't need this port that bad. Actually, I think it is far more than I need. On Sat, Oct 21, 2000 at 05:14:35PM -0400, Keith Jones wrote: | Gnucash depends on slib, which in turn builds with scheme48. slib | and scheme48 aren't getting along. From what I can get from the slib author, | the scheme48 version currently in the ports is broken. | | I have been posting about this on the ports mailing list too, but no one is | doing anything about it. If I knew what I could do, I would gladly do it. | | I also have a patch that I submitted to ports that would modify slib enough | to get it working with scheme, hence make gnucash work. That is how I am | currently using gnucash. You may want to locate that patch via the GNATS | engine. | | Thanks, | Keith. | | | On Fri, Oct 20, 2000 at 11:47:18AM +0100, j mckitrick wrote: | > I had some trouble building gnucash last night. I should mention I recently | > deleted my entire ports tree so I could start from scratch, and I used the | > cvsup file to limit them to those that interest me. Maybe this is what | > caused my problem. The port won't build. First, D/Ling the package didn't | > work, tellingg me I was denied access to the file on the freebsd server. | > Then, when I tried a port instead of a package, the compile died. I don't | > have the error, but I can get it later tonight. I thought maybe someone | > would have some ideas first. | > | > jcm | > -- | > "That depends on what the meaning of the word 'is' is." -President Bill Clinton | > | > "I don't know what you mean by the word 'ask.'" -CEO Bill Gates | > | > | > To Unsubscribe: send mail to majordomo@FreeBSD.org | > with "unsubscribe freebsd-questions" in the body of the message jcm -- "That depends on what the meaning of the word 'is' is." -President Bill Clinton "I don't know what you mean by the word 'ask.'" -CEO Bill Gates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 16:17:43 2000 Delivered-To: freebsd-questions@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id A98DC37B479 for ; Sat, 21 Oct 2000 16:17:41 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #4) id 13n7tU-000CTI-00; Sun, 22 Oct 2000 00:17:40 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) id AAA63579; Sun, 22 Oct 2000 00:17:40 +0100 (BST) (envelope-from jcm) Date: Sun, 22 Oct 2000 00:17:40 +0100 From: j mckitrick To: Otter Cc: freebsd-questions@FreeBSD.ORG Subject: Re: no access to packages at the ftp site? Message-ID: <20001022001740.B63486@dogma.freebsd-uk.eu.org> References: <20001021180355.A61043@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from otterr@telocity.com on Sat, Oct 21, 2000 at 03:40:12PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG | Nope. You need to tell it what it's looking for. There are still folks | running 2.x so you want to separate yourself from that group and the | group of 3.x users and grab the packages for YOUR system by entering | in 4.1-STABLE into that option. | -Otter OK, I got it right this time,but there were other errors this time. I need to learn how to see the debug screen of sysinstall. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 17: 5:39 2000 Delivered-To: freebsd-questions@freebsd.org Received: from soup.thpoon.com (cr103675-a.bloor1.on.wave.home.com [24.114.152.71]) by hub.freebsd.org (Postfix) with SMTP id 0AC1A37B479 for ; Sat, 21 Oct 2000 17:05:36 -0700 (PDT) Received: (qmail 18172 invoked from network); 22 Oct 2000 00:05:34 -0000 Received: from unknown (HELO tea.thpoon.com) (mail@192.168.1.2) by cr103675-a.bloor1.on.wave.home.com with SMTP; 22 Oct 2000 00:05:34 -0000 Received: from antipode by tea.thpoon.com with local (Exim 3.12 #1 (Debian)) id 13n8dq-0005pR-00 for ; Sat, 21 Oct 2000 20:05:34 -0400 To: freebsd-questions@FreeBSD.ORG Subject: Re: Too many open files in system References: From: Arcady Genkin X-Face: 0=A/O5-+sE[Tf%X>rYr?Y5LD4,:^'jaJ!4jC&UR*ZrrK2>^`g22Qeb]!:d;}2YJ|Hq"LHdF OX`jWX|AT-WVFQ(TPhFVak)0nt$aEdlOq=1~D,:\z5QlVOrZ2(H,mKg=Xr|'VlHA="r Organization: thpoon.com Mail-Copies-To: never Date: 21 Oct 2000 20:05:34 -0400 In-Reply-To: Message-ID: <87puktbv01.fsf@tea.thpoon.com> Lines: 26 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Otter" writes: Otter, thanks for your reply! > Looking at the sysctl man page, you'll find plenty of options to > tweak. I see a kern.maxfiles option, though I'm not exactly sure what > it does. Sounds like it may be worth looking into. This option is not explained in the manpage, so I looked at sys/sysctl.h file and it seems that this might be the max number of open files on the system. However, this number is set to 552 right now, whereas `lsof' reports 809 open files. ,---- | soup:/usr/include/sys# sysctl kern.maxfiles | kern.maxfiles: 552 | soup:/usr/include/sys# lsof | wc -l | 809 `---- Am I misunderstanding something? Any further ideas? Many thanks, -- Arcady Genkin Don't read everything you believe. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 17:12:46 2000 Delivered-To: freebsd-questions@freebsd.org Received: from atlas.astro.su.se (atlas.astro.su.se [130.237.166.95]) by hub.freebsd.org (Postfix) with ESMTP id AE98537B4C5; Sat, 21 Oct 2000 17:12:41 -0700 (PDT) Received: from dioscuri.astro.su.se (dioscuri [130.237.166.114]) by atlas.astro.su.se (8.9.3/8.9.3) with ESMTP id CAA06235; Sun, 22 Oct 2000 02:12:34 +0200 (MET DST) Received: (from alex@localhost) by dioscuri.astro.su.se (8.9.1b+Sun/8.9.1) id CAA11362; Sun, 22 Oct 2000 02:12:34 +0200 (MET DST) Date: Sun, 22 Oct 2000 02:12:34 +0200 (MET DST) From: Alexey Koptsevich X-Sender: alex@dioscuri To: questions@freebsd.org, mobile@freebsd.org Subject: Linksys PCcard netcard + CardBus Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Will the following configuration work with FreeBSD: PCMPC100 - EtherFast 10/100 PCMCIA Card http://www.linksys.com/products/product.asp?prid=41&grid=11 or PCM100 - EtherFast 10/100 Integrated PC Card http://www.linksys.com/products/product.asp?prid=100&grid=11 plus Type I/II/III CardBus PCMCIA 2.1 on IBM ThinkPad 1161260 http://commerce.www.ibm.com/cgi-bin/ncommerce/ProductDisplay?prmenbr=1&prnbr=1161260&cntry=840&lang=en_US&cntrfnbr=1 I know that CardBus itself is not supported, but I have seen notices in maillists that PCcard adapters work with CardBus in 16bit mode. Is it the case? Please cc: me your reply. Thanks a lot, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 17:13:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from atlas.astro.su.se (atlas.astro.su.se [130.237.166.95]) by hub.freebsd.org (Postfix) with ESMTP id 2D08E37B479; Sat, 21 Oct 2000 17:13:08 -0700 (PDT) Received: from dioscuri.astro.su.se (dioscuri [130.237.166.114]) by atlas.astro.su.se (8.9.3/8.9.3) with ESMTP id CAA06239; Sun, 22 Oct 2000 02:13:05 +0200 (MET DST) Received: (from alex@localhost) by dioscuri.astro.su.se (8.9.1b+Sun/8.9.1) id CAA11365; Sun, 22 Oct 2000 02:13:07 +0200 (MET DST) Date: Sun, 22 Oct 2000 02:13:06 +0200 (MET DST) From: Alexey Koptsevich X-Sender: alex@dioscuri To: questions@freebsd.org, mobile@freebsd.org Subject: PCMCIA 10/100 network card Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, What PCMCIA 10/100 network card do you recommend for use with FreeBSD, paying attention to stability of support and low price? Please cc: me your reply. Thanks a lot, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 18:40:53 2000 Delivered-To: freebsd-questions@freebsd.org Received: from donkeykong.gpcc.itd.umich.edu (donkeykong.gpcc.itd.umich.edu [141.211.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 072FE37B4CF for ; Sat, 21 Oct 2000 18:40:52 -0700 (PDT) Received: from frogger.gpcc.itd.umich.edu (smtp@frogger.gpcc.itd.umich.edu [141.211.2.144]) by donkeykong.gpcc.itd.umich.edu (8.8.8/4.3-mailhub) with ESMTP id VAA26509 for ; Sat, 21 Oct 2000 21:40:51 -0400 (EDT) Received: from localhost (timcm@localhost) by frogger.gpcc.itd.umich.edu (8.8.8/5.1-client) with ESMTP id VAA02807 for ; Sat, 21 Oct 2000 21:40:50 -0400 (EDT) Date: Sat, 21 Oct 2000 21:40:50 -0400 (EDT) From: Tim McMillen X-Sender: timcm@frogger.gpcc.itd.umich.edu To: freebsd-questions@freebsd.org Subject: Re: errors installing KDE-1.94 --fixed 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 Sat, 21 Oct 2000, Mark Rowlands wrote: > > did you cvsup your ports collection? > I'll try that as soon as I figure out how. I've never done it. Wow that was much easier than I thought. Just looked up in the handbook, downloaded the CVSup package and away we go. I bumbled around finding the right directory for the XFree3.3.6 port and using make, but when I got it right, it worked perfectly. > Also since kde-1.94 expects a > XFree86-3.3.6_2 package how will cvsup'ing the ports (even if that > updates Xfree to 3.3.6_2) fix that? Apparently the port makes a package or something like that? I thought it literally needed the package. Kde1.94 is working just great so far. I really like konqueror and kword. Now on to getting sound to work. Thanks Mark. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 18:51: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 6597F37B479 for ; Sat, 21 Oct 2000 18:50:58 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9M1oGn01964; Sat, 21 Oct 2000 18:50:16 -0700 (PDT) Date: Sat, 21 Oct 2000 18:50:16 -0700 From: Alfred Perlstein To: "Marius M. Rex" Cc: freeBSD-questions@FreeBSD.ORG Subject: Re: TCP-ack traffic Message-ID: <20001021185015.F28123@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from marius@malkav.snowmoon.com on Thu, Oct 19, 2000 at 12:27:00PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Marius M. Rex [001019 09:27] wrote: > > I heard somewhere recently that Yahoo had come up with a modification to > FreeBSD to help protect against DOS attacks. It waits until the first > true byte of actual data comes through before opening a path to it's > services. Is this code available, and where so? I also heard say that it > was ported over to a Linux kernel patch. > > Basically at my company we have clustered webservers. Some clusters serve > images, others static pages, others handle databse calls, etc. We have > recently had some problems where one server in a cluster gets a request, > spawns a bunch of child processes for Apache to server the requests, but > then gets no data for a significant amount of time. (say 30 > seconds) That leaves the server that is trying to serve those requests > crunching processor time for no reason, and other servers sitting around > and doing nothing. Webservers end up acting non-responcive, and my beeper > goes off. (You see where my priorities lie, don't-cha?) > > Looking at the numbers, I think this happens to to our linux boxes > more then our FreeBSD boxes. (We have more linux boxes then FreeBSD. We > use FreeBSD for the -heavy- traffic servers, and linux for everything > else.) It may be that we just have so many more linux boxes that then > numbers are obviously skewed. Or perhaps this modification has just been > added to the FreeBSd code? (I am tracking stable) > Unfortunately I am working on rumors. If any of my babbling rings > a bell for someone, could they please point me to more info? I also want > to track down that Linux kernel patch, if I can. You want to use the accf_http/accf_data kernel modules that ship with FreeBSD 4.1.1, you can read more about them in the manpages for accept_filter(9) and setsockopt(2). If you pick up a recent copy of apache, you can run it's configure script in such a way to inform it that you are on FreeBSD and want it to use accept filters. best of luck, -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 18:52:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 07F4437B4C5 for ; Sat, 21 Oct 2000 18:52:09 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9M1pvm02021; Sat, 21 Oct 2000 18:51:57 -0700 (PDT) Date: Sat, 21 Oct 2000 18:51:57 -0700 From: Alfred Perlstein To: Zhiui Zhang Cc: freebsd-questions@FreeBSD.ORG Subject: Re: kick start installation Message-ID: <20001021185157.G28123@fw.wintelcom.net> References: <20001018160012.N272@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from zzhang@cs.binghamton.edu on Thu, Oct 19, 2000 at 03:05:19PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Zhiui Zhang [001019 12:05] wrote: > > > On Wed, 18 Oct 2000, Alfred Perlstein wrote: > > > * Zhiui Zhang [001018 15:17] wrote: > > > > > > I hope that FreeBSD has or will have the ability to do kick start > > > installation - After you boot from CD-ROM, it will install everything > > > automatically according to previously made selectiosn (saved in a > > > configuration file). This will make maintenance of many machines easy. > > > > This is available via the sysinstall.cfg file, have a look at > > http://people.freebsd.org/~alfred/pxe/ > > > > it has a sample sysinstall.cfg that you can use along with other > > suggestions on how to make a completely hands-off install process. > > > I would like to try it. Can you give me more clarification: > > (1) Can I use a Sun workstation as the server? Note that I am only a > normal user of the Sun workstation, but I guess that I can put all install > files under my directory. I also do not use DHCP - my freebsd boxes will > use fixed IP addresses. Afaik PXE requires dhcp in order to bootstrap, without it you're pretty much out of luck. > (2) I wonder whether the install.cfg is produced by /stand/sysinstall. If > so, I should be able to install one machine manually and the rest will be > installed kick-start. Not that I know of, your best bet is to use mine as a template and go from there. > (3) Does this process also include disk slicing/partitioning? Yes, that's also done with my sysinstall.cfg file. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 18:55: 5 2000 Delivered-To: freebsd-questions@freebsd.org Received: from transbay.net (dns1.transbay.net [209.133.53.2]) by hub.freebsd.org (Postfix) with ESMTP id 7D59937B4C5 for ; Sat, 21 Oct 2000 18:55:02 -0700 (PDT) Received: from transbay.net (rigel.transbay.net [209.133.53.177]) by transbay.net (8.9.3/8.9.3) with ESMTP id SAA69140; Sat, 21 Oct 2000 18:54:56 -0700 (PDT) Message-ID: <39F24C46.F3EE95DF@transbay.net> Date: Sat, 21 Oct 2000 19:09:10 -0700 From: UCTC Sysadmin Organization: UC Telecommunications Company X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Bill Pierskalla Cc: freebsd-questions@freebsd.org Subject: Re: Failure to compile References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill Pierskalla wrote: > > Just want to say thanks for responding so quickly. You can't pay for that > type of service anymore. By the way I shut the external cache in BIOS and it > flew! Excellent! Thanks. Of course if the cache is disabled the machine will be slower, maybe a way lot slower. If using better cache memory (faster, or name-brand) does not allow crash-free compiles with the cache enabled, get a different motherboard. You might be able to disable the cache, compile/install new kernel and reenable cache, and it might even run 'okay'. (That worked for EnnTee in times past.) But I wouldn't trust the machine. For fun and games, but not production. -ecsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 19: 5:30 2000 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f58.law6.hotmail.com [216.32.241.58]) by hub.freebsd.org (Postfix) with ESMTP id 78A0F37B479 for ; Sat, 21 Oct 2000 19:05:28 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 21 Oct 2000 19:05:28 -0700 Received: from 195.13.170.102 by lw6fd.law6.hotmail.msn.com with HTTP; Sun, 22 Oct 2000 02:05:27 GMT X-Originating-IP: [195.13.170.102] From: "Vienkarsi Jautajums" To: freebsd-questions@FreeBSD.ORG Subject: Sharity Light Date: Sun, 22 Oct 2000 04:05:27 EET Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Oct 2000 02:05:28.0221 (UTC) FILETIME=[8C74DCD0:01C03BCC] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi!         I got problms with sharity light .. it compiled / installed wo problem. but when i try to "mount" i get strange error: ------------------------------------------------------------------------ localhost# ./shlight //nt_box/softi$ /tmp/mnt_test -U username -W Domainname -S Servername Password: bind: [49] Can't assign requested address ------------------------------------------------------------------------ any idea what could be wrong ? plz reply to this email im not on list PS         sambafs is not an option for me .. i cannot upgrade kernel to "tested versions of FreeBSD" and on my 3.3 it simply dont compile :( Uldis _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 19:24:45 2000 Delivered-To: freebsd-questions@freebsd.org Received: from www3.pacific-pages.com (www3.pacific-pages.com [192.41.48.219]) by hub.freebsd.org (Postfix) with ESMTP id 41E2237B4C5 for ; Sat, 21 Oct 2000 19:24:43 -0700 (PDT) Received: from d.tracker ([216.191.74.38]) by www3.pacific-pages.com (8.8.5) id UAA24920; Sat, 21 Oct 2000 20:24:17 -0600 (MDT) Received: (from david@localhost) by d.tracker (8.9.3/8.9.3) id WAA00804 for questions@freebsd.org; Sat, 21 Oct 2000 22:19:53 GMT (envelope-from david) Date: Sat, 21 Oct 2000 22:19:53 GMT From: David Banning Message-Id: <200010212219.WAA00804@d.tracker> To: questions@freebsd.org Subject: video problems 1600X1200 mode Reply-To: david@banning.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can't get my video to work in 1600X1200 properly in unix but I can in Windows 95. SuperProbe says my graphics card is; First video: Super-VGA Chipset: ATI 264GT3 (3D Rage Pro) (Port Probed) Memory: 8192 Kbytes RAMDAC: ATI Mach64 integrated 15/16/24/32-bit DAC w/clock (with 6-bit wide lookup tables (or in 6-bit mode)) (programmable for 6/8-bit wide lookup tables) Attached graphics coprocessor: Chipset: ATI Mach64 Memory: 8192 Kbytes So in XF86Setup I picked the closest I could; ATI MACH64 GT(264GT) aka 3D Rage which works fine in 1280Xwhatever mode 1600X1200 WILL work if I downgrade color to 16 When, while experimenting, I changed the driver to "ATI Wonder SVGA" at 32 bit, it worked but another problem was created; every time I went out of X, my monitor turned off! (maybe somehow activating power saving auto-off capability) My monitor is a KDS 19" with frequency capability of vertical 50-160 horizontal 30-95 Is what I want possible in FreeBSD? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 19:53: 9 2000 Delivered-To: freebsd-questions@freebsd.org Received: from anagyris.wanadoo.fr (smtp-rt-1.wanadoo.fr [193.252.19.151]) by hub.freebsd.org (Postfix) with ESMTP id 9690837B4CF for ; Sat, 21 Oct 2000 19:53:07 -0700 (PDT) Received: from mahonia.wanadoo.fr (193.252.19.58) by anagyris.wanadoo.fr; 22 Oct 2000 04:53:02 +0200 Received: from [192.168.0.2] (193.252.108.144) by mahonia.wanadoo.fr; 22 Oct 2000 04:53:02 +0200 Mime-Version: 1.0 Message-Id: In-Reply-To: <39F23308.32378.13C4C0@localhost> References: <39F23308.32378.13C4C0@localhost> Date: Sun, 22 Oct 2000 04:53:00 +0200 To: Thierry Thomas From: Jean-Sebastien ROY Subject: Re: Erratic PS/2 mouse with FreeBSD 4.1 Cc: freebsd-questions@freebsd.org Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >The mouse is a PS/2 "Browser Mouse", with 2 buttons and a wheel. >It's seen as a model 4DT. > >And its mouvement is erratic. When the mouse is in motion, the >cursor often jumps upward and to the right. Sometimes the software >(X) reacts as if one of the buttons has been pressed. Same mouse... same problem (with FreeBSD 4.1.1) I do not remember well what I did (I do not use this mouse anymore), but doing the following solved the problem (until the next reboot) : 1-kill moused 2-unplug the mouse 3-plug the mouse again 4-restart moused A better solution would be welcome... js PS: There was a very little thread on this subject on fr.comp.os.bsd, 3 weeks ago. -- Science is like sex: sometimes something useful comes out, but that is not the reason we are doing it - Richard Feynman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 19:54:49 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id D3C5C37B479 for ; Sat, 21 Oct 2000 19:54:47 -0700 (PDT) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AADCC08D0148; Sat, 21 Oct 2000 20:11:24 -0700 Message-ID: <39F25719.B9C80E15@wiegand.org> Date: Sat, 21 Oct 2000 19:55:21 -0700 From: Chip X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.0-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Keeping up to date Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a spare pc with 4.0 on it and would like to learn how to do make world and keep up to date with the latest version. Should I just dive right in with the info in The Complete FreeBSD, chapter 19? I guess -stable would be the better choice for me, I am not a programmer of any kind, I think I might be getting in over my head with -current. I looked at the handbook on the freebsd.org website and it has a much longer version of doing apparently the same thing. Opinions and suggestions wanted from those who are already doing this. -- Chip W. www.wiegand.org FreeBSD - a Better Choice To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 19:58: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pop.idx.com.au (pop.idx.com.au [203.14.30.10]) by hub.freebsd.org (Postfix) with ESMTP id DA87937B6D5 for ; Sat, 21 Oct 2000 19:57:57 -0700 (PDT) Received: from freebsd.freebsd.org (tntwc01-3-126.idx.com.au [203.166.3.126]) by pop.idx.com.au (8.9.3/8.9.3) with SMTP id NAA25962; Sun, 22 Oct 2000 13:57:26 +1100 From: Danny To: Mark Hummel , Philipp Huber , FSD Subject: Re: Ink Jet Printing in FBSD??? Date: Mon, 23 Oct 2000 00:06:05 +1100 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: <39F1BEB0.7B3E8741@ispchannel.com> MIME-Version: 1.0 Message-Id: <00102300104201.00372@freebsd.freebsd.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -Obviously, it has done nothing because you need to start up lpd - In the /usr/local/etc/rc.d/ - Create a startup script which will start /usr/sbin/lpd On Sun, 22 Oct 2000, Mark Hummel wrote: > Philipp, > > Thanks for the reply. I installed apsfilter (which automatically installed > ghostscript and several other print utilities and fonts). It took more than 2 > hours to download (cable modem at 50KBps) and compile on my 200Mhz AMD computer > running FBSD4.1.1R and KDE destop. > > Now that it's installed, what do I do to print? I brought up the KDE word > processor or notepad program, but my Lexmark did nothing. > > Mark > > Philipp Huber wrote: > > > On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > > > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > > > install in order to use my printer? I've read the FAQ and even tried > > > what the handbook describes, but I found out it only applies to line > > > printers like dot matrixes and such. > > > > > > > have a look at the ports ghostscript, apsfilter. you might also want to try > > gimp-print (for ghostscript, my epson 760 works perfectly with it). > > http://gimp-print.sourceforge.net > > > > Philipp > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 20: 8: 2 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pop.idx.com.au (pop.idx.com.au [203.14.30.10]) by hub.freebsd.org (Postfix) with ESMTP id 911C837B479 for ; Sat, 21 Oct 2000 20:07:58 -0700 (PDT) Received: from freebsd.freebsd.org (tntwc01-3-126.idx.com.au [203.166.3.126]) by pop.idx.com.au (8.9.3/8.9.3) with SMTP id OAA28455 for ; Sun, 22 Oct 2000 14:07:55 +1100 From: Danny To: freebsd-questions@FreeBSD.ORG Subject: I-Primus Australia and ADSL Date: Mon, 23 Oct 2000 00:16:30 +1100 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: MIME-Version: 1.0 Message-Id: <00102300211003.00372@freebsd.freebsd.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -Hello - In Australia I-Primius is offering ADSL at $130 a month - with no download limits - no static IP address - I have read everything on PPP over Ethernet etc etc etc etc Question 1) I was wondering if anyone has any good , bad expereince with Iprimus ?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 21:11:32 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web123.yahoomail.com (web123.mail.yahoo.com [205.180.60.191]) by hub.freebsd.org (Postfix) with SMTP id 42BA937B479 for ; Sat, 21 Oct 2000 21:11:31 -0700 (PDT) Received: (qmail 19814 invoked by uid 60001); 22 Oct 2000 04:11:30 -0000 Message-ID: <20001022041130.19813.qmail@web123.yahoomail.com> Received: from [24.21.87.62] by web123.yahoomail.com; Sat, 21 Oct 2000 21:11:30 PDT Date: Sat, 21 Oct 2000 21:11:30 -0700 (PDT) From: Chris Dempsey Subject: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme Selection Prob 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 I realize this is a totally off topic post, but I have tried the sawfish and gnome mailing lists to no avail. Using a new port tree from today, attempting to use the theme-selector-capplet from within the GNOME configuration manager, and it crashes every time. It will not switch out of the default theme. Kinda annoying. Any one else with this problem and/or fixes? Chris Dempsey __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 21:16:35 2000 Delivered-To: freebsd-questions@freebsd.org Received: from baddog.yi.org (24-216-177-184.hsacorp.net [24.216.177.184]) by hub.freebsd.org (Postfix) with ESMTP id 592B737B479 for ; Sat, 21 Oct 2000 21:16:33 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by baddog.yi.org (Postfix) with ESMTP id 36EF91D4E; Sun, 22 Oct 2000 00:16:18 -0400 (EDT) Date: Sun, 22 Oct 2000 00:16:18 EDT From: mike johnson To: Chris Dempsey , freebsd-questions@FreeBSD.ORG Subject: Re: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme Selection Prob Reply-To: ahze@slaughter.necro.edu X-Mailer: Spruce 0.6.5 for X11 w/smtpio 0.7.9 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Message-Id: <20001022041618.36EF91D4E@baddog.yi.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try rm -r ~/.sawfish and restart sawfish and try again. On Sat, 21 Oct 2000, Chris Dempsey wrote: > Date: Sat, 21 Oct 2000 21:11:30 -0700 (PDT) > To: freebsd-questions@FreeBSD.ORG > From: Chris Dempsey > Subject: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme Selection Prob > > I realize this is a totally off topic post, but I have > tried the sawfish and gnome mailing lists to no avail. > > Using a new port tree from today, attempting to use > the theme-selector-capplet from within the GNOME > configuration manager, and it crashes every time. It > will not switch out of the default theme. Kinda > annoying. Any one else with this problem and/or > fixes? > > Chris Dempsey > > __________________________________________________ > Do You Yahoo!? > Yahoo! Messenger - Talk while you surf! It's FREE. > http://im.yahoo.com/ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 21:20:33 2000 Delivered-To: freebsd-questions@freebsd.org Received: from lerami.lerctr.org (lerami.lerctr.org [207.158.72.11]) by hub.freebsd.org (Postfix) with ESMTP id 561BA37B4CF for ; Sat, 21 Oct 2000 21:20:30 -0700 (PDT) Received: (from ler@localhost) by lerami.lerctr.org (8.11.1/8.11.1/20000901) id e9M4KTM08191 for freebsd-questions@FreeBSD.ORG; Sat, 21 Oct 2000 23:20:29 -0500 (CDT) (envelope-from ler) Date: Sat, 21 Oct 2000 23:20:29 -0500 From: Larry Rosenman To: FSD Subject: Re: Ink Jet Printing in FBSD??? Message-ID: <20001021232028.A7903@lerami.lerctr.org> References: <39F1BEB0.7B3E8741@ispchannel.com> <00102300104201.00372@freebsd.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.10i In-Reply-To: <00102300104201.00372@freebsd.freebsd.org>; from dannyh@idx.com.au on Mon, Oct 23, 2000 at 12:06:05AM +1100 X-Mailer: Mutt http://www.mutt.org/ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Danny [001021 21:58]: > -Obviously, it has done nothing because you need to start up lpd > - In the /usr/local/etc/rc.d/ > - Create a startup script which will start /usr/sbin/lpd Err, how about just setting lpd_enable="YES" in /etc/rc.conf? Larry > > > > On Sun, 22 Oct 2000, Mark Hummel wrote: > > Philipp, > > > > Thanks for the reply. I installed apsfilter (which automatically installed > > ghostscript and several other print utilities and fonts). It took more than 2 > > hours to download (cable modem at 50KBps) and compile on my 200Mhz AMD computer > > running FBSD4.1.1R and KDE destop. > > > > Now that it's installed, what do I do to print? I brought up the KDE word > > processor or notepad program, but my Lexmark did nothing. > > > > Mark > > > > Philipp Huber wrote: > > > > > On Fri, Oct 20, 2000 at 06:03:55PM -0500, Mark Hummel wrote: > > > > I have a Lexmark 5700 inkjet printer. What port or ports do I need to > > > > install in order to use my printer? I've read the FAQ and even tried > > > > what the handbook describes, but I found out it only applies to line > > > > printers like dot matrixes and such. > > > > > > > > > > have a look at the ports ghostscript, apsfilter. you might also want to try > > > gimp-print (for ghostscript, my epson 760 works perfectly with it). > > > http://gimp-print.sourceforge.net > > > > > > Philipp > > > > > > 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 -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 (voice) Internet: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 21:34: 6 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.midnighttech.com (hl206-11-251-124.hyperlink.onvoy.com [206.11.251.124]) by hub.freebsd.org (Postfix) with ESMTP id 73B0437B4C5 for ; Sat, 21 Oct 2000 21:34:04 -0700 (PDT) Received: from buzz (192.168.163.3) by gateway.midnighttech.com (Worldmail 1.3.167) for freebsd-questions@FreeBSD.ORG; 21 Oct 2000 22:34:01 -0600 Reply-To: From: "W. Kyle Unice" To: Subject: Setting up sendmail Date: Sat, 21 Oct 2000 22:34:00 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am setting up sendmail and have a gateway to the internet running natd, ipfw, dhcpd, and named. When I sendmail from my internal clients I get "Relaying denied". I add the destination domain to the sendmail.cw file and do a Kill -INT, and then I can send to that domain. But I don't want to have to setup a list for every possible domain. Is there a way to allow mail relaying if the from field is a valid IP address on our internal net or if the sender is a registered user? Thanks in advance, Kyle W. Kyle Unice To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 21:55:16 2000 Delivered-To: freebsd-questions@freebsd.org Received: from web112.yahoomail.com (web112.mail.yahoo.com [205.180.60.82]) by hub.freebsd.org (Postfix) with SMTP id E1FE837B479 for ; Sat, 21 Oct 2000 21:55:13 -0700 (PDT) Received: (qmail 18903 invoked by uid 60001); 22 Oct 2000 04:55:13 -0000 Message-ID: <20001022045513.18902.qmail@web112.yahoomail.com> Received: from [24.21.87.62] by web112.yahoomail.com; Sat, 21 Oct 2000 21:55:13 PDT Date: Sat, 21 Oct 2000 21:55:13 -0700 (PDT) From: Chris Dempsey Subject: Re: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme Selection Prob To: ahze@slaughter.necro.edu Cc: 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 Done. Still crashes. Exact error message: Application "theme-selector-capplet" (process 19278) has crashed due to a fatal error. (Segementation fault) What I did: rm -f'd ~/.sawfish logged out, restarted using startx Thanks for the quick response. Chris --- mike johnson wrote: > > try rm -r ~/.sawfish and restart sawfish and try > again. > > On Sat, 21 Oct 2000, Chris Dempsey wrote: > > Date: Sat, 21 Oct 2000 21:11:30 -0700 (PDT) > > To: freebsd-questions@FreeBSD.ORG > > From: Chris Dempsey > > Subject: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme > Selection Prob > > > > I realize this is a totally off topic post, but I > have > > tried the sawfish and gnome mailing lists to no > avail. > > > > Using a new port tree from today, attempting to > use > > the theme-selector-capplet from within the GNOME > > configuration manager, and it crashes every time. > It > > will not switch out of the default theme. Kinda > > annoying. Any one else with this problem and/or > > fixes? > > > > Chris Dempsey > > > > __________________________________________________ > > Do You Yahoo!? > > Yahoo! Messenger - Talk while you surf! It's > FREE. > > http://im.yahoo.com/ > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message ===== Christopher P Dempsey --------------------- chrisdempsey@yahoo.com (805) 570-9230 __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 22: 8:54 2000 Delivered-To: freebsd-questions@freebsd.org Received: from leopard.acomnet.net.au (leopard.acomnet.net.au [202.61.227.2]) by hub.freebsd.org (Postfix) with ESMTP id 41C4037B479 for ; Sat, 21 Oct 2000 22:08:50 -0700 (PDT) Received: from acomnet.com.au (unverified [202.61.227.100]) by leopard.acomnet.net.au (Rockliffe SMTPRA 2.1.6) with ESMTP id for ; Sun, 22 Oct 2000 12:46:06 +1000 Message-ID: <39F246F0.9512F392@acomnet.com.au> Date: Sun, 22 Oct 2000 11:46:24 +1000 From: Jurek Kuczera X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Printing setup Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, Please help me. I have problems in setting up my HP690C printer on FreeBSD 4.1. I use standard Generic Kernel where the relevant part states: # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da _______________________________________________ My Princap file: HP690C|lp|local line printer:\ :sh: :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs: _________________________________________________ rc.conf entry: # -- sysinstall generated deltas -- # ifconfig_rl0="inet 202.61.227.21 netmask 255.255.255.128" hostname="caracal.acomnet.net.au" linux_enable="YES" moused_enable="YES" ipv6_enable="NO" gateway_enable="YES" defaultrouter="202.61.227.1" nfs_client_enable="YES" usbd_enable="NO" lpd_enable="YES" lpd_flags="" # -- sysinstall generated deltas -- # sendmail_enable="NO" ______________________________________ All seem to work except I get a message that printer is off. Can you suggest something? Best Regards Jurek To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 22:12:40 2000 Delivered-To: freebsd-questions@freebsd.org Received: from femail3.sdc1.sfba.home.com (femail3.sdc1.sfba.home.com [24.0.95.83]) by hub.freebsd.org (Postfix) with ESMTP id 6F20E37B479 for ; Sat, 21 Oct 2000 22:12:38 -0700 (PDT) Received: from home.com ([24.12.186.185]) by femail3.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001022051137.FJMH21891.femail3.sdc1.sfba.home.com@home.com>; Sat, 21 Oct 2000 22:11:37 -0700 Message-ID: <39F27774.5A918994@home.com> Date: Sat, 21 Oct 2000 22:13:24 -0700 From: Rob X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ahze@baddog.yi.org Cc: Chris Dempsey , freebsd-questions@FreeBSD.ORG Subject: Re: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme Selection Prob References: <20001022041618.36EF91D4E@baddog.yi.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Good luck with Gnome 1.2. I finally got mine to start in 2 minutes or less by using icewm. Still, I had to turn on core cleaning in periodic.conf to get rid of the dozens of core files from running it every day. Now I'm using Windowmaker. As nice looking as Afterstep, but has a couple of nice graphical config programs. I think I'll wait a while before trying Gnome again, until the bugs are worked out. Rob. mike johnson wrote: > > try rm -r ~/.sawfish and restart sawfish and try again. > > On Sat, 21 Oct 2000, Chris Dempsey wrote: > > Date: Sat, 21 Oct 2000 21:11:30 -0700 (PDT) > > To: freebsd-questions@FreeBSD.ORG > > From: Chris Dempsey > > Subject: FBSD 411, XFree86 4.0.1, Gnome 1.2 Theme Selection Prob > > > > I realize this is a totally off topic post, but I have > > tried the sawfish and gnome mailing lists to no avail. > > > > Using a new port tree from today, attempting to use > > the theme-selector-capplet from within the GNOME > > configuration manager, and it crashes every time. It > > will not switch out of the default theme. Kinda > > annoying. Any one else with this problem and/or > > fixes? > > > > Chris Dempsey > > > > __________________________________________________ > > Do You Yahoo!? > > Yahoo! Messenger - Talk while you surf! It's FREE. > > http://im.yahoo.com/ > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 22:21:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id B17FC37B4C5 for ; Sat, 21 Oct 2000 22:21:07 -0700 (PDT) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AD25D1D00104; Sat, 21 Oct 2000 22:37:41 -0700 Message-ID: <39F27963.FD3F147B@wiegand.org> Date: Sat, 21 Oct 2000 22:21:39 -0700 From: Chip X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.0-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: Keeping up to date References: <39F25719.B9C80E15@wiegand.org> <20001021223146.A26357@flashcom.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The machine I'll be using is a spare with nothing but fbsd 4.0, so no backups are needed, no concerns about if it dies and needs to be reinstalled. "Corey G." wrote: > > You might be getting in over your head with stable too. In fact, you > really need to read the stable mailing list daily if you are going this > route. It's anything but stable some times. Try using cvsup to upgrade > to release 4.1.1. The information is in the handbook for doing this. > Although it's not easy the first time around it's rather gratifying to > have it work. Just read everything you can in the handbook and search > this list for other discussions. Don't forget the part about backups! > > Corey > > On Sat, Oct 21, 2000 at 07:55:21PM -0700, Chip wrote: > > I have a spare pc with 4.0 on it and would like to learn > > how to do make world and keep up to date with the latest > > version. Should I just dive right in with the info in The > > Complete FreeBSD, chapter 19? I guess -stable would be the > > better choice for me, I am not a programmer of any kind, > > I think I might be getting in over my head with -current. > > I looked at the handbook on the freebsd.org website and it > > has a much longer version of doing apparently the same thing. > > Opinions and suggestions wanted from those who are already > > doing this. > > > > -- > > Chip W. > > www.wiegand.org > > FreeBSD - a Better Choice > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > ---end quoted text--- > > -- > Best Regards, > Corey -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 22:26:11 2000 Delivered-To: freebsd-questions@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 04AB137B479 for ; Sat, 21 Oct 2000 22:26:08 -0700 (PDT) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.03) id AE55C5270096; Sat, 21 Oct 2000 22:42:45 -0700 Message-ID: <39F27A93.ADE887A7@wiegand.org> Date: Sat, 21 Oct 2000 22:26:43 -0700 From: Chip X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.0-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Subject: Re: Keeping up to date References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bandwidth shouldn't be a problem, I have a dsl line. I know how to use cvsup, I use that to keep my ports updated on my most-used machine. I Greg's book is a script to run, on page 379. If I use that script, how do I use it? I can type it all into vi and save it as what kind of file? and how will it be executable? Tim McMillen wrote: > > Hi I just upgraded from 4.1release to 4.1.1. Then I wanted to run KDE1.94 > so I had to CVSup my ports. I ended up getting the 4.1-stable code to. I > have not yet compiled and installed the code but I will soon, so take my > advice for what it's worth. > If you have a decent bandwidth connection I recommend CVSup. It > was really easy. > > I used the cvsupit method. You just install the package and then > choose which branch. You probably want 4.1-stable (it's just past 4.1.1 > now but that's what the choice is called). Read the whole section 18 in > the handbook. It answers your question perfectly. > You don't want -current. It's BLEEDING edge code. If you don't > want to learn the steps to build world you may want to try the snapshots > method. Then you just install all over. Just back up some config files > and stuff first and away you go. Hope that helps > > Tim > > On Sat, 21 Oct 2000, Chip wrote: > > > I have a spare pc with 4.0 on it and would like to learn > > how to do make world and keep up to date with the latest > > version. Should I just dive right in with the info in The > > Complete FreeBSD, chapter 19? I guess -stable would be the > > better choice for me, I am not a programmer of any kind, > > I think I might be getting in over my head with -current. > > I looked at the handbook on the freebsd.org website and it > > has a much longer version of doing apparently the same thing. > > Opinions and suggestions wanted from those who are already > > doing this. > > > > -- > > Chip W. > > www.wiegand.org > > FreeBSD - a Better Choice > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- Chip W. www.wiegand.org Alternative Operating Systems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 22:38:23 2000 Delivered-To: freebsd-questions@freebsd.org Received: from u2.farm.idt.net (u2.farm.idt.net [169.132.8.11]) by hub.freebsd.org (Postfix) with ESMTP id 083C437B4CF for ; Sat, 21 Oct 2000 22:38:12 -0700 (PDT) Received: from idt.net (ppp-29.ts-3-bay.hck.idt.net [169.132.56.125]) by u2.farm.idt.net (8.9.3/8.9.3) with ESMTP id BAA09586 for ; Sun, 22 Oct 2000 01:38:07 -0400 (EDT) Message-ID: <39F27C45.9080907@idt.net> Date: Sun, 22 Oct 2000 01:33:57 -0400 From: "E. J. Cerejo" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; m18) Gecko/20000929 Netscape6/6.0b3 X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Subject: PPP help please Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've installed FreeBSD 4.1.1, and now I'm fighting with myself to setup this ppp thing, I've read the chapter in the manual and still can't get it to work, it dials out and I get all of these as it logs on: ppP, pPP, PPP OK and I get lost on how to get back to my regular prompt so I can use lynx and I've pressing Ctrl+Z and that suspends it and gets me back to the prompt but I can't ping anybody, I can't do nslookup or ftp or anything it just hangs there. On the bottom there's a copy of all the files that edited, any help would be greatly appreciated. MY ppp.log: Oct 21 18:00:00 ecerejo newsyslog[337]: logfile turned over Oct 21 18:12:12 ecerejo ppp[206]: Phase: Using interface: tun0 Oct 21 18:12:12 ecerejo ppp[206]: Phase: deflink: Created in closed state Oct 21 18:12:12 ecerejo ppp[206]: Warning: Carrier: Invalid log value Oct 21 18:12:12 ecerejo ppp[206]: Warning: Usage: set log [local] [+|-] async|cbcp|ccp|chat|command|connect|debug|dns|hdlc|id0 |ipcp|lcp|lqm|phase|physical|sync|tcp/ip|timer|tun... Oct 21 18:12:12 ecerejo ppp[206]: Command: default: set speed 115200 Oct 21 18:12:12 ecerejo ppp[206]: Command: default: set dial ABORT BUSY ABORT NO\sCARRIER TIMEOUT 5 "" AT OK-AT-OK ATE1Q0 OK \dATDT\T TIMEOUT 40 CONNECT Oct 21 18:12:12 ecerejo ppp[206]: Command: default: set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 Oct 21 18:12:12 ecerejo ppp[206]: Command: default: set timeout 120 Oct 21 18:12:12 ecerejo ppp[206]: Command: default: add default HISADDR Oct 21 18:12:12 ecerejo ppp[206]: Command: default: enable dns Oct 21 18:12:12 ecerejo ppp[206]: Command: default: alias enable yes Oct 21 18:12:12 ecerejo ppp[206]: Command: idt: set phone 9960976 Oct 21 18:12:12 ecerejo ppp[206]: Command: idt: set authname ecerejo Oct 21 18:12:12 ecerejo ppp[206]: Command: idt: set authkey ******** Oct 21 18:12:12 ecerejo ppp[206]: Command: idt: set openmode active Oct 21 18:12:12 ecerejo ppp[207]: Phase: PPP Started (auto mode). Oct 21 18:12:29 ecerejo ppp[208]: Phase: Using interface: tun1 Oct 21 18:12:29 ecerejo ppp[208]: Phase: deflink: Created in closed state Oct 21 18:12:29 ecerejo ppp[208]: Warning: Carrier: Invalid log value Oct 21 18:12:29 ecerejo ppp[208]: Warning: Usage: set log [local] [+|-] async|cbcp|ccp|chat|command|connect|debug|dns|hdlc|id0 |ipcp|lcp|lqm|phase|physical|sync|tcp/ip|timer|tun... Oct 21 18:12:29 ecerejo ppp[208]: Command: default: set speed 115200 Oct 21 18:12:29 ecerejo ppp[208]: Command: default: set dial ABORT BUSY ABORT NO\sCARRIER TIMEOUT 5 "" AT OK-AT-OK ATE1Q0 OK \dATDT\T TIMEOUT 40 CONNECT Oct 21 18:12:29 ecerejo ppp[208]: Command: default: set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 Oct 21 18:12:29 ecerejo ppp[208]: Command: default: set timeout 120 Oct 21 18:12:29 ecerejo ppp[208]: Command: default: add default HISADDR Oct 21 18:12:29 ecerejo ppp[208]: Warning: Add route failed: default already exists Oct 21 18:12:29 ecerejo ppp[208]: Command: default: enable dns Oct 21 18:12:29 ecerejo ppp[208]: Command: default: alias enable yes Oct 21 18:12:29 ecerejo ppp[208]: Phase: PPP Started (interactive mode). Oct 21 18:12:44 ecerejo ppp[208]: Command: /dev/tty: dial idt -auto Oct 21 18:12:47 ecerejo ppp[208]: Command: /dev/tty: dial idt Oct 21 18:12:47 ecerejo ppp[208]: Command: idt: set phone 9960976 Oct 21 18:12:47 ecerejo ppp[208]: Command: idt: set authname ecerejo Oct 21 18:12:47 ecerejo ppp[208]: Command: idt: set authkey ******** Oct 21 18:12:47 ecerejo ppp[208]: Command: idt: set openmode active Oct 21 18:12:47 ecerejo ppp[208]: Phase: bundle: Establish Oct 21 18:12:47 ecerejo ppp[208]: Phase: deflink: closed -> opening Oct 21 18:12:47 ecerejo ppp[208]: Phase: deflink: Connected! Oct 21 18:12:47 ecerejo ppp[208]: Phase: deflink: opening -> dial Oct 21 18:12:47 ecerejo ppp[208]: Chat: Phone: 9960976 Oct 21 18:12:47 ecerejo ppp[208]: Chat: deflink: Dial attempt 1 of 1 Oct 21 18:12:47 ecerejo ppp[208]: Chat: Send: AT^M Oct 21 18:12:47 ecerejo ppp[208]: Chat: Expect(5): OK Oct 21 18:12:47 ecerejo ppp[208]: Chat: Received: AT^M^M Oct 21 18:12:47 ecerejo ppp[208]: Chat: Received: OK^M Oct 21 18:12:47 ecerejo ppp[208]: Chat: Send: ATE1Q0^M Oct 21 18:12:47 ecerejo ppp[208]: Chat: Expect(5): OK Oct 21 18:12:47 ecerejo ppp[208]: Chat: Received: ATE1Q0^M^M Oct 21 18:12:47 ecerejo ppp[208]: Chat: Received: OK^M Oct 21 18:12:47 ecerejo ppp[208]: Chat: Send: ATDT9960976^M Oct 21 18:12:49 ecerejo ppp[208]: Chat: Expect(40): CONNECT Oct 21 18:13:13 ecerejo ppp[208]: Chat: Received: ATDT9960976^M^M Oct 21 18:13:13 ecerejo ppp[208]: Chat: Received: CONNECT 115200^M Oct 21 18:13:13 ecerejo ppp[208]: Phase: deflink: dial -> carrier Oct 21 18:13:14 ecerejo ppp[208]: Phase: deflink: /dev/cuaa1: CD detected Oct 21 18:13:14 ecerejo ppp[208]: Phase: deflink: carrier -> login Oct 21 18:13:14 ecerejo ppp[208]: Phase: deflink: login -> lcp Oct 21 18:13:14 ecerejo ppp[208]: LCP: FSM: Using "deflink" as a transport Oct 21 18:13:14 ecerejo ppp[208]: LCP: deflink: State change Initial --> Closed Oct 21 18:13:14 ecerejo ppp[208]: LCP: deflink: State change Closed --> Stopped Oct 21 18:13:15 ecerejo ppp[208]: LCP: deflink: LayerStart Oct 21 18:13:15 ecerejo ppp[208]: LCP: deflink: SendConfigReq(1) state = Stopped Oct 21 18:13:15 ecerejo ppp[208]: LCP: ACFCOMP[2] Oct 21 18:13:15 ecerejo ppp[208]: LCP: PROTOCOMP[2] Oct 21 18:13:15 ecerejo ppp[208]: LCP: ACCMAP[6] 0x00000000 Oct 21 18:13:15 ecerejo ppp[208]: LCP: MRU[4] 1500 Oct 21 18:13:15 ecerejo ppp[208]: LCP: MAGICNUM[6] 0x71fe786c Oct 21 18:13:15 ecerejo ppp[208]: LCP: deflink: State change Stopped --> Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: SendConfigReq(1) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: LCP: ACFCOMP[2] Oct 21 18:13:18 ecerejo ppp[208]: LCP: PROTOCOMP[2] Oct 21 18:13:18 ecerejo ppp[208]: LCP: ACCMAP[6] 0x00000000 Oct 21 18:13:18 ecerejo ppp[208]: LCP: MRU[4] 1500 Oct 21 18:13:18 ecerejo ppp[208]: LCP: MAGICNUM[6] 0x71fe786c Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: RecvConfigReq(0) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: LCP: ACCMAP[6] 0x00000000 Oct 21 18:13:18 ecerejo ppp[208]: LCP: AUTHPROTO[4] 0xc023 (PAP) Oct 21 18:13:18 ecerejo ppp[208]: LCP: MAGICNUM[6] 0x0dc7f786 Oct 21 18:13:18 ecerejo ppp[208]: LCP: PROTOCOMP[2] Oct 21 18:13:18 ecerejo ppp[208]: LCP: ACFCOMP[2] Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: SendConfigAck(0) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: LCP: ACCMAP[6] 0x00000000 Oct 21 18:13:18 ecerejo ppp[208]: LCP: AUTHPROTO[4] 0xc023 (PAP) Oct 21 18:13:18 ecerejo ppp[208]: LCP: MAGICNUM[6] 0x0dc7f786 Oct 21 18:13:18 ecerejo ppp[208]: LCP: PROTOCOMP[2] Oct 21 18:13:18 ecerejo ppp[208]: LCP: ACFCOMP[2] Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: State change Req-Sent --> Ack-Sent Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: RecvConfigAck(1) state = Ack-Sent Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: State change Ack-Sent --> Opened Oct 21 18:13:18 ecerejo ppp[208]: LCP: deflink: LayerUp Oct 21 18:13:18 ecerejo ppp[208]: Phase: bundle: Authenticate Oct 21 18:13:18 ecerejo ppp[208]: Phase: deflink: his = PAP, mine = none Oct 21 18:13:18 ecerejo ppp[208]: Phase: Pap Output: ecerejo ******** Oct 21 18:13:18 ecerejo ppp[208]: Phase: Pap Input: SUCCESS () Oct 21 18:13:18 ecerejo ppp[208]: IPCP: Using trigger address 0.0.0.0 Oct 21 18:13:18 ecerejo ppp[208]: CCP: FSM: Using "deflink" as a transport Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: State change Initial --> Closed Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: LayerStart. Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: SendConfigReq(1) state = Closed Oct 21 18:13:18 ecerejo ppp[208]: CCP: DEFLATE[4] win 15 Oct 21 18:13:18 ecerejo ppp[208]: CCP: PRED1[2] Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: State change Closed --> Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: Phase: deflink: lcp -> open Oct 21 18:13:18 ecerejo ppp[208]: Phase: bundle: Network Oct 21 18:13:18 ecerejo ppp[208]: IPCP: FSM: Using "deflink" as a transport Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: State change Initial --> Closed Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: LayerStart. Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: SendConfigReq(1) state = Closed Oct 21 18:13:18 ecerejo ppp[208]: IPCP: IPADDR[6] 0.0.0.0 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: COMPPROTO[6] 16 VJ slots with slot compression Oct 21 18:13:18 ecerejo ppp[208]: IPCP: PRIDNS[6] 198.4.75.100 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: SECDNS[6] 198.4.75.69 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: State change Closed --> Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: RecvConfigReq(1) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: IPCP: COMPPROTO[6] 16 VJ slots with slot compression Oct 21 18:13:18 ecerejo ppp[208]: IPCP: IPADDR[6] 169.132.63.253 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: SendConfigAck(1) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: IPCP: COMPPROTO[6] 16 VJ slots with slot compression Oct 21 18:13:18 ecerejo ppp[208]: IPCP: IPADDR[6] 169.132.63.253 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: State change Req-Sent --> Ack-Sent Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: RecvConfigReq(2) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: CCP: MPPC[6] Oct 21 18:13:18 ecerejo ppp[208]: CCP: STAC[5] Oct 21 18:13:18 ecerejo ppp[208]: CCP: BSD[3] Oct 21 18:13:18 ecerejo ppp[208]: CCP: PRED1[2] Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: SendConfigRej(2) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: CCP: MPPC[6] Oct 21 18:13:18 ecerejo ppp[208]: CCP: STAC[5] Oct 21 18:13:18 ecerejo ppp[208]: CCP: BSD[3] Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: RecvConfigRej(1) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: CCP: DEFLATE[4] win 15 Oct 21 18:13:18 ecerejo ppp[208]: CCP: deflink: SendConfigReq(2) state = Req-Sent Oct 21 18:13:18 ecerejo ppp[208]: CCP: PRED1[2] Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: RecvConfigNak(1) state = Ack-Sent Oct 21 18:13:18 ecerejo ppp[208]: IPCP: IPADDR[6] 169.132.56.21 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: IPADDR[6] changing address: 0.0.0.0 --> 169.132.56.21 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: deflink: SendConfigReq(2) state = Ack-Sent Oct 21 18:13:18 ecerejo ppp[208]: IPCP: IPADDR[6] 169.132.56.21 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: COMPPROTO[6] 16 VJ slots with slot compression Oct 21 18:13:18 ecerejo ppp[208]: IPCP: PRIDNS[6] 198.4.75.100 Oct 21 18:13:18 ecerejo ppp[208]: IPCP: SECDNS[6] 198.4.75.69 Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: RecvConfigReq(3) state = Req-Sent Oct 21 18:13:19 ecerejo ppp[208]: CCP: PRED1[2] Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: SendConfigAck(3) state = Req-Sent Oct 21 18:13:19 ecerejo ppp[208]: CCP: PRED1[2] Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: State change Req-Sent --> Ack-Sent Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: RecvConfigAck(2) state = Ack-Sent Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: State change Ack-Sent --> Opened Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: LayerUp. Oct 21 18:13:19 ecerejo ppp[208]: CCP: Predictor1: Input channel reset Oct 21 18:13:19 ecerejo ppp[208]: CCP: Predictor1: Output channel reset Oct 21 18:13:19 ecerejo ppp[208]: CCP: deflink: Out = PRED1[1], In = PRED1 [1] Oct 21 18:13:19 ecerejo ppp[208]: IPCP: deflink: RecvConfigAck(2) state = Ack-Sent Oct 21 18:13:19 ecerejo ppp[208]: IPCP: deflink: State change Ack-Sent --> Opened Oct 21 18:13:19 ecerejo ppp[208]: IPCP: deflink: LayerUp. Oct 21 18:13:19 ecerejo ppp[208]: IPCP: myaddr 169.132.56.21 hisaddr = 169.132.63.253 Oct 21 18:13:19 ecerejo ppp[208]: Command: idt: delete ALL Oct 21 18:13:19 ecerejo ppp[208]: Command: idt: add 0 0 HISADDR Oct 21 18:13:19 ecerejo ppp[208]: Warning: Add route failed: default already exists Oct 21 18:14:11 ecerejo ppp[208]: Command: /dev/tty: quit Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: LayerDown: 169.132.56.21 Oct 21 18:14:11 ecerejo ppp[208]: IPCP: Using trigger address 0.0.0.0 Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: SendTerminateReq(3) state = Opened Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: State change Opened --> Closing Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: RecvTerminateAck(3) state = Closing Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: LayerFinish. Oct 21 18:14:11 ecerejo ppp[208]: IPCP: Connect time: 53 secs: 0 octets in, 0 octets out Oct 21 18:14:11 ecerejo ppp[208]: IPCP: : 0 packets in, 0 packets out Oct 21 18:14:11 ecerejo ppp[208]: IPCP: total 0 bytes/sec, peak 0 bytes/sec on Sat Oct 21 18:14:11 2000 Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: State change Closing --> Closed Oct 21 18:14:11 ecerejo ppp[208]: Phase: bundle: Terminate Oct 21 18:14:11 ecerejo ppp[208]: CCP: deflink: LayerDown. Oct 21 18:14:11 ecerejo ppp[208]: CCP: deflink: State change Opened --> Starting Oct 21 18:14:11 ecerejo ppp[208]: CCP: deflink: LayerFinish. Oct 21 18:14:11 ecerejo ppp[208]: CCP: deflink: State change Starting --> Initial Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: LayerDown Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: SendTerminateReq(2) state = Opened Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: State change Opened --> Closing Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: open -> lcp Oct 21 18:14:11 ecerejo ppp[208]: IPCP: deflink: State change Closed --> Initial Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: RecvTerminateAck(2) state = Closing Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: LayerFinish Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: State change Closing --> Closed Oct 21 18:14:11 ecerejo ppp[208]: LCP: deflink: State change Closed --> Initial Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: Disconnected! Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: lcp -> logout Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: logout -> hangup Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: Disconnected! Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: Connect time: 84 secs: 273 octets in, 365 octets out Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: : 10 packets in, 13 packets out Oct 21 18:14:11 ecerejo ppp[208]: Phase: total 7 bytes/sec, peak 117 bytes/sec on Sat Oct 21 18:14:11 2000 Oct 21 18:14:11 ecerejo ppp[208]: Phase: deflink: hangup -> closed Oct 21 18:14:11 ecerejo ppp[208]: Phase: bundle: Dead Oct 21 18:14:11 ecerejo ppp[208]: Phase: PPP Terminated (normal). -------------------------------x------------------------------------------- MY ppp.conf: ################################################################# # PPP Sample Configuration File # Originally written by Toshiharu OHNO # Simplified 5/14/1999 by wself@cdrom.com # # See /usr/share/examples/ppp/ for some examples # # $FreeBSD: src/etc/ppp/ppp.conf,v 1.2.2.1 2000/08/18 08:33:02 jhb Exp $ ################################################################# default: set device /dev/cuaa1 # set log Phase Chat LCP IPCP CCP tun command set log Phase Chat Connect Carrier lcp ipcp ccp command set speed 115200 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 set timeout 120 # 3 mintue idle timer (the default) add default HISADDR # Add a (sticky) default route enable dns # request DNS info (for resolv.conf) alias enable yes #papchap: # # edit the next three lines and replace the items in caps with # the values which have been assigned by your ISP. # idt: set phone 9960976 set authname ecerejo set authkey xxxxxxxx set openmode active -----------------------------------------x--------------------------------- MY ppp.linkup: idt: delete ALL add 0 0 HISADDR ----------------------------------------x---------------------------------- MY host.conf: # $FreeBSD: src/etc/host.conf,v 1.6 1999/08/27 23:23:41 peter Exp $ # First try the /etc/hosts file hosts # Now try the nameserver next. bind # If you have YP/NIS configured, uncomment the next line # nis ---------------------------------------x----------------------------------- MY hosts: 127.0.0.1 localhost.idt.net localhost 127.0.0.1 localhost.idt.net 10.0.0.1 ecerejo.idt.net ecerejo 10.0.0.1 ecerejo.idt.net ----------------------------------------x---------------------------------- MY resolv.conf: domain idt.net nameserver 198.4.75.100 nameserver 198.4.75.69 ----------------------------------------x---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 23:11:12 2000 Delivered-To: freebsd-questions@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id 05A5537B4D7 for ; Sat, 21 Oct 2000 23:11:10 -0700 (PDT) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id CAA00835 for ; Sun, 22 Oct 2000 02:11:03 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Sun, 22 Oct 2000 02:11:02 -0400 (EDT) From: Brett Taylor To: freebsd-questions@freebsd.org Subject: problems with re-install Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I am having problems with a re-install. I got a new disk to add to my system so I decided to reinstall (since I was back at 3.4 still anyway) instead of doing a long-ish make world (I have really good network connectivity). I installed the new disk and initially put /, /var, and some swap on the old disk, with /usr on the new. Everything installed great (or so it appeared). It would NOT boot however. I figured I screwed something up with the install or putting the new disk in so I removed the new disk and tried reinstalling solely on the old disk. No go - still wouldn't reboot. Tried many more times - once I got the dreaded "missing operating system" but most of the time it would just sit there. The final time I tried I checked fdisk before rebooting from sysinstall - it showed da0 being active. After rebooting (and choosing the correct kernel after booting from the floppies) I checked again - fdisk output follows: ******* Working on device /dev/da0 ******* parameters extracted from in-core disklabel are: cylinders=261 heads=255 sectors/track=63 (16065 blks/cyl) parameters to be used for BIOS calculations are: cylinders=261 heads=255 sectors/track=63 (16065 blks/cyl) Media sector size is 512 Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 1 is: sysid 165,(FreeBSD/NetBSD/386BSD) start 63, size 4192902 (2047 Meg), flag 80 (active) beg: cyl 0/ sector 1/ head 1; end: cyl 260/ sector 63/ head 254 The data for partition 2 is: The data for partition 3 is: The data for partition 4 is: --------------------------------------- /etc/fstab: ------------------------------------------------- # Device Mountpoint FStype Options Dump Pass# /dev/da0s1b none swap sw 0 0 /dev/da0s1a / ufs rw 1 1 /dev/da0s1f /usr ufs rw 2 2 /dev/da0s1e /var ufs rw 2 2 /dev/acd0c /cdrom cd9660 ro,noauto 0 0 proc /proc procfs rw 0 0 ------------------------------------------------- I can't figure out what is going wrong - I forced it to boot by loading the kernel from the floppy, but sheesh. The machine is a Digital 200i, Adaptec 2940UW controller using a Seagate Barracuda disk (the original). Could the "warning" in the fdisk output be a clue? I'm pretty clueless when it comes to BIOS and hardware problems. :-) Brett ***************************************************** Dr. Brett Taylor brett@peloton.runet.edu * Dept of Chem and Physics * Curie 39A (540) 831-6147 * ***************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 23:43: 4 2000 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.chat.ru (mail1.chat.ru [212.24.32.14]) by hub.freebsd.org (Postfix) with ESMTP id 5701E37B4C5 for ; Sat, 21 Oct 2000 23:43:00 -0700 (PDT) Received: from gnu.chat.ru ([212.24.32.10] helo=mail.chat.ru) by mail1.chat.ru with esmtp (Exim 3.15 #1) id 13nEop-00089r-00 for freebsd-questions@freebsd.org; Sun, 22 Oct 2000 10:41:19 +0400 Received: from p26.gw.lvl.ru ([194.67.189.26] helo=chat.ru) by mail.chat.ru with asmtp (Exim 3.16 #1) id 13nEqQ-000O0d-00 for freebsd-questions@freebsd.org; Sun, 22 Oct 2000 10:42:59 +0400 Message-ID: <39F28EC8.A15E6FCD@chat.ru> Date: Sun, 22 Oct 2000 10:52:56 +0400 From: jadream X-Mailer: Mozilla 4.72 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: strange connects through UNIX sockets Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit X-Authorized: jadream Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I have generic i386 machine with FreeBSD 3.2 on it. There's two programs - server and client - both compiled with -pthread option as I'm using kernel threads there. Client is connecting to server via local UNIX socket. That's an idea :0) In reality. For Server: socket() returns some meaning socket handle bind() returns 0 showing binding to /DS1/req01 is OK chmod() returns 0 telling making pathname avaliable for everyone is OK listen() returns 0 too accept() hangs endlessly For Client: socket() returns good handle connect() returns 0 showing connection is OK send() is hanging endlessly (if I use IPC_NOWAIT flag - returns valid size of a sent message but sever's accept() still hangs) Maybe I'm missing something evident? :0) Thanks for any help, Alex. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 21 23:54:20 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gus33.homeip.net (hybrid-024-221-140-147.az.sprintbbd.net [24.221.140.147]) by hub.freebsd.org (Postfix) with ESMTP id F223E37B4D7 for ; Sat, 21 Oct 2000 23:54:15 -0700 (PDT) Received: from localhost (kdavey@localhost [127.0.0.1]) by gus33.homeip.net (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id XAA00715; Sat, 21 Oct 2000 23:36:34 -0700 Date: Sat, 21 Oct 2000 23:36:33 -0700 (MST) From: Keith Davey To: bk Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Root-Like telnet account In-Reply-To: <14122691348.20001020183900@x-itec.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 Fri, 20 Oct 2000, bk wrote: > Hello Travor, >=20 > Monday, October 16, 2000, 12:34:20 AM, you wrote: >=20 > >> Hi, > >> > >> I just installed FreeBSD on an older system I have, just to try it out= , > MG> and would like to be able to telnet into it, and configure things rem= otely. > MG> Is is possible to make it so that I can login from root, or that anot= her > MG> account has many of the same pr > >> velages as root, such as modifying configuration files? >=20 > look at /etc/ttys and add "secure" on the terminal you want to connect > to. if you do not know the right termial, login with a normal account > remotely and use the command "w" to see who is online. >=20 > Example: >=20 > localhost# w > 8:46PM up 1:11, 2 users, load averages: 0.01, 0.00, 0.00 > USER TTY FROM LOGIN@ IDLE WHAT > root v0 - 7:36PM 1:08 -csh (csh) > blabla p0 master 8:39PM - w >=20 > i am looging in as root remotely from v0 on the console and from p0 > remotely. so i have to add secure to the ttyp0 pseudo terminal. >=20 > If you want to keep your bsd system secure, i suggest you not to allow > root to login remotely. > Create a user with adduser command and put this user into the group > "wheel". login with this user and enter "su" to switch to root > account. This is more secure, because an external attacker do not know > what account is required to logon or to be root. Another option is to use SSH with RSA key encription only set up. This is a very conveniant and secure way to remotly administrate a box. Keith Davey Tivoli Systems SNIP > --=20 > Boris K=F6ster >=20 >=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