From owner-freebsd-questions Sun Oct 13 0: 4:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA56437B401 for ; Sun, 13 Oct 2002 00:04:35 -0700 (PDT) Received: from csts1.csts.org (12-229-161-203.client.attbi.com [12.229.161.203]) by mx1.FreeBSD.org (Postfix) with SMTP id 3150A43E7B for ; Sun, 13 Oct 2002 00:04:35 -0700 (PDT) (envelope-from calvins@csts.org) Received: (qmail 21540 invoked from network); 13 Oct 2002 07:07:58 -0000 Received: from unknown (HELO ces) (192.168.1.151) by 0 with SMTP; 13 Oct 2002 07:07:58 -0000 Message-ID: <000d01c27286$e4e82b40$9701a8c0@home> From: "Calvin Smith" To: Subject: ipnat and Netmeeting Date: Sun, 13 Oct 2002 00:05:20 -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 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I realize that this question has been hashed over in the past, but in checking the archives and all the information I could find on the h323 proxy, I get the impression that it should now work. 1st, has anyone been able to make this work with FreeBSD 4.6. and 2nd if that is the case can anyone tell me what I am doing wrong. I am able to establish a netmeeting session, but as in most of the past messages in the archives, I can not hear the other party even though they can hear me. I also tried the "openh323proxy" with the same results. Following is my setup. FreeBSD 4.6-RELEASE ipf: IP Filter: v3.4.27 (336) Kernel: IP Filter: v3.4.27 Running: yes Log Flags: 0 = none set Default: block all, Logging: available Active list: 0 Network setup= LAN with 8 PC's 1 FreeBSD running dansguardian, squid and qmail. 1 FreeBSD gateway/firewall. gateway/firewall internal ip 192.168.1.1 proxy/dansguardian ip 192.168.1.10 IP Nat rules: (external ip have been changed to x.x.x.x) rdr xl0 x.x.x.x/32 port 25 -> 192.168.1.10 port 25 rdr xl0 x.x.x.x/32 port 22 -> 192.168.1.10 port 22 map xl0 192.168.1.0/24 -> 0/32 proxy port 1720 h323/tcp map xl0 192.168.1.0/24 -> 0/32 proxy port 21 ftp/tcp map xl0 192.168.1.0/24 -> 0/32 portmap tcp/udp 20000:40000 map xl0 192.168.1.0/24 -> 0/32 IP filter rules # # xl0 = WAN # de0 = LAN # # ############################ # Generic to all interfaces ############################# # block in log quick all with opt lsrr block in log quick all with opt ssrr block in log quick all with ipopts block in log quick proto tcp all with short block in log quick proto icmp all with frag ######################## # Outside Interface ######################## #---------------------- # Allow out all TCP, UDP, and ICMP traffic and keep state on it # so that it's allowed back in. #---------------------- pass out quick on xl0 proto tcp from any to any flags S keep state pass out quick on xl0 proto udp from any to any keep state pass out quick on xl0 proto icmp from any to any keep state block out log quick on xl0 all #----------------------- # Allow bootp traffic in from my ISP's DHCP server only. # and any other needed traffic #----------------------- pass in quick on xl0 proto udp from x.x.x.x/32 to any port = 68 keep state pass in quick on xl0 proto tcp from any to 192.168.1.10 port = 25 flags S keep state keep frags pass in quick on xl0 proto tcp from any to 192.168.1.10 port = 22 flags S keep state keep frags #----------------------- # Block and log all remaining traffic coming into the firewall # - Block TCP with a RST # (to make it appear as if the service isn't listening) # - Block UDP with an ICMP Port Unreachable # (to make it appear as if the service ins't listening) # - Block all remaining traffic #------------------------ block return-rst in log quick on xl0 proto tcp from any to any block return-icmp-as-dest(port-unr) in log quick on xl0 proto udp from any to any block in log quick on xl0 all ############################# # Inside Interface ############################# #--------------------------- # Allow out all TCP, UDP, and ICMP traffic & keep state #--------------------------- pass out quick on de0 proto tcp from any to any keep state pass out quick on de0 proto udp from any to any keep state pass out quick on de0 proto icmp from any to any keep state pass out quick on de0 proto gre from any to any keep state block out log quick on de0 all #-------------------------- # Block in on LAN misc. #-------------------------- block in quick on de0 proto tcp from any to any port = 137 block in quick on de0 proto tcp from any to any port = 138 block in quick on de0 proto tcp from any to any port = 139 block in quick on de0 proto udp from any to any port = 137 block in quick on de0 proto udp from any to any port = 138 block in quick on de0 proto udp from any to any port = 139 block in quick on de0 proto tcp from any port = 137 to any block in quick on de0 proto tcp from any port = 138 to any block in quick on de0 proto tcp from any port = 139 to any block in quick on de0 proto udp from any port = 137 to any block in quick on de0 proto udp from any port = 138 to any block in quick on de0 proto udp from any port = 139 to any #-------------------------- # Allow in TCP, UDP, and ICMP traffic & keep state #-------------------------- pass in quick on de0 proto tcp from any to any port = 22 keep state pass in quick on de0 proto tcp from any to any port = 25 keep state pass in quick on de0 proto tcp from any to any port = 110 keep state pass in quick on de0 proto tcp from any to any port = 1863 flags S keep state keep frags pass in quick on de0 proto tcp from 192.168.1.10 to any keep state pass in quick on de0 proto tcp from 192.168.1.151 to any keep state #this is the pc I do netmeeting from pass in quick on de0 proto udp from any to any keep state pass in quick on de0 proto icmp from any to any keep state pass in quick on de0 proto gre from any to any keep state block in log quick on de0 all ############################## # Loopback Interface ############################## pass in quick on lo0 all pass out quick on lo0 all Thanks for any information Calvin Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 0:13:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0250937B404 for ; Sun, 13 Oct 2002 00:13:39 -0700 (PDT) Received: from main.valabs.spb.ru (dialup95-74.ip.PeterStar.net [217.195.95.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3230F43E7B for ; Sun, 13 Oct 2002 00:13:36 -0700 (PDT) (envelope-from VAleks@valabs.spb.ru) Received: from main (main [127.0.0.1]) by main.valabs.spb.ru (Postfix) with SMTP id F2ABB22525 for ; Sun, 13 Oct 2002 11:13:15 +0400 (MSD) Date: Sun, 13 Oct 2002 11:13:15 +0400 From: =?KOI8-R?B?98HMxc7Uyc4g4S4g4czFy9PFxdc=?= To: freebsd-questions@freebsd.org Subject: Merging CVS'es Message-Id: <20021013111315.51c56a47.VAleks@valabs.spb.ru> Organization: VAleks LABs X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, everyone! Is there any way to merge different CVSROOT's into one tree? I'm managing to create a completly unofficial xBSD cvsup site for local users and want to have all of FreeBSD/NetBSD/OpenBSD cvs'es merged together. Or this would be easier if I make them split: one cvs server for one CVSROOT? -- With best regards, Valentin A. Alekseev E-mail: V.Alekseev@valabs.spb.ru Web: http://www.valabs.spb.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 0:51: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B71137B401 for ; Sun, 13 Oct 2002 00:51:06 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEB5943EBE for ; Sun, 13 Oct 2002 00:51:04 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9D7nqKg040735; Sun, 13 Oct 2002 08:49:52 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9D7nkjV040734; Sun, 13 Oct 2002 08:49:46 +0100 (BST) Date: Sun, 13 Oct 2002 08:49:46 +0100 From: Matthew Seaman To: "DaleCo, S.P.---'the solutions people'" Cc: Matthew Seaman , Dave Feustel , Josh Paetzel , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.8 and FreeBSD 5.0 Message-ID: <20021013074946.GA40523@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , "DaleCo, S.P.---'the solutions people'" , Matthew Seaman , Dave Feustel , Josh Paetzel , freebsd-questions@FreeBSD.ORG References: <20021012164929.GB36537@happy-idiot-talk.infracaninophi> <00f901c27252$48766a80$fa00a8c0@DaleCoportable> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00f901c27252$48766a80$fa00a8c0@DaleCoportable> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-11.2 required=5.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_02_03,USER_AGENT, USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 12, 2002 at 07:48:42PM -0500, DaleCo, S.P.---'the solutions people' wrote: > So, will I be still on the 4.x branch with a > RELENG_4 tag in my supfiles? (I'm assuming so, > from my understanding, which might have come > from actually reading the Handbook :-) Yes. When 5.0 goes stable a new 'RELENG_5' branch will be created, which tag you'll need to insert into your supfiles if you want to switch to 5.x. At the same time as the creation of RELENG_5, current will become 6-CURRENT. Of course, upgrading from 4.x to 5.x is undoubtedly going to be a bit more involved than just changing the tags in the supfile and going through the usual build{world,kernel} sequence. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 1: 6: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8C5F37B401 for ; Sun, 13 Oct 2002 01:06:04 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 45B4443E6E for ; Sun, 13 Oct 2002 01:06:03 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 19866 invoked from network); 13 Oct 2002 08:05:55 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 13 Oct 2002 08:05:55 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 2A2022FDAB2; Sun, 13 Oct 2002 10:05:53 +0200 (CEST) Date: Sun, 13 Oct 2002 10:05:52 +0200 From: Roman Neuhauser To: DiaDems@Datasync.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ls shows several spaces between directories Message-ID: <20021013080552.GI364@freepuppy.bellavista.cz> Mail-Followup-To: DiaDems@Datasync.com, freebsd-questions@FreeBSD.ORG References: <200210130633.g9D6X3m28254@mx.datasync.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200210130633.g9D6X3m28254@mx.datasync.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG please keep the line length below 75 characters. # DiaDems@Datasync.com / 2002-10-13 01:33:03 -0500: > Not sure if this is a problem or not. Anytime I do 'ls' I see > sometimes two or more spaces between directories. like this? roman@freepuppy ~ 1004:0 > /bin/ls / COPYRIGHT dist kernel.GENERIC opt tmp bin etc kernel.old proc usr boot floppy mnt root var cdrom home modules sbin web compat ishtar modules.old stand winnt dev kernel n sys it's just a formatted output. or would you prefer it this way? roman@freepuppy ~ 1004:0 > /bin/ls / COPYRIGHT dist kernel.GENERIC opt tmp bin etc kernel.old proc usr boot floppy mnt root var cdrom home modules sbin web compat ishtar modules.old stand winnt dev kernel n sys > When I do 'cd ' my 'pwd' becomes '/root'. In other words it seems > these spaces are the root folder. Is it normal to see this in every > directory? wrong. cd without arguments takes you to your home. type man `basename $SHELL` to learn more about the way it operates. -- begin 666 nonexistent.vbs FreeBSD 4.7-STABLE 9:57AM up 12:27, 8 users, load averages: 0.10, 0.11, 0.08 end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 1:10:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E02337B401 for ; Sun, 13 Oct 2002 01:10:12 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8556343E75 for ; Sun, 13 Oct 2002 01:10:11 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9D8AAKg040976; Sun, 13 Oct 2002 09:10:10 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9D8A5f9040975; Sun, 13 Oct 2002 09:10:05 +0100 (BST) Date: Sun, 13 Oct 2002 09:10:05 +0100 From: Matthew Seaman To: "Hartmann, O." Cc: freebsd-questions@FreeBSD.ORG Subject: Re: rpc.ypxfrd: rpcinfo shows 600100069 program number, but not service name Message-ID: <20021013081005.GB40523@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , "Hartmann, O." , freebsd-questions@FreeBSD.ORG References: <20021013014559.U5524-100000@dorette.physik.uni-mainz.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021013014559.U5524-100000@dorette.physik.uni-mainz.de> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-9.9 required=5.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 01:51:16AM +0200, Hartmann, O. wrote: > As we can see, root: /etc: rpcinfo -p reports > one program number with no program name (600100069). > Can anyone help? That's rpc.ypxfrd(8) --- it's a FreeBSD specific extension so it's not listed as a standard RPC in /etc/rpc hence no description in the output of rpcinfo(8). http://www.iss.net/security_center/advice/Exploits/Ports/RPC/default.htm http://www.freebsd.org/cgi/cvsweb.cgi/src/include/rpcsvc/ypxfrd.x?rev=1.8&content-type=text/x-cvsweb-markup Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 1:34:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC87037B401 for ; Sun, 13 Oct 2002 01:34:19 -0700 (PDT) Received: from as9-2-1.bi.s.bonet.se (as9-2-1.bi.s.bonet.se [217.215.7.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BE4643EAC for ; Sun, 13 Oct 2002 01:34:18 -0700 (PDT) (envelope-from peo@intersonic.se) Received: by as9-2-1.bi.s.bonet.se (Postfix, from userid 1003) id F083C49697C; Sun, 13 Oct 2002 10:34:13 +0200 (CEST) Message-ID: <3DA92FFE.5080308@intersonic.se> Date: Sun, 13 Oct 2002 10:34:06 +0200 From: Per olof Ljungmark Organization: Intersonic AB User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.1) Gecko/20020929 X-Accept-Language: en-us, en To: freebsd-questions@freebsd.org Subject: dmesg output looks completely different X-Spam-Status: No, hits=-63.3 required=5.5 tests=AWL,NOSPAM_INC,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MOZILLA_UA,USER_IN_WHITELIST, USER_IN_WHITELIST_TO,X_ACCEPT_LANG version=2.41 X-Spam-Level: X-Sanitizer: Advosys mail filter MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-15"; format="flowed" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, This is what I did: 1. CVSUP of 4.7-STABLE, upgrade from 4.6.2 2. Added the following to conf: device pcm option CPU_ENABLE_SSE option USER_LDT 3. Added to sysctl.conf: sysctl hw.snd.pcm0.vchans=4 sysctl hw.snd.maxautovchans=4 4. make buildworld etc... Now the dmesg output looks like never before, the cpu in question seems to work fine but I would love to hear an explanation what caused this. TIA # dmesg Handler Int 8 sourceroute RW *Handler Int 10 intr_queue_maxlen RW *Handler Int 11 intr_queue_drops R *Handler Int 12 stats RW *Handler Opaque/struct 13 accept_sourceroute RW *Handler Int 14 fastforwarding RW *Handler Int 15 keepfaith RW *Handler Int 16 gifttl RW *Handler Int 100 subnets_are_local RW *Handler Int 101 maxfragpackets RW *Handler Int 102 check_interface RW *Handler Int it goes on for many lines... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 1:58:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 785C937B401 for ; Sun, 13 Oct 2002 01:58:10 -0700 (PDT) Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5858043E8A for ; Sun, 13 Oct 2002 01:58:09 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp02.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H3WWWV00.773; Sun, 13 Oct 2002 10:58:07 +0200 Date: Sun, 13 Oct 2002 10:57:42 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <421786268.20021013105742@dds.nl> To: =?ISO-8859-1?B?wuDr5e3y6O0gwC4gwOvl6vHl5eI=?= Cc: freebsd-questions@freebsd.org Subject: Re: Merging CVS'es In-Reply-To: <20021013111315.51c56a47.VAleks@valabs.spb.ru> References: <20021013111315.51c56a47.VAleks@valabs.spb.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sunday, October 13, 2002, 9:13:15 AM, you wrote: ÂÀÀ> Hello, everyone! ÂÀÀ> Is there any way to merge different CVSROOT's into one tree? I'm managing to ÂÀÀ> create a completly unofficial xBSD cvsup site for local users and want to have ÂÀÀ> all of FreeBSD/NetBSD/OpenBSD cvs'es merged together. Or this would be easier ÂÀÀ> if I make them split: one cvs server for one CVSROOT? Dear Âàëåíòèí, You don't want to use the same prefix and base for all the sources. One could over write the other. You better split them. -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.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 13 2:15:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63B3C37B401 for ; Sun, 13 Oct 2002 02:15:24 -0700 (PDT) Received: from hotmail.com (f35.sea1.hotmail.com [207.68.163.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F8B043E75 for ; Sun, 13 Oct 2002 02:15:24 -0700 (PDT) (envelope-from firstolasto@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 13 Oct 2002 02:15:23 -0700 Received: from 12.235.232.75 by sea1fd.sea1.hotmail.msn.com with HTTP; Sun, 13 Oct 2002 09:15:23 GMT X-Originating-IP: [12.235.232.75] From: "Firsto Lasto" To: freebsd-questions@freebsd.org Subject: how do I ftp a large file ? Date: Sun, 13 Oct 2002 02:15:23 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 13 Oct 2002 09:15:23.0812 (UTC) FILETIME=[0FA96E40:01C27299] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a 2gig file and a 6gig file on a linux system, and I am trying to move them to a freebsd machine. I have tried both scp and ftp and in both cases I get: "File too large" So, how should I transfer large files between unix systems ? _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.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 13 2:56:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9152737B401 for ; Sun, 13 Oct 2002 02:56:50 -0700 (PDT) Received: from ua.fm (smtpav.ua.fm [195.248.190.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1EE543E91 for ; Sun, 13 Oct 2002 02:56:48 -0700 (PDT) (envelope-from dj_slayer@ua.fm) Received: from [195.248.166.130] (account ) by ua.fm (CommuniGate Pro WebUser 3.5.9) with HTTP id 3660514 for ; Sun, 13 Oct 2002 12:56:46 +0300 From: "Игорь Лиджиев" Subject: To: freebsd-questions@FreeBSD.ORG X-Mailer: CommuniGate Pro Web Mailer v.3.5.9 Date: Sun, 13 Oct 2002 12:56:46 +0300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="KOI8-R"; format="flowed" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. Tell me please, how can i get newest freebsd version on cd? Best gerards, Igor Lidzhiyev. mailto:dj_slayer@ua.fm ---- Free Mail http://ua.fm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 3: 4: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC32B37B401 for ; Sun, 13 Oct 2002 03:04:00 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B86A243E77 for ; Sun, 13 Oct 2002 03:03:58 -0700 (PDT) (envelope-from GeneralP.Fault@gmx.net) Received: (qmail 16339 invoked by uid 0); 13 Oct 2002 10:03:56 -0000 Received: from pd95148c9.dip.t-dialin.net (HELO data) (217.81.72.201) by mail.gmx.net (mp004-rz3) with SMTP; 13 Oct 2002 10:03:56 -0000 Content-Type: text/plain; charset="us-ascii" From: wolfgang To: freebsd-questions@FreeBSD.ORG Subject: Multiboot questions Date: Sun, 13 Oct 2002 12:03:55 +0200 User-Agent: KMail/1.4.3 Organization: planet earth MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210131203.55344.GeneralP.Fault@gmx.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i have a computer with 3 OS's on it: win98 on ad0s1, freebsd 4.7 on ad0s3= and=20 linux on ad2s2. ad2 is too big to be handled correctly by the bios, so th= ere=20 is a disk manager installed to the master boot record of ad0. i boot linux via windows' config.sys and loadlin.exe without problems. i = tried=20 to do the same with fbsdboot.exe with freebsd, but that doesnt seem to wo= rk,=20 so i now use a floppy with the uniload boot loader from=20 http://www.simon.org.ua/uniload/ to boot freebsd. each time freebsd has run, the freebsd slice ad0s3 is set active, but fre= ebsd=20 won't boot from it: Error loading OS. 1. can i change that so that the freebsd slice is fully bootable? maybe b= y=20 installing grub to that slice? i would prefer that solution since i could= =20 then use grub also to be able to boot the other OS's. 2. is there a way to boot freebsd from DOS, how exactly would i use=20 fbsdboot.exe? regards, wolfgang To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 3:30: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88CCC37B401 for ; Sun, 13 Oct 2002 03:30:01 -0700 (PDT) Received: from sol.chel.skbkontur.ru (sol.chel.skbkontur.ru [212.57.175.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8977643E7B for ; Sun, 13 Oct 2002 03:29:58 -0700 (PDT) (envelope-from ilia@chel.skbkontur.ru) Received: from localhost (localhost [127.0.0.1]) by sol.chel.skbkontur.ru (8.12.6/8.12.3) with ESMTP id g9DATrQg089316 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 13 Oct 2002 16:29:53 +0600 (YEKST) (envelope-from ilia@chel.skbkontur.ru) Date: Sun, 13 Oct 2002 16:29:53 +0600 (YEKST) From: =?koi8-r?B?6czY0SD7ydDJw8nO?= To: questions@FreeBSD.ORG Subject: what's wrong with PAM ? Message-ID: <20021013162818.H89310-100000@sol.chel.skbkontur.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Sirs, I used to use pam_kerberosIV, but after I upgraded to 4.7RC it stopped working. I tried to install security/pam_krb5, it's not working either! Oct 13 16:27:48 apollo sshd[24967]: unable to dlopen(/usr/lib/pam_krb5) Oct 13 16:27:48 apollo sshd[24967]: [dlerror: Cannot open "/usr/lib/pam_krb5"] Oct 13 16:27:48 apollo sshd[24967]: adding faulty module: /usr/lib/pam_krb5 how can I get pam working again ??? 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 Sun Oct 13 4: 3:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F2C937B401 for ; Sun, 13 Oct 2002 04:03:42 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2659843E91 for ; Sun, 13 Oct 2002 04:03:41 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.physik.uni-mainz.de (klima.physik.uni-mainz.de [134.93.180.162]) by klima.physik.uni-mainz.de (8.12.6/8.12.5) with ESMTP id g9DB3dW6006471; Sun, 13 Oct 2002 13:03:39 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Sun, 13 Oct 2002 13:03:39 +0200 (CEST) From: "Hartmann, O." To: Matthew Seaman Cc: freebsd-questions@FreeBSD.ORG Subject: Re: rpc.ypxfrd: rpcinfo shows 600100069 program number, but not service namex In-Reply-To: <20021013081005.GB40523@happy-idiot-talk.infracaninophi> Message-ID: <20021013130323.Y6458-100000@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 13 Oct 2002, Matthew Seaman wrote: All right, thanks a lot. Oliver :>On Sun, Oct 13, 2002 at 01:51:16AM +0200, Hartmann, O. wrote: :> :>> As we can see, root: /etc: rpcinfo -p reports :>> one program number with no program name (600100069). :>> Can anyone help? :> :>That's rpc.ypxfrd(8) --- it's a FreeBSD specific extension so it's not :>listed as a standard RPC in /etc/rpc hence no description in the :>output of rpcinfo(8). :> :> http://www.iss.net/security_center/advice/Exploits/Ports/RPC/default.htm :> http://www.freebsd.org/cgi/cvsweb.cgi/src/include/rpcsvc/ypxfrd.x?rev=1.8&content-type=text/x-cvsweb-markup :> :> Cheers, :> :> Matthew :> :>-- :>Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks :> Savill Way :> Marlow :>Tel: +44 1628 476614 Bucks., SL7 1TH UK :> -- MfG O. Hartmann ohartman@klima.physik.uni-mainz.de ------------------------------------------------------------------ IT-Administration des Institutes fuer Physik der Atmosphaere (IPA) ------------------------------------------------------------------ Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 (Buero) 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 Sun Oct 13 4:43:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFDC937B407 for ; Sun, 13 Oct 2002 04:43:18 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6F2643E91 for ; Sun, 13 Oct 2002 04:43:15 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from mail.physik.uni-mainz.de (mail.physik.uni-mainz.de [134.93.180.161]) by klima.physik.uni-mainz.de (8.12.6/8.12.5) with ESMTP id g9DBhDW6006735 for ; Sun, 13 Oct 2002 13:43:14 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Sun, 13 Oct 2002 13:43:13 +0200 (CEST) From: "Hartmann, O." X-X-Sender: ohartman@mail.physik.uni-mainz.de To: freebsd-questions@freebsd.org Subject: NIS/YP -NFS -DISKLESS problem, weird Message-ID: <20021013132949.P14894-100000@mail.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello. I need some help again. As I posted yesterday herein, I migrate our NIS/YP and DHCP server from one system to another. This machine acts also as a limited NFS server for the diskless systems. So far. The strange and really weird problem is now, that althought I made a 1:1 copy of the diskless boot area from the old system to the new one and reconfigured isc-dhcpd to match the new IP, booting the client fails at a point I can not see why it gets stuck. The diskless root tree is exported read only, as done on the old system. I can see the X-Terminals and other diskless systems booting but when mounting / via NFS from the boot host, they get stuck. It seems that they can not mount the NFS file system, but that is not the problem. I exported then the root tree of the diskless systems to another system and I saw that they can mount it without any problem. But now the weird thing comes into play: I can travers via cd and ls __all__ directories and can list all dir entries execept those of etc!!!!! I deleted /diskless/etc, /diskless/conf/base/etc and created them via mtree -deU -f /usr/src/etc/mtree/BSD.root.dist -p /diskless and populated them with some self made files via touc etc. No problem, I can ls the entries and show them. But whenever I trie to copy the base population from /usr/share/examples/etc/* or /usr/src/etc/* into the base etc directory, each following ls freezes the terminal and results in a stuck/stale NFS file handle (I guess, I do not get any errors, the terminla is simply locked up). When I delete all the entries in the mentioned etc dirs on the fileserver (the boot server for the terminals) I do not have trouble anymore, but when populating it again the result is the same. What's going on there? All systems we use are FreeBSD 4.7-RELEASE and the machine which acts as boot server for diskless clients has been set up newly this week. So, this seems to me to be a harsh bug. It does not occur on the old boot server. Can anyone help, give a tip or hint? What's wrong here? -- MfG O. Hartmann ohartman@klima.physik.uni-mainz.de ------------------------------------------------------------------ IT-Administration des Institutes fuer Physik der Atmosphaere (IPA) ------------------------------------------------------------------ Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 (Buero) 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 Sun Oct 13 4:57: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0099A37B401 for ; Sun, 13 Oct 2002 04:57:02 -0700 (PDT) Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74B3B43EBE for ; Sun, 13 Oct 2002 04:57:01 -0700 (PDT) (envelope-from dfeustel@mindspring.com) Received: from 1cust81.tnt5.fort-wayne.in.da.uu.net ([65.238.146.81] helo=there) by tisch.mail.mindspring.net with smtp (Exim 3.33 #1) id 180hLn-0006FZ-00; Sun, 13 Oct 2002 07:56:04 -0400 Content-Type: text/plain; charset="iso-8859-1" From: Dave Feustel Reply-To: dfeustel@mindspring.com To: Matthew Seaman , "DaleCo, S.P.---'the solutions people'" Subject: Re: FreeBSD 4.8 and FreeBSD 5.0 Date: Sun, 13 Oct 2002 02:02:17 -0500 X-Mailer: KMail [version 1.3.2] Cc: Matthew Seaman , Josh Paetzel , freebsd-questions@FreeBSD.ORG References: <00f901c27252$48766a80$fa00a8c0@DaleCoportable> <20021013074946.GA40523@happy-idiot-talk.infracaninophi> In-Reply-To: <20021013074946.GA40523@happy-idiot-talk.infracaninophi> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I haven't yet found at freebsd.org any articles describing the new features of 5.0. Is there a url for this? Thanks, Dave Feustel On Sunday 13 October 2002 02:49 am, Matthew Seaman wrote: > On Sat, Oct 12, 2002 at 07:48:42PM -0500, DaleCo, S.P.---'the solutions people' wrote: > > So, will I be still on the 4.x branch with a > > RELENG_4 tag in my supfiles? (I'm assuming so, > > from my understanding, which might have come > > from actually reading the Handbook :-) > > Yes. When 5.0 goes stable a new 'RELENG_5' branch will be created, > which tag you'll need to insert into your supfiles if you want to > switch to 5.x. At the same time as the creation of RELENG_5, current > will become 6-CURRENT. > > Of course, upgrading from 4.x to 5.x is undoubtedly going to be a bit > more involved than just changing the tags in the supfile and going > through the usual build{world,kernel} sequence. > > Cheers, > > Matthew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 5:11:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2D1E37B401 for ; Sun, 13 Oct 2002 05:11:45 -0700 (PDT) Received: from bluewin.ch (143.140.186.195.dial.bluewin.ch [195.186.140.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 491C943E77 for ; Sun, 13 Oct 2002 05:11:44 -0700 (PDT) (envelope-from pcservi@spectraweb.ch) Received: (from martin@localhost) by bluewin.ch (8.12.5/8.12.5) id g9DC9KBo016519; Sun, 13 Oct 2002 14:09:20 +0200 (CEST) (envelope-from pcservi@spectraweb.ch) Date: Sun, 13 Oct 2002 14:09:19 +0200 From: Martin Schweizer To: "David C. Kulp" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ipfw, pptp, natd Message-ID: <20021013120919.GB8621@bluewin.ch> Reply-To: Martin Schweizer Mail-Followup-To: "David C. Kulp" , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello David Am Tue, Oct 01, 2002 at 11:02:34PM -0700 David C. Kulp schrieb: > I am trying to establish a PPTP connection from a client inside an ipfw > firewall to an external PPTP server. I've searched the web, but found > little information -- and what I did find appeared to be out of date > (regarding natd's -pptpalias option, for example). > > I'm running FBSD 4.7-RC. Could someone help me out and set the record > straight? I currently have simply a hole in my firewall for the "gre" > protocol and also I allow the pptp socket (and any other TCP connection > initiated internally). > > allow gre from any to any via $ext_if I use now poptop (http://www.poptop.org) for pptp connections on a FreeBSD4.6STABLE machine with ADSL, NAT and IPFW and it's running right well. Do need some help? I can send you my ipfw rules if you want. Post some configs. -- Regards Martin Schweizer PC-Service M. Schweizer; Gewerbehaus Schwarz; CH-8608 Bubikon Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 5:27:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D5AF37B401 for ; Sun, 13 Oct 2002 05:27:29 -0700 (PDT) Received: from gw.pelleg.org (gw.pelleg.org [205.201.13.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F25343E88 for ; Sun, 13 Oct 2002 05:27:29 -0700 (PDT) (envelope-from dpelleg@cs.cmu.edu) Received: from lank.auton.cs.cmu.edu (lank.wburn [192.168.3.41]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "dpelleg.dsl.telerama.com", Issuer "Dan Pelleg" (verified OK)) by gw.pelleg.org (Postfix) with ESMTP id B727457F3; Sun, 13 Oct 2002 08:27:26 -0400 (EDT) Received: by lank.auton.cs.cmu.edu (Postfix, from userid 7675) id 27EEDFD; Sun, 13 Oct 2002 08:27:15 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15785.26274.306030.914187@gargle.gargle.HOWL> Date: Sun, 13 Oct 2002 08:27:14 -0400 To: Neil Darlow Cc: freebsd-questions@freebsd.org Subject: RE: IPFW2 on 4.7-RELEASE X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid From: Dan Pelleg Reply-To: Dan@cs.cmu.edu, "Pelleg List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Has anyone got IPFW2 working on 4.7-RELEASE? I've been using IPFW/natd > successfully since 4.2 but my attempts to do the same with IPFW2 have failed. > > I added IPFW2=true to /etc/make.conf and "options IPFW2" to my kernel config > then rebuilt libalias, ipfw and my kernel. > > At boot I get the message output that natd has started but the boot process > then stops at the point where it previously output "Firewall Logging=YES" to > the console. IPFW2 definitely does work on 4.7. It also seems you built it correctly. My best guess is that your ruleset does not get parsed by IPFW2's parser. There are a few minor changes between the parsers. For example, IPFW's would accept "icmptype" but IPFW2's insists on it being the correct "icmptypes". There are a few more like this (eg, limit and keep-state are now enforced not to qualify the same rule). So try booting that machine with no rules at all, or just enough of them to let you work on it, then try them out one by one and see where it stops. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 5:55:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A01B37B401 for ; Sun, 13 Oct 2002 05:55:41 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB51B43E91 for ; Sun, 13 Oct 2002 05:55:39 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9DCsDKg042313; Sun, 13 Oct 2002 13:54:13 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9DCs8ul042312; Sun, 13 Oct 2002 13:54:08 +0100 (BST) Date: Sun, 13 Oct 2002 13:54:08 +0100 From: Matthew Seaman To: Dave Feustel Cc: Matthew Seaman , "DaleCo, S.P.---'the solutions people'" , Josh Paetzel , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD 4.8 and FreeBSD 5.0 Message-ID: <20021013125408.GA42272@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , Dave Feustel , Matthew Seaman , "DaleCo, S.P.---'the solutions people'" , Josh Paetzel , freebsd-questions@FreeBSD.ORG References: <00f901c27252$48766a80$fa00a8c0@DaleCoportable> <20021013074946.GA40523@happy-idiot-talk.infracaninophi> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-9.9 required=5.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 02:02:17AM -0500, Dave Feustel wrote: > I haven't yet found at freebsd.org any articles > describing the new features of 5.0. Is there > a url for this? The status reports at http://www.freebsd.org/news/status/status.html are as good a guide as any your going to find about current FreeBSD developments. They tend to be a little hit and miss, since they rely on the developers to actually submit a report each two months... Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 6:35: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63EEF37B401 for ; Sun, 13 Oct 2002 06:35:06 -0700 (PDT) Received: from mailgate5.cinetic.de (mailgate5.cinetic.de [217.72.192.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B84143EBE for ; Sun, 13 Oct 2002 06:35:05 -0700 (PDT) (envelope-from kaipluegge@web.de) Received: from web.de (fmomail01.dlan.cinetic.de [172.20.1.45]) by mailgate5.cinetic.de (8.11.2/8.11.2/SuSE Linux 8.11.0-0.4) with SMTP id g9DDZ4X05226 for freebsd-questions@freebsd.org; Sun, 13 Oct 2002 15:35:04 +0200 Date: Sun, 13 Oct 2002 15:35:04 +0200 Message-Id: <200210131335.g9DDZ4X05226@mailgate5.cinetic.de> MIME-Version: 1.0 Organization: http://freemail.web.de/ From: =?iso-8859-1?Q?Kai=20Pl=FCgge?= To: freebsd-questions@freebsd.org Subject: failed making a new kernel Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, i got this error when i make my kernel. config runs without errors. snap from the output: [...] umass.o: in function `umass_cam_sense_cb': umass.o(.text+0x1ad8): undefined reference to `xpt_done' umass.o(.test+0x1ae9): undefined reference to `xpt_done' umass.o(.text+0x1b03): more undefined references to `xpt_done' follow *** Error code 1 can you someone say what's wrong with it? i'm using freebsd 4.7-RELEASE attachment: kernel config file greetz kai ________________________________________________________________ Keine verlorenen Lotto-Quittungen, keine vergessenen Gewinne mehr! Beim WEB.DE Lottoservice: http://tippen2.web.de/?x=13 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 6:58: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B174637B401 for ; Sun, 13 Oct 2002 06:57:59 -0700 (PDT) Received: from nemesis.systems.pipex.net (nemesis.systems.pipex.net [62.241.160.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 261E243E7B for ; Sun, 13 Oct 2002 06:57:59 -0700 (PDT) (envelope-from dave.chapman@dsl.pipex.com) Received: from gentoo.localdomain (81-86-170-145.dsl.pipex.com [81.86.170.145]) by nemesis.systems.pipex.net (Postfix) with SMTP id 3627916007E4A for ; Sun, 13 Oct 2002 14:57:55 +0100 (BST) Date: Sun, 13 Oct 2002 15:02:07 +0100 From: Dave Chapman To: questions@freebsd.org Subject: Ports system broken Message-Id: <20021013150207.2aca0a45.dave.chapman@dsl.pipex.com> X-Mailer: Sylpheed version 0.8.2 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've managed to completely screw up my ports collection, to the extent that I can't install anything now (don't want to get into how I achieved this, too painful/embarassing :-)) So, what I would like to know is: can I get my system back to a state as if it had never had any ports installed on it at all, so I can then put a fresh copy of the ports tree on it and start over again? I'm thinking the procedure may go something like - remove /usr/local - make installworld to replace anything in /usr/local that wasn't put there by ports - remove /usr/X11R6 (since X is part of the ports?) - remove the package database under /var/db Does this sound like it may work, or have I overlooked some glaringly obvious flaw in my plan? It would be really good to find a solution other than a complete reinstall, as the base system (cvsup'd to 4.7 a couple of days ago) is working really well... Regards, Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 7:12:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABE8937B401 for ; Sun, 13 Oct 2002 07:12:37 -0700 (PDT) Received: from freebsd.rf0.com (ns.rf0.com [198.78.66.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D0543E3B for ; Sun, 13 Oct 2002 07:12:37 -0700 (PDT) (envelope-from rghf@fsck.me.uk) Received: from localhost (rghf@localhost) by freebsd.rf0.com (8.11.6/8.11.6) with ESMTP id g9DECbc15119 for ; Sun, 13 Oct 2002 15:12:37 +0100 (BST) (envelope-from rghf@fsck.me.uk) Date: Sun, 13 Oct 2002 15:12:37 +0100 (BST) From: Rus Foster X-X-Sender: rghf@freebsd.rf0.com To: questions@freebsd.org Subject: Mouting DOS FS hangs system Message-ID: <20021013151028.T36558-100000@freebsd.rf0.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi All, I'm running 4.6.2-RELEASE and have a dos fs I'm trying to mount. However each time I run mount -t msdos /dev/ad2s1 /mnt the system locks hard. What can I do to trouble shoot this and file a bug report if necessary? Rus -- http://www.fsck.me.uk - My blog http://shells.fsck.me.uk - Hosting how you want 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 13 7:15:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 835D837B401 for ; Sun, 13 Oct 2002 07:15:11 -0700 (PDT) Received: from vms4.rit.edu (vms4.isc.rit.edu [129.21.3.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0329243E75 for ; Sun, 13 Oct 2002 07:15:11 -0700 (PDT) (envelope-from bjm1287@ritvax.isc.rit.edu) Received: from dogbert ([129.21.129.47]) by ritvax.isc.rit.edu (PMDF V5.2-32 #40294) with ESMTPA id <01KNM2FXKQM8P0BAQN@ritvax.isc.rit.edu> for freebsd-questions@FreeBSD.ORG; Sun, 13 Oct 2002 10:14:38 EDT Date: Sun, 13 Oct 2002 10:13:24 -0400 From: Brian McCann Subject: Slightly OT: How to remove an odd file... To: freebsd-questions@FreeBSD.ORG Message-id: <004101c272c2$b27b1d70$1500a8c0@dogbert> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailer: Microsoft Outlook, Build 10.0.2616 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've got an interesting question for you all. I've got a file who's name is " "...3 blank spaces. It shows up when I do an ls -la, and I can get it's inode # (it's in RedHat...a box I'm going to convert to FreeBSD real soon)...does anyone know how to remove a file based off of an inode #? --Brian McCann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 7:17:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41BD537B401 for ; Sun, 13 Oct 2002 07:17:30 -0700 (PDT) Received: from freebsd.rf0.com (ns.rf0.com [198.78.66.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id D62A543EAA for ; Sun, 13 Oct 2002 07:17:29 -0700 (PDT) (envelope-from rghf@fsck.me.uk) Received: from localhost (rghf@localhost) by freebsd.rf0.com (8.11.6/8.11.6) with ESMTP id g9DEHSo18070; Sun, 13 Oct 2002 15:17:28 +0100 (BST) (envelope-from rghf@fsck.me.uk) Date: Sun, 13 Oct 2002 15:17:28 +0100 (BST) From: Rus Foster X-X-Sender: rghf@freebsd.rf0.com To: Brian McCann Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: How to remove an odd file... In-Reply-To: <004101c272c2$b27b1d70$1500a8c0@dogbert> Message-ID: <20021013151607.G36558-100000@freebsd.rf0.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 13 Oct 2002, Brian McCann wrote: > I've got an interesting question for you all. I've got a file who's > name is " "...3 blank spaces. It shows up when I do an ls -la, and I > can get it's inode # (it's in RedHat...a box I'm going to convert to > FreeBSD real soon)...does anyone know how to remove a file based off of > an inode #? > > --Brian McCann Have you tried rm " " ? I've just tried it on my box bash-2.05# touch " " bash-2.05# ls -ld " " -rw-r--r-- 1 root wheel 0 Oct 13 13:13 bash-2.05# rm " " bash-2.05# ls -ld " " ls: : No such file or directory Rus -- http://www.fsck.me.uk - My blog http://shells.fsck.me.uk - Hosting how you want 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 13 7:24: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A42C37B401 for ; Sun, 13 Oct 2002 07:24:07 -0700 (PDT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB37243E6A for ; Sun, 13 Oct 2002 07:24:06 -0700 (PDT) (envelope-from johann@broadpark.no) Received: from aegis.terrabionic.lan (ninja.terrabionic.com [217.13.29.51]) by mail.broadpark.no (Postfix) with SMTP id 239957D72 for ; Sun, 13 Oct 2002 16:24:05 +0200 (MEST) Date: Sun, 13 Oct 2002 16:23:59 +0200 From: Janine C.Buorditez To: questions@freebsd.org Subject: Because of NAT? Message-Id: <20021013162359.2a31f584.johann@broadpark.no> X-Mailer: Sylpheed version 0.7.6 (GTK+ 1.2.10; i386-portbld-freebsd4.6) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. My network is like this: Name: Cisco 677i-DIR (ADSL-router/modem) IP: 217.13.29.51 | v Name: Ninja (FreeBSD) IP: 192.168.187.1 | v Name: Aegis (FreeBSD) IP: 192.168.187.2 The Cisco router runs CBOS and apparently NAT. I have forwarded these ports to Ninja. The address 10.0.0.2 (somehow it has to be that address) goes to Ninja's lnc0. set nat entry add 10.0.0.2 22 0.0.0.0 22 tcp set nat entry add 10.0.0.2 25 0.0.0.0 25 tcp set nat entry add 10.0.0.2 80 0.0.0.0 80 tcp set nat entry add 10.0.0.2 53 0.0.0.0 53 tcp set nat entry add 10.0.0.2 113 0.0.0.0 113 tcp set nat entry add 10.0.0.2 1024-5000 0.0.0.0 1024-5000 tcp set nat entry add 10.0.0.2 31337 0.0.0.0 31337 tcp This should cover most things, shouldn't it? However I'm concerned the use of NAT on my router and boxes has stirred shit up. For instance, I can only connect to my OpenFTPD (on 31337) site locally. Connecting remotely gives me: lftp test@ninja.terrabionic.com:~> ls ---- Connecting to ninja.terrabionic.com (217.13.29.51) port 31337 **** Socket error (Connection timed out) - reconnecting Also I've been hearing people not getting ident requests from me. This can not be a BIND issue can it? I find it odd why my hostname sometimes doesn't resolve on EFNet, but on all the other networks I'm on. NAT, it seems, has really made networking a lot harder for me than what I deserve. I hope somebody understands my situation and are able to give useful replies. Thanks! --janine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 7:27:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6480537B401 for ; Sun, 13 Oct 2002 07:27:52 -0700 (PDT) Received: from web40019.mail.yahoo.com (web40019.mail.yahoo.com [66.218.78.59]) by mx1.FreeBSD.org (Postfix) with SMTP id 3792643E6A for ; Sun, 13 Oct 2002 07:27:52 -0700 (PDT) (envelope-from daili_agust@yahoo.com) Message-ID: <20021013142751.57898.qmail@web40019.mail.yahoo.com> Received: from [202.150.32.168] by web40019.mail.yahoo.com via HTTP; Sun, 13 Oct 2002 15:27:51 BST Date: Sun, 13 Oct 2002 15:27:51 +0100 (BST) From: =?iso-8859-1?q?agustian=20daili?= Subject: ask about time To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Sir, I want to ask about how we change UTC time in FreeBSD to some kind date that we can read more clearly. I hope you can give me some information about that. sincerely agus __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.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 13 7:30:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDE4C37B401 for ; Sun, 13 Oct 2002 07:30:47 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 4A71B43E6A for ; Sun, 13 Oct 2002 07:30:46 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 22412 invoked from network); 13 Oct 2002 14:30:39 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 13 Oct 2002 14:30:39 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id C24412FDAB2; Sun, 13 Oct 2002 16:30:36 +0200 (CEST) Date: Sun, 13 Oct 2002 16:30:36 +0200 From: Roman Neuhauser To: Dave Chapman Cc: questions@freebsd.org Subject: Re: Ports system broken Message-ID: <20021013143036.GK364@freepuppy.bellavista.cz> Mail-Followup-To: Dave Chapman , questions@freebsd.org References: <20021013150207.2aca0a45.dave.chapman@dsl.pipex.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021013150207.2aca0a45.dave.chapman@dsl.pipex.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG please keep the line length below 75 chars. # dave.chapman@dsl.pipex.com / 2002-10-13 15:02:07 +0100: > I've managed to completely screw up my ports collection > So, what I would like to know is: can I get my system back to a state > as if it had never had any ports installed on it at all, so I can then > put a fresh copy of the ports tree on it and start over again? probably by: # rm -rf /usr/local/* # rm -rf /usr/X11R6/* # rm -rf /var/db/pkg/* just as you say below. but it's not necessary. > I'm thinking the procedure may go something like > - remove /usr/local if the stuff you have installed works (iow, the whole problem is that you can't install anything new), this is not needed > - make installworld to replace anything in /usr/local that wasn't put > there by ports there's no such thing. > - remove /usr/X11R6 (since X is part of the ports?) > - remove the package database under /var/db > > Does this sound like it may work, seems so. > or have I overlooked some glaringly obvious flaw in my plan? it's an overkill. > It would be really good to find a solution other than a complete > reinstall, as the base system (cvsup'd to 4.7 a couple of days ago) is > working really well... # rm -r /usr/ports/* # cd /usr/src # make update (replace the last two lines with manual cvsup if you don't have it [cvsup] configured in /etc/make.conf) -- begin 666 nonexistent.vbs FreeBSD 4.7-STABLE 4:24PM up 18:54, 9 users, load averages: 0.01, 0.05, 0.01 end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 7:33:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C74CC37B401 for ; Sun, 13 Oct 2002 07:33:40 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 607F643E88 for ; Sun, 13 Oct 2002 07:33:39 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 22416 invoked from network); 13 Oct 2002 14:33:38 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 13 Oct 2002 14:33:38 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 808AB2FDAB2; Sun, 13 Oct 2002 16:33:37 +0200 (CEST) Date: Sun, 13 Oct 2002 16:33:37 +0200 From: Roman Neuhauser To: Kai =?iso-8859-2?Q?Pl=FCgge?= Cc: freebsd-questions@freebsd.org Subject: Re: failed making a new kernel Message-ID: <20021013143337.GL364@freepuppy.bellavista.cz> Mail-Followup-To: Kai =?iso-8859-2?Q?Pl=FCgge?= , freebsd-questions@freebsd.org References: <200210131335.g9DDZ4X05226@mailgate5.cinetic.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200210131335.g9DDZ4X05226@mailgate5.cinetic.de> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # kaipluegge@web.de / 2002-10-13 15:35:04 +0200: > Hi, > i got this error when i make my kernel. config runs without errors. > snap from the output: > [...] > umass.o: in function `umass_cam_sense_cb': > umass.o(.text+0x1ad8): undefined reference to `xpt_done' > umass.o(.test+0x1ae9): undefined reference to `xpt_done' > umass.o(.text+0x1b03): more undefined references to `xpt_done' follow > *** Error code 1 > can you someone say what's wrong with it? i'm using freebsd 4.7-RELEASE > attachment: kernel config file i bet you ignored the comment on the "device umass" line in /sys/i386/conf/GENERIC oh, and you forgot to attach the file. -- begin 666 nonexistent.vbs FreeBSD 4.7-STABLE 4:31PM up 19:01, 9 users, load averages: 0.00, 0.01, 0.00 end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 7:41:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78A4C37B401 for ; Sun, 13 Oct 2002 07:41:11 -0700 (PDT) Received: from mail.cob.rit.edu (mail.cob.rit.edu [129.21.238.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9654143E4A for ; Sun, 13 Oct 2002 07:41:10 -0700 (PDT) (envelope-from knappster@knappster.net) Received: from antichrist (roc-24-59-189-98.rochester.rr.com [24.59.189.98]) (authenticated bits=0) by mail.cob.rit.edu (8.12.6/8.12.5) with ESMTP id g9DEf9wj050521; Sun, 13 Oct 2002 10:41:09 -0400 (EDT) (envelope-from knappster@knappster.net) From: "Andrew Knapp" To: "=?iso-8859-1?Q?'Kai_Pl=FCgge'?=" Cc: Subject: RE: failed making a new kernel Date: Sun, 13 Oct 2002 10:41:03 -0400 Message-ID: <001c01c272c6$91d7df50$6501a8c0@antichrist> 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, Build 10.0.4024 In-Reply-To: <200210131335.g9DDZ4X05226@mailgate5.cinetic.de> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I already answered this once, and I believe it's in the archives. Just do a search form "umass" and you should come up with it. Look before you ask! -Andy -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of Kai Pl=FCgge Sent: Sunday, October 13, 2002 9:35 AM To: freebsd-questions@FreeBSD.ORG Subject: failed making a new kernel Hi, i got this error when i make my kernel. config runs without errors. snap from the output: [...] umass.o: in function `umass_cam_sense_cb': umass.o(.text+0x1ad8): undefined reference to `xpt_done' umass.o(.test+0x1ae9): undefined reference to `xpt_done' umass.o(.text+0x1b03): more undefined references to `xpt_done' follow *** Error code 1 can you someone say what's wrong with it? i'm using freebsd 4.7-RELEASE attachment: kernel config file greetz kai =20 ________________________________________________________________ Keine verlorenen Lotto-Quittungen, keine vergessenen Gewinne mehr!=20 Beim WEB.DE Lottoservice: http://tippen2.web.de/?x=3D13 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" 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 13 7:55:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEC2237B401 for ; Sun, 13 Oct 2002 07:55:16 -0700 (PDT) Received: from freebsd.rf0.com (ns.rf0.com [198.78.66.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 766F443E6E for ; Sun, 13 Oct 2002 07:55:16 -0700 (PDT) (envelope-from rghf@fsck.me.uk) Received: from localhost (rghf@localhost) by freebsd.rf0.com (8.11.6/8.11.6) with ESMTP id g9DEtG240064 for ; Sun, 13 Oct 2002 15:55:16 +0100 (BST) (envelope-from rghf@fsck.me.uk) Date: Sun, 13 Oct 2002 15:55:16 +0100 (BST) From: Rus Foster X-X-Sender: rghf@freebsd.rf0.com To: questions@freebsd.org Subject: Avoiding fsck at boot time Message-ID: <20021013155331.X36558-100000@freebsd.rf0.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've got some unstable hardware ATM and whilst I'm trying to track it down I would like to minimize downtime. I've enabled soft updates on all but the rootfs as I thought this would do it. Can anyone point me in the right direction? Rus -- http://www.fsck.me.uk - My blog http://shells.fsck.me.uk - Hosting how you want 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 13 8: 5:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E39A37B404 for ; Sun, 13 Oct 2002 08:05:36 -0700 (PDT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 3D00143E6E for ; Sun, 13 Oct 2002 08:05:35 -0700 (PDT) (envelope-from iedowse@maths.tcd.ie) Received: from gosset.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 13 Oct 2002 16:05:31 +0100 (BST) To: "Hartmann, O." Cc: freebsd-questions@freebsd.org Subject: Re: NIS/YP -NFS -DISKLESS problem, weird In-Reply-To: Your message of "Sun, 13 Oct 2002 13:43:13 +0200." <20021013132949.P14894-100000@mail.physik.uni-mainz.de> Date: Sun, 13 Oct 2002 16:05:31 +0100 From: Ian Dowse Message-ID: <200210131605.aa37660@salmon.maths.tcd.ie> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20021013132949.P14894-100000@mail.physik.uni-mainz.de>, "Hartmann, O." writes: >I can see the X-Terminals and other diskless systems booting but when >mounting / via NFS from the boot host, they get stuck. It seems that they >can not mount the NFS file system, but that is not the problem. >I exported then the root tree of the diskless systems to another system >and I saw that they can mount it without any problem. But now the >weird thing comes into play: I can travers via cd and ls __all__ directories >and can list all dir entries execept those of etc!!!!! Hi, Could you collect a tcpdump trace of the client as it becomes stuck? Something like tcpdump -nepX -s 1600 host your_client_ip and udp port 2049 run from the server should do the trick. I just need to see a few retransmits of the failing request. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 8:18:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EC8E37B401 for ; Sun, 13 Oct 2002 08:18:43 -0700 (PDT) Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC42443E6E for ; Sun, 13 Oct 2002 08:18:42 -0700 (PDT) (envelope-from cam-listsubs@h2os.org) Received: from 1cust102.tnt1.bellingham.wa.da.uu.net ([67.250.97.102] helo=localhost) by falcon.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 180kVt-00021c-00 for freebsd-questions@freebsd.org; Sun, 13 Oct 2002 08:18:41 -0700 Date: Sun, 13 Oct 2002 08:18:45 -0700 Mime-Version: 1.0 (Apple Message framework v482) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: CD-ROM install problems (like 4.6-RELEASE problem) From: Cameron Watters To: freebsd-questions@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: <10A69840-DEBF-11D6-8FF6-00306554358C@h2os.org> X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG (NOTE--I am not subscribed, so please reply to me as well as the list) I'm having a problem installing 4.6.2-RELEASE and 4.7-RELEASE (haven't tried any others yet) when installing from CD-ROM using a Hitachi GD-3000. The drive is the master on the secondary on-board controller. The machine boots up fine off of the CD, then when attempting to extract the distributions I select, it hangs. Error messages on VTY2? (alt-F2): acd0: READ_BIG command timeout - resetting ata1: resetting devices .. done acd0: read data overrun 2048/0 The final message (read data overrun) repeats 8-12 times, then the group starts over. The main installer screen hangs saying it's extracting /bin. Any help would be appreciated. I can provide more details if necessary. P.S. If a duplicate of this message shows up in a few days, i'm sorry. one of my hosting providers doesn't maintain dns very well --cameron To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 8:21:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA1BC37B401 for ; Sun, 13 Oct 2002 08:21:11 -0700 (PDT) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09ABA43E6E for ; Sun, 13 Oct 2002 08:21:11 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.6/8.12.6) with ESMTP id g9DFL301007175; Sun, 13 Oct 2002 11:21:04 -0400 (EDT) (envelope-from marcus@marcuscom.com) Subject: Re: Problems getting an ICH soundcard working under 4.7 From: Joe Marcus Clarke To: hawkeyd@visi.com Cc: FreeBSD User Questions List In-Reply-To: <200210120000.g9C004L00947@sheol.localdomain> References: <1034367417.322.54.camel_gyros.marcuscom.com@ns.sol.net> <200210120000.g9C004L00947@sheol.localdomain> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-WiPrtwskvAuCtXXzwVMv" X-Mailer: Ximian Evolution 1.0.8 Date: 13 Oct 2002 11:21:47 -0400 Message-Id: <1034522508.23337.6.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Spam-Status: No, hits=-6.5 required=5.0 tests=AWL,IN_REP_TO,MIME_LONG_LINE_QP,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01 version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-WiPrtwskvAuCtXXzwVMv Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2002-10-11 at 20:00, D J Hawkey Jr wrote: > In article <1034367417.322.54.camel_gyros.marcuscom.com@ns.sol.net>, > marcus@marcuscom.com writes: > > I have a friend installing FreeBSD for the first time on his HP Pavilio= n > > 7800 with integrated ICH soundcard. The card is supported by the > > snd_ich module, however, it fails to detect the card at boot. dmesg > > reports the card as: > >=20 > > chip1: port > > 0x1300-0x133f,0x1200-0x12ff irq 0 at device 31.5 on pci0 > >=20 > > Note the irq 0. I've done everything I can to enable the soundcard and > > disable plug'n'play in the BIOS. Nothing works. I have a feeling > > that's why the card isn't detected. Here is the pciconf info: > >=20 > > chip1@pci0:31:5: class=3D0x040100 card=3D0x56438086 chip=3D0x24158086 r= ev=3D0x02 > > hdr=3D0x00 > > vendor =3D 'Intel Corporation' > > device =3D '82801AA 8xx Chipset AC'97 Audio Controller' > > class =3D multimedia > > subclass =3D audio > >=20 > > Anyone have any ideas? Thanks. >=20 > I've got an HP Pavilion 7840. I'v had devices agp, smbus, ichsmb, smb, an= d > pcm enabled in my kernel since 4.2 (patched), and ICH sound has worked fi= ne: Worked like a champ, pcm now attaches to the soundcard. Thanks for the tip. I tend to forget about the smb related options as I have never really had a need to use them. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-WiPrtwskvAuCtXXzwVMv Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQA9qY+Lb2iPiv4Uz4cRAgIhAJ9WkpxJyUMUpaVp7J44Nq0gZ2A6+QCbBmIX iTFuo0HiiQaICrm2MDO3spM= =T5q0 -----END PGP SIGNATURE----- --=-WiPrtwskvAuCtXXzwVMv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 8:30:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9971237B4A8 for ; Sun, 13 Oct 2002 08:30:21 -0700 (PDT) Received: from web20001.mail.yahoo.com (web20001.mail.yahoo.com [216.136.225.46]) by mx1.FreeBSD.org (Postfix) with SMTP id 54B7443E97 for ; Sun, 13 Oct 2002 08:30:21 -0700 (PDT) (envelope-from vctw@yahoo.com) Message-ID: <20021013153021.67476.qmail@web20001.mail.yahoo.com> Received: from [168.95.19.3] by web20001.mail.yahoo.com via HTTP; Sun, 13 Oct 2002 08:30:21 PDT Date: Sun, 13 Oct 2002 08:30:21 -0700 (PDT) From: Vincent Chen Subject: NIC problem? To: FreeBSD maillist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear all, I have a DE-220 10M NIC connect to a server with realtek 8139 NIC using cross over cable. The transfer speed usually over 500K bytes. Recently, the server crashed and I have to connect this DE-220 NIC to another server with Intel 82559 NIC using the same cross over cable. After that, the transfer is terrible. Usually below 10K bytes.I see a lot of collision in 'netstat -in' command on intel side but nothing unusual on DE-220 side. Is there any thing I can do to solve this problem? Thanks, Vincent Chen __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 13 8:34:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2C3837B401 for ; Sun, 13 Oct 2002 08:34:11 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 39FBA43E7B for ; Sun, 13 Oct 2002 08:34:10 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 22840 invoked from network); 13 Oct 2002 15:34:07 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 13 Oct 2002 15:34:07 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 8CE572FDAB2; Sun, 13 Oct 2002 17:34:06 +0200 (CEST) Date: Sun, 13 Oct 2002 17:34:06 +0200 From: Roman Neuhauser To: Cameron Watters Cc: freebsd-questions@freebsd.org Subject: Re: CD-ROM install problems (like 4.6-RELEASE problem) Message-ID: <20021013153406.GN364@freepuppy.bellavista.cz> Mail-Followup-To: Cameron Watters , freebsd-questions@freebsd.org References: <10A69840-DEBF-11D6-8FF6-00306554358C@h2os.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <10A69840-DEBF-11D6-8FF6-00306554358C@h2os.org> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # cam-listsubs@h2os.org / 2002-10-13 08:18:45 -0700: > I'm having a problem installing 4.6.2-RELEASE and 4.7-RELEASE (haven't > tried any others yet) when installing from CD-ROM using a Hitachi > GD-3000. > The drive is the master on the secondary on-board controller. The machine > boots up fine off of the CD, then when attempting to extract the > distributions I select, it hangs. Error messages on VTY2? (alt-F2): > > acd0: READ_BIG command timeout - resetting > ata1: resetting devices .. done > acd0: read data overrun 2048/0 is this the same thing? http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/41651 -- begin 666 nonexistent.vbs FreeBSD 4.7-STABLE 5:32PM up 20:03, 9 users, load averages: 0.09, 0.15, 0.09 end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 8:36:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 174A737B401; Sun, 13 Oct 2002 08:36:20 -0700 (PDT) Received: from home.krad.org.uk (host217-39-78-190.in-addr.btopenworld.com [217.39.78.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61AA643E91; Sun, 13 Oct 2002 08:36:18 -0700 (PDT) (envelope-from c.scott@uk.tiscali.com) Received: from viper.intranet ([192.168.0.241] helo=viper) by gateway.intranet with smtp (Exim 4.10) id 180kmY-0008fX-00; Sun, 13 Oct 2002 16:35:54 +0100 Message-ID: <005a01c272ce$44b0c4a0$f100a8c0@viper> From: "chris scott" To: , , Subject: Ifconfig config of gif tunnels Date: Sun, 13 Oct 2002 16:36:16 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've just cvsed up and made world to freebsd 4.7 stable, without a hitch. However when I rebooted my machine the vpn tunnel which it was running wouldnt come back up. After a while of checking configs and poking around I found it was because the gif interfaces were cinfigured and not up. A simple ifconfig gif0 up fixed this. I have never had to do this before as when I have created gif interfaces the device was automatically up, this doesnt seem to be the case anymore. Is this a new feature or a bug? example root on gateway# ifconfig gif3 ifconfig: interface gif3 does not exist root on gateway# ifconfig gif3 create tunnel 1.2.3.4 5.6.7.8 root on gateway# ifconfig gif3 inet 192.168.0.1 192.168.0.2 netmask 255.255.255.252 root on gateway# ifconfig gif3 gif3: flags=8050 mtu 1280 tunnel inet 1.2.3.4 --> 5.6.7.8 inet 192.168.0.1 --> 192.168.0.2 netmask 0xfffffffc root on gateway# ifconfig gif3 up root on gateway# ifconfig gif3 gif3: flags=8051 mtu 1280 tunnel inet 1.2.3.4 --> 5.6.7.8 inet 192.168.0.1 --> 192.168.0.2 netmask 0xfffffffc root on gateway# Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 8:46: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E15A837B401 for ; Sun, 13 Oct 2002 08:46:06 -0700 (PDT) Received: from sub21-156.member.dsl-only.net (sub21-156.member.dsl-only.net [63.105.21.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3667543E88 for ; Sun, 13 Oct 2002 08:46:06 -0700 (PDT) (envelope-from nkinkade@sub21-156.member.dsl-only.net) Received: from sub21-156.member.dsl-only.net (freebsd.localhost.localdomain [127.0.0.1]) by sub21-156.member.dsl-only.net (8.12.5/8.12.5) with ESMTP id g9DFsR2T025282 for ; Sun, 13 Oct 2002 08:54:27 -0700 (PDT) (envelope-from nkinkade@sub21-156.member.dsl-only.net) Received: (from nkinkade@localhost) by sub21-156.member.dsl-only.net (8.12.5/8.12.5/Submit) id g9DFsMAj025281 for freebsd-questions@freebsd.org; Sun, 13 Oct 2002 08:54:22 -0700 (PDT) (envelope-from nkinkade) Date: Sun, 13 Oct 2002 08:54:22 -0700 From: Nathan Kinkade To: freebsd-questions@freebsd.org Subject: Re: [getting FreeBSD on CD] Message-ID: <20021013155422.GA19803@sub21-156.member.dsl-only.net> Mail-Followup-To: freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 12:56:46PM +0300, ÐгоÑÑ Ðиджиев wrote: > Hi. > Tell me please, how can i get newest freebsd version on cd? > > Best gerards, Igor Lidzhiyev. See this web page: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors.html Nathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 8:57:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2310537B401 for ; Sun, 13 Oct 2002 08:57:20 -0700 (PDT) Received: from vms3.rit.edu (vms3.isc.rit.edu [129.21.3.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1715C43E9C for ; Sun, 13 Oct 2002 08:57:18 -0700 (PDT) (envelope-from bjm1287@ritvax.isc.rit.edu) Received: from dogbert ([129.21.129.47]) by ritvax.isc.rit.edu (PMDF V5.2-32 #40294) with ESMTPA id <01KNM60P19XUP0AA9J@ritvax.isc.rit.edu> for freebsd-questions@FreeBSD.ORG; Sun, 13 Oct 2002 11:56:51 EDT Date: Sun, 13 Oct 2002 11:55:39 -0400 From: Brian McCann Subject: RE: Slightly OT: How to remove an odd file... In-reply-to: <20021013151607.G36558-100000@freebsd.rf0.com> To: 'Rus Foster' , freebsd-questions@FreeBSD.ORG Message-id: <005801c272d0$fab6c040$1500a8c0@dogbert> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailer: Microsoft Outlook, Build 10.0.2616 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG No go...here's the listing for the file...here's what happens... -rwsr-sr-x 1 root root 64924 Sep 2 15:24 rm " " rm: remove write-protected file ` '? y rm: cannot unlink ` ': Operation not permitted Any other ideas? --Brian -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of Rus Foster Sent: Sunday, October 13, 2002 10:17 AM To: Brian McCann Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: How to remove an odd file... On Sun, 13 Oct 2002, Brian McCann wrote: > I've got an interesting question for you all. I've got a file who's > name is " "...3 blank spaces. It shows up when I do an ls -la, and I > can get it's inode # (it's in RedHat...a box I'm going to convert to > FreeBSD real soon)...does anyone know how to remove a file based off > of an inode #? > > --Brian McCann Have you tried rm " " ? I've just tried it on my box bash-2.05# touch " " bash-2.05# ls -ld " " -rw-r--r-- 1 root wheel 0 Oct 13 13:13 bash-2.05# rm " " bash-2.05# ls -ld " " ls: : No such file or directory Rus -- http://www.fsck.me.uk - My blog http://shells.fsck.me.uk - Hosting how you want it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9: 0:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA9FF37B401 for ; Sun, 13 Oct 2002 09:00:34 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60DF243E75 for ; Sun, 13 Oct 2002 09:00:34 -0700 (PDT) (envelope-from pkdb1@attbi.com) Received: from attbi.com ([12.231.115.57]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021013160033.IUGI24595.sccrmhc02.attbi.com@attbi.com> for ; Sun, 13 Oct 2002 16:00:33 +0000 Message-ID: <3DA99893.3000304@attbi.com> Date: Sun, 13 Oct 2002 09:00:19 -0700 From: paul User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.1) Gecko/20020927 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: How to remove an odd file... References: <005801c272d0$fab6c040$1500a8c0@dogbert> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Brian McCann wrote: > No go...here's the listing for the file...here's what happens... > > -rwsr-sr-x 1 root root 64924 Sep 2 15:24 > > rm " " > rm: remove write-protected file ` '? y > rm: cannot unlink ` ': Operation not permitted > > Any other ideas? > I assume you did this as root/sudo? Strange that it's setuid . . . . -- Paul Beard / 8040 27th Ave NE / Seattle WA 98115 / paulbeard [at] mac [ dot] com / 206 529 8400 weblog @ With a rubber duck, one's never alone. -- "The Hitchhiker's Guide to the Galaxy" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9: 4:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E35DA37B409 for ; Sun, 13 Oct 2002 09:04:52 -0700 (PDT) Received: from rhadamanth.submonkey.net (pc1-cdif2-4-cust210.cdf.cable.ntl.com [80.4.10.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C74643E9C for ; Sun, 13 Oct 2002 09:04:52 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from setantae by rhadamanth.submonkey.net with local (Exim 4.10) id 180lEY-000PuX-00 for freebsd-questions@FreeBSD.ORG; Sun, 13 Oct 2002 17:04:50 +0100 Date: Sun, 13 Oct 2002 17:04:50 +0100 From: Ceri Davies To: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: How to remove an odd file... Message-ID: <20021013160450.GA5079@submonkey.net> References: <005801c272d0$fab6c040$1500a8c0@dogbert> <3DA99893.3000304@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3DA99893.3000304@attbi.com> X-message-flag: All your linuxconf-configured redhat are belong to us. User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 09:00:19AM -0700, paul wrote: > Brian McCann wrote: > >No go...here's the listing for the file...here's what happens... > > > >-rwsr-sr-x 1 root root 64924 Sep 2 15:24 > > > >rm " " > >rm: remove write-protected file ` '? y > >rm: cannot unlink ` ': Operation not permitted > > > >Any other ideas? > > I assume you did this as root/sudo? Strange that it's setuid . . . . Yes, I would be extremely suspicious of where that setuid/setgid nearly invisible file came from if I were you. Ceri -- you can't see when light's so strong you can't see when light is gone To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9: 5:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5993C37B401 for ; Sun, 13 Oct 2002 09:05:28 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A22743EB2 for ; Sun, 13 Oct 2002 09:05:23 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9DG5Kf06319; Sun, 13 Oct 2002 11:05:20 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021013110519.012cd790@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sun, 13 Oct 2002 11:05:19 -0500 To: Vincent Chen , FreeBSD maillist From: "Jack L. Stone" Subject: Re: NIC problem? In-Reply-To: <20021013153021.67476.qmail@web20001.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 08:30 AM 10.13.2002 -0700, Vincent Chen wrote: >Dear all, > >I have a DE-220 10M NIC connect to a server with >realtek >8139 NIC using cross over cable. The transfer speed >usually over 500K bytes. Recently, the server crashed >and I have to connect this DE-220 NIC to another >server with Intel 82559 NIC using the same cross over >cable. After that, the transfer is terrible. Usually >below 10K bytes.I see a lot of collision in 'netstat >-in' command on intel side but nothing unusual on >DE-220 side. Is there any thing I can do to solve this >problem? > >Thanks, > >Vincent Chen > How about just changing NICs....??? Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9: 7:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4F7A37B401 for ; Sun, 13 Oct 2002 09:07:26 -0700 (PDT) Received: from mail.dubium.com (h24-78-225-134.vn.shawcable.net [24.78.225.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB0543E97 for ; Sun, 13 Oct 2002 09:07:26 -0700 (PDT) (envelope-from joe-dated-1034957306.af6048@dubium.com) Received: (qmail 18344 invoked from network); 13 Oct 2002 16:08:26 -0000 Received: from localhost (HELO fafner.dubium.com) ([127.0.0.1]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 13 Oct 2002 16:08:26 -0000 Content-Type: text/plain; charset="iso-8859-1" To: freebsd-questions@FreeBSD.ORG, bjm1287@ritvax.isc.rit.edu Subject: Re: Slightly OT: How to remove an odd file... Date: Sun, 13 Oct 2002 09:08:00 -0700 X-Mailer: KMail [version 1.4] References: <005801c272d0$fab6c040$1500a8c0@dogbert> <3DA99893.3000304@attbi.com> In-Reply-To: <3DA99893.3000304@attbi.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200210130908.00910.joe@dubium.com> From: joe X-Delivery-Agent: TMDA/0.62 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On October 13, 2002 09:00 am, paul wrote: > Brian McCann wrote: > > No go...here's the listing for the file...here's what happens... > > > > -rwsr-sr-x 1 root root 64924 Sep 2 15:24 > > > > rm " " > > rm: remove write-protected file ` '? y > > rm: cannot unlink ` ': Operation not permitted > > > > Any other ideas? > > I assume you did this as root/sudo? Strange that it's setuid . . . . http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-trouble.html Is the immutable flag set as root, try chflags noschg " " then delete -- ---------------------------------------- Joe ----------------------------------------- We have been silent witnesses of evil deeds... Will our inward power of resistance be strong enough for us to find our way back? - Dietrich Bonhoeffer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9:10: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D690037B404 for ; Sun, 13 Oct 2002 09:09:58 -0700 (PDT) Received: from vms3.rit.edu (vms3.isc.rit.edu [129.21.3.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7578643E91 for ; Sun, 13 Oct 2002 09:09:58 -0700 (PDT) (envelope-from bjm1287@ritvax.isc.rit.edu) Received: from dogbert ([129.21.129.47]) by ritvax.isc.rit.edu (PMDF V5.2-32 #40294) with ESMTPA id <01KNM6GMKP8CP0B8E8@ritvax.isc.rit.edu> for freebsd-questions@FreeBSD.ORG; Sun, 13 Oct 2002 12:09:45 EDT Date: Sun, 13 Oct 2002 12:08:29 -0400 From: Brian McCann Subject: RE: Slightly OT: How to remove an odd file... In-reply-to: <3DA99893.3000304@attbi.com> To: 'paul' , freebsd-questions@FreeBSD.ORG Message-id: <005b01c272d2$c67fad30$1500a8c0@dogbert> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailer: Microsoft Outlook, Build 10.0.2616 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yea...did it logged on directly as root. I think what happened is someone hacked the box via anon. FTP and made this program as a back door of some kind. :-/ I was able to 'chmod +w " " ' it, no errors there...but it yells when I try to rm it. --Brian McCann -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of paul Sent: Sunday, October 13, 2002 12:00 PM To: freebsd-questions@FreeBSD.ORG Subject: Re: Slightly OT: How to remove an odd file... Brian McCann wrote: > No go...here's the listing for the file...here's what happens... > > -rwsr-sr-x 1 root root 64924 Sep 2 15:24 > > rm " " > rm: remove write-protected file ` '? y > rm: cannot unlink ` ': Operation not permitted > > Any other ideas? > I assume you did this as root/sudo? Strange that it's setuid . . . . -- Paul Beard / 8040 27th Ave NE / Seattle WA 98115 / paulbeard [at] mac [ dot] com / 206 529 8400 weblog @ With a rubber duck, one's never alone. -- "The Hitchhiker's Guide to the Galaxy" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" 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 13 9:14:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEFD337B401 for ; Sun, 13 Oct 2002 09:14:33 -0700 (PDT) Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [24.147.188.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD8F443E4A for ; Sun, 13 Oct 2002 09:14:32 -0700 (PDT) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [24.147.188.198] (may be forged)) by be-well.ilk.org (8.12.6/8.12.5) with ESMTP id g9DGEW8s089129; Sun, 13 Oct 2002 12:14:32 -0400 (EDT) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: (from lowell@localhost) by be-well.ilk.org (8.12.6/8.12.6/Submit) id g9DGEVQ9089126; Sun, 13 Oct 2002 12:14:31 -0400 (EDT) X-Authentication-Warning: be-well.ilk.org: lowell set sender to freebsd-questions-local@be-well.ilk.org using -f To: Vincent Chen Cc: FreeBSD maillist Subject: Re: NIC problem? References: <20021013153021.67476.qmail@web20001.mail.yahoo.com> From: Lowell Gilbert Date: 13 Oct 2002 12:14:31 -0400 In-Reply-To: <20021013153021.67476.qmail@web20001.mail.yahoo.com> Message-ID: <44bs5ygvtk.fsf@be-well.ilk.org> Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Vincent Chen writes: > I have a DE-220 10M NIC connect to a server with > realtek > 8139 NIC using cross over cable. The transfer speed > usually over 500K bytes. Recently, the server crashed > and I have to connect this DE-220 NIC to another > server with Intel 82559 NIC using the same cross over > cable. After that, the transfer is terrible. Usually > below 10K bytes.I see a lot of collision in 'netstat > -in' command on intel side but nothing unusual on > DE-220 side. Is there any thing I can do to solve this > problem? You almost certainly have a duplex mismatch. Get the two sides to agree on the duplex setting, and they should run up close to wire speed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9:16:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E929937B401 for ; Sun, 13 Oct 2002 09:16:43 -0700 (PDT) Received: from ns1.webwarrior.net (overlord-host99.dsl.visi.com [209.98.86.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 732EF43E7B for ; Sun, 13 Oct 2002 09:16:43 -0700 (PDT) (envelope-from friar_josh@webwarrior.net) Received: by ns1.webwarrior.net (Postfix, from userid 1003) id 9563D25316; Sun, 13 Oct 2002 17:20:09 -0500 (CDT) Date: Sun, 13 Oct 2002 17:20:09 -0500 From: Josh Paetzel To: Rus Foster Cc: questions@freebsd.org Subject: Re: Avoiding fsck at boot time Message-ID: <20021013222009.GA89289@ns1.webwarrior.net> References: <20021013155331.X36558-100000@freebsd.rf0.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021013155331.X36558-100000@freebsd.rf0.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 03:55:16PM +0100, Rus Foster wrote: > Hi, > I've got some unstable hardware ATM and whilst I'm trying to track it > down I would like to minimize downtime. I've enabled soft updates on all > but the rootfs as I thought this would do it. Can anyone point me in the > right direction? > > Rus > > -- > http://www.fsck.me.uk - My blog > http://shells.fsck.me.uk - Hosting how you want it. About the only thing you can do is install a 5.0-CURRENT shapshot. In 5.0 fsck is run in the background with the effect that the system comes up much faster than a 4.x system after a bad shutdown. You should realize that running 5.0 on a production machine isn't for the faint of heart, you're likely to have other issues depending on your hardware/software/chosen snap. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9:17:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5226437B401 for ; Sun, 13 Oct 2002 09:17:12 -0700 (PDT) Received: from sub21-156.member.dsl-only.net (sub21-156.member.dsl-only.net [63.105.21.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7124D43E6A for ; Sun, 13 Oct 2002 09:17:11 -0700 (PDT) (envelope-from nkinkade@sub21-156.member.dsl-only.net) Received: from sub21-156.member.dsl-only.net (freebsd.localhost.localdomain [127.0.0.1]) by sub21-156.member.dsl-only.net (8.12.5/8.12.5) with ESMTP id g9DGPa2T025370 for ; Sun, 13 Oct 2002 09:25:36 -0700 (PDT) (envelope-from nkinkade@sub21-156.member.dsl-only.net) Received: (from nkinkade@localhost) by sub21-156.member.dsl-only.net (8.12.5/8.12.5/Submit) id g9DGPV55025369 for questions@freebsd.org; Sun, 13 Oct 2002 09:25:31 -0700 (PDT) (envelope-from nkinkade) Date: Sun, 13 Oct 2002 09:25:31 -0700 From: Nathan Kinkade To: questions@freebsd.org Subject: Re: Because of NAT? Message-ID: <20021013162531.GA25313@sub21-156.member.dsl-only.net> Mail-Followup-To: Nathan Kinkade , questions@freebsd.org References: <20021013162359.2a31f584.johann@broadpark.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021013162359.2a31f584.johann@broadpark.no> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 04:23:59PM +0200, Janine C.Buorditez wrote: > Hi. > > My network is like this: > > Name: Cisco 677i-DIR (ADSL-router/modem) > IP: 217.13.29.51 > | > v > Name: Ninja (FreeBSD) > IP: 192.168.187.1 > | > v > Name: Aegis (FreeBSD) > IP: 192.168.187.2 > > The Cisco router runs CBOS and apparently NAT. I have forwarded these ports to > Ninja. The address 10.0.0.2 (somehow it has to be that address) goes to Ninja's > lnc0. no, the address does not have to be 10.0.0.2, it should be the address of whichever machine on this inside you want the packets forwarded to. what is the inside-address on your 677? possibly the router will not let you forward to a address on a different network than one of it's inside addresses? > set nat entry add 10.0.0.2 22 0.0.0.0 22 tcp > set nat entry add 10.0.0.2 25 0.0.0.0 25 tcp > set nat entry add 10.0.0.2 80 0.0.0.0 80 tcp > set nat entry add 10.0.0.2 53 0.0.0.0 53 tcp > set nat entry add 10.0.0.2 113 0.0.0.0 113 tcp > set nat entry add 10.0.0.2 1024-5000 0.0.0.0 1024-5000 tcp > set nat entry add 10.0.0.2 31337 0.0.0.0 31337 tcp why are you opening up ports 53 and 1024-5000? unless you have specific processes listening on port within those ranges you probably shouldn't open them. > This should cover most things, shouldn't it? However I'm concerned the use of NAT > on my router and boxes has stirred shit up. For instance, I can only connect to > my OpenFTPD (on 31337) site locally. Connecting remotely gives me: right, your NAT entry is pointing to some non-existant host at 10.0.0.2. it should be pointing to one of the boxes with a 192.168.187.x address - the one with FTPD running. which, by the way, bring up the issue that are not forwarding FTP - port 21 - anywhere. certainly nothing will get through with this setup. > lftp test@ninja.terrabionic.com:~> ls > ---- Connecting to ninja.terrabionic.com (217.13.29.51) port 31337 > **** Socket error (Connection timed out) - reconnecting > > Also I've been hearing people not getting ident requests from me. > > This can not be a BIND issue can it? I find it odd why my hostname sometimes > doesn't resolve on EFNet, but on all the other networks I'm on. > > NAT, it seems, has really made networking a lot harder for me than what I > deserve. I hope somebody understands my situation and are able to give useful > replies. no, NAT(or PAT in this case) is your friend. it saves you money, and it adds a certain level of security. sounds like you need to read up more on CBOS and NAT/PAT. This guy has some useful instructions on setting up your Cisco. I think he's talking about a 675 or 678, but it will probably still apply to you case: http://www.users.qwest.net/~rlutton/ADSL/ Nathan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9:25: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6502D37B401 for ; Sun, 13 Oct 2002 09:25:04 -0700 (PDT) Received: from zephir.primus.ca (mail.tor.primus.ca [216.254.136.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06D6D43E97 for ; Sun, 13 Oct 2002 09:25:04 -0700 (PDT) (envelope-from leth@primus.ca) Received: from dialin-163-167.tor.primus.ca ([216.254.163.167]) by zephir.primus.ca with esmtp (Exim 3.33 #16) id 180lY7-0001PO-0A; Sun, 13 Oct 2002 12:25:03 -0400 Date: Sun, 13 Oct 2002 12:25:35 -0400 (EDT) From: Jason Hunt X-X-Sender: leth@lethargic.dyndns.org To: questions@FreeBSD.ORG Cc: Rus Foster Subject: Re: Avoiding fsck at boot time In-Reply-To: <20021013155331.X36558-100000@freebsd.rf0.com> Message-ID: <20021013122125.B70001-100000@lethargic.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 13 Oct 2002, Rus Foster wrote: > Hi, > I've got some unstable hardware ATM and whilst I'm trying to track it > down I would like to minimize downtime. I've enabled soft updates on all > but the rootfs as I thought this would do it. Can anyone point me in the > right direction? > Try setting fsck_y_enable="YES" in your /etc/rc.conf Hope this helps. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 9:44:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99F0537B401 for ; Sun, 13 Oct 2002 09:44:56 -0700 (PDT) Received: from Mail1.KONTENT.De (Mail1.KONTENT.De [81.88.34.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id F350443E75 for ; Sun, 13 Oct 2002 09:44:50 -0700 (PDT) (envelope-from thomas@youngarts.org) Received: from neuromancer (port-212-202-192-97.reverse.qdsl-home.de [212.202.192.97]) by Mail1.KONTENT.De (Postfix) with ESMTP id 936D85D4B5 for ; Sun, 13 Oct 2002 18:44:58 +0200 (CEST) Message-ID: <001501c272d7$ed750700$0a00a8c0@neuromancer> From: "Thomas Weber" To: Subject: /usr/share/locale/ja_JP.SJIP/LC_TIME: Too many levels of symbolic links Date: Sun, 13 Oct 2002 18:45:21 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, i've recently upgraded to FreeBSD 4.7-RELEASE. Everything is working okay, kernel is compiled and the world is builded. But when i make make installworld i get: /usr/share/locale/ja_JP.SJIP/LC_TIME: Too many levels of symbolic links Anyone know this problem? Somewhere i've read, tha LC_TIME is a link to itself, but i don't know wich file to edit to avoid this. Thomas 'Neo' Weber --- thomas@youngarts.org neo@gothic-chat.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 13 10:52:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0950737B401 for ; Sun, 13 Oct 2002 10:52:21 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3A8343E88 for ; Sun, 13 Oct 2002 10:52:20 -0700 (PDT) (envelope-from b0w3n@attbi.com) Received: from morpheous ([12.227.204.14]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021013175219.PUJB4193.rwcrmhc51.attbi.com@morpheous> for ; Sun, 13 Oct 2002 17:52:19 +0000 Reply-To: From: "bowen" To: Subject: Can I and where to learn how? Date: Sun, 13 Oct 2002 11:52:19 -0600 Message-ID: <000001c272e1$46e86a80$020aa8c0@morpheous> 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, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi I've been going through the handbook and the faq's and wondering how or if it's possible to do the following 1_) I'd like to use my FreeBSD 4.7 to act as the home to 3 windows machines my documents folder. 2_) I'd like to use it for my WWW server 3_) I'd like to use it for my FTP server 4_) I have 1 fat32 drive that I want to use for the windows machines my documents folders? So how do I mount them in say /home dir? And then use Samba to share those? And can I set permissions and ownership of each sub directory within the /home/backup mount?? 5_) I have one UFS? Default Freebsd drive mounted in /home/www for the web server. Just wondering if that's a good place to have it or should I mount it somewhere else? 6_) I have a raid system formatted fat32 for my ftp server which I need to access from one windows machine to manage the files and directories within? Part two of this question is this when I had it on windows 2000 I used Guildftpd as my ftp server dameon and I was wondering what would be a good ftp server to use on freebsd? I know this is probably a crazy attempt but I like Freebsd a lot. I have rebuilt my Kernel already lol and got a good install, if I'm mental thinking I can use this for all that please just let me know... was just trying to find an alternative to windows TIA for any and all help Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 10:56:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B140137B401; Sun, 13 Oct 2002 10:56:32 -0700 (PDT) Received: from cheer.mahoroba.org (flets19-167.kamome.or.jp [218.45.19.167]) by mx1.FreeBSD.org (Postfix) with ESMTP id 482FC43E88; Sun, 13 Oct 2002 10:56:31 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from lyrics.mahoroba.org (IDENT:oIJy5Ww1aY5nfrXdhBJ9CqqnCFQ/3gzZoH/iHLan8iQV9rVAKC9l30CV1zxfC3zW@lyrics.mahoroba.org [IPv6:3ffe:501:185b:8010:280:88ff:fe03:4841]) (user=ume mech=CRAM-MD5 bits=0) by cheer.mahoroba.org (8.12.6/8.12.6) with ESMTP/inet6 id g9DHuMRE025453 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 14 Oct 2002 02:56:25 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Mon, 14 Oct 2002 02:56:22 +0900 Message-ID: From: Hajimu UMEMOTO To: "chris scott" Cc: , , Subject: HEADS UP: Re: Ifconfig config of gif tunnels In-Reply-To: <005a01c272ce$44b0c4a0$f100a8c0@viper> References: <005a01c272ce$44b0c4a0$f100a8c0@viper> User-Agent: xcite1.38> Wanderlust/2.9.15 (Unchained Melody) SEMI/1.14.4 (Hosorogi) FLIM/1.14.4 (=?ISO-8859-4?Q?Kashiharajing=FE-mae?=) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) X-Operating-System: FreeBSD 5.0-CURRENT MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS-perl11-milter (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, >>>>> On Sun, 13 Oct 2002 16:36:16 +0100 >>>>> "chris scott" said: c.scott> I've just cvsed up and made world to freebsd 4.7 stable, without a hitch. c.scott> However when I rebooted my machine the vpn tunnel which it was running c.scott> wouldnt come back up. After a while of checking configs and poking around I c.scott> found it was because the gif interfaces were cinfigured and not up. A simple c.scott> ifconfig gif0 up fixed this. I have never had to do this before as when I c.scott> have created gif interfaces the device was automatically up, this doesnt c.scott> seem to be the case anymore. Is this a new feature or a bug? Doing up gif device automatically was a bug, and it was corrected. /etc/rc.network was changed to do up gif tunnel during setup. Please don't forget to do mergemaster. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Oct 13 11: 3: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3C3337B401 for ; Sun, 13 Oct 2002 11:03:06 -0700 (PDT) Received: from ns.odessos.org (ns.odessos.org [212.50.30.193]) by mx1.FreeBSD.org (Postfix) with SMTP id 930B643E6E for ; Sun, 13 Oct 2002 11:02:55 -0700 (PDT) (envelope-from cyberzone@odessos.org) Received: (qmail 2135 invoked from network); 13 Oct 2002 18:02:50 -0000 Received: from cyberzone.odessos.org (HELO K6) (212.50.30.198) by ns.odessos.org with SMTP; 13 Oct 2002 18:02:50 -0000 Message-ID: <000a01c272ed$7ca06fe0$0764a8c0@cyberzone.odessos.org> From: "Martin Tsanov" To: Subject: kernel panic after updating to 4.7-stable Date: Sun, 13 Oct 2002 21:19:44 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0007_01C272FE.4010D5E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C272FE.4010D5E0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Hello list Today I cvsupped my source tree and made the upgrade procedure. cd /usr/src make buildworld make buildkernel make installkernel make installworld mergemaster reboot I was not able to boot with the new kernel due to kernel panic, so I booted with the old kernel. Attached is the output of dmesg for the new kernel. Please help as this is my gateway/firewall. Thanks in advance. ------=_NextPart_000_0007_01C272FE.4010D5E0 Content-Type: text/plain; name="dmesg.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="dmesg.txt" Copyright (c) 1992-2002 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.7-STABLE #0: Sun Oct 13 17:21:33 EEST 2002 Murphy@cyberzone.odessos.org:/usr/obj/usr/src/sys/CYBERZONE Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (166.19-MHz 586-class CPU) Origin =3D "GenuineIntel" Id =3D 0x544 Stepping =3D 4 Features=3D0x8001bf real memory =3D 33554432 (32768K bytes) config> di sn0 config> di lnc0 config> di ie0 config> di fe0 config> di cs0 config> di bt0 config> di aic0 config> di aha0 config> di adv0 config> q avail memory =3D 27926528 (27272K bytes) Preloaded elf kernel "kernel" at 0xc04c1000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc04c109c. Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 isab0: at device 1.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 1.1 = on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x4020-0x403f irq 15 = at devic e 1.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ed0: port 0x4000-0x401f irq 11 at = device 6. 0 on pci0 ed0: address 00:00:21:ca:a1:66, type NE2000 (16 bit) pci0: at 8.0 orm0: > fetch > ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports//port.tar > tar -xf port.tar > Note: Not all of the mirrors support tar-on-the-fly ftp transfers, but some do, including the primary site. What is "tar-on-the-fly?" Case in point: # mkdir /usr/ports/java ; cd /usr/ports/java # fetch ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/java/jdk13.tar fetch: jdk13.tar: File unavailable (e.g., file not found, no access) I am losing faith in my abilities and am most certainly settling on a life of /stand/sysinstall and `pkg_add -r` :-( Can someone offer me hope? -- Peter Leftwich President & Founder Video2Video Services Box 13692, La Jolla, CA, 92039 USA +1-413-403-9555 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 14 22:23:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4026137B401 for ; Mon, 14 Oct 2002 22:23:42 -0700 (PDT) Received: from web40505.mail.yahoo.com (web40505.mail.yahoo.com [66.218.78.122]) by mx1.FreeBSD.org (Postfix) with SMTP id E308343EBE for ; Mon, 14 Oct 2002 22:23:41 -0700 (PDT) (envelope-from sonam_singh_s@yahoo.com) Message-ID: <20021015052341.63112.qmail@web40505.mail.yahoo.com> Received: from [202.88.149.172] by web40505.mail.yahoo.com via HTTP; Mon, 14 Oct 2002 22:23:41 PDT Date: Mon, 14 Oct 2002 22:23:41 -0700 (PDT) From: sonam singh Subject: Re: trouble mounting floppy To: freebsd-questions@FREEBSD.ORG, neuhauser@bellavista.cz In-Reply-To: <20021014073938.GP364@freepuppy.bellavista.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG U CAN TRY /DEV/FD.1440 THIS ALSO REGARDS SONAM SINGH SONAMSINGH@YAHOO.COM --- Roman Neuhauser wrote: > wayne, don't top-post. not even when following up to > your own post. > > # jackstone@sage-one.net / 2002-10-13 22:53:25 > -0500: > > At 08:28 PM 10.13.2002 -0700, Wayne Lubin wrote: > > >--- Wayne Lubin wrote: > > >> Hi, > > >> > > >> I have been mounting my floppy drive for a long > > >> time. > > >> However, now when I do a > > >> > > >> mount -t msdos /dev/fd0 /mnt/floppy > > >> > > >> it gives me the error msg > > >> > > >> mount: /dev/fd0: Device not configured > > >> > > >> It may have to do with the fact that the last > time I > > >> mounted the floppy I turned off the computer > without > > >> umount ing it. Thanks for you help. > > > > > >So I guess my question is what does it mean that > > >/dev/fd0 is not configured and how can I get it > > >configured so that I can start mounting it again. > > > > I see no one else has taken a shot at this, so: > > > > 1) do you have a directory "/mnt/floppy" > > 2) do you have the device "fd0" in /dev > > also, are you trying to mount the same floppy > you forgot > to unmount? if you have ufs on the floppy you > will need to fsck > first. i don't remember if you would be getting > "not configured" > error though... > > -- > begin 666 nonexistent.vbs > FreeBSD 4.7-STABLE > 9:36AM up 1 day, 12:06, 9 users, load averages: > 0.01, 0.02, 0.00 > end > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 14 22:33:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EC6C37B401 for ; Mon, 14 Oct 2002 22:33:39 -0700 (PDT) Received: from perimeter.co.za (obelix.perimeter.co.za [209.212.102.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id A06AB43EAF for ; Mon, 14 Oct 2002 22:33:35 -0700 (PDT) (envelope-from bsd@perimeter.co.za) Received: from asterix (ndf-dial-196-30-223-58.mweb.co.za [196.30.223.58]) (AUTH: LOGIN bsd@perimeter.co.za) by perimeter.co.za with esmtp; Tue, 15 Oct 2002 07:33:29 +0200 Message-ID: <009901c2740c$a42c6e40$0200000a@perimeter.co.za> From: "Patrick O'Reilly" To: "FreeBSD Question List" , "Firsto Lasto" References: Subject: Re: route settings in rc.conf - question, with details. Date: Tue, 15 Oct 2002 07:35:10 +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.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "Firsto Lasto" > > Hi, > > I have a system with IPs assigned from 192.168.0.0/24 and 192.168.1.0/24 > > Right now I have this in my rc.conf: > > defaultrouter="10.10.10.10" > ifconfig_fxp0="inet 192.168.0.1 netmask 255.255.255.0" > ifconfig_fxp0_alias0="inet 192.168.0.2 netmask 255.255.255.255" > ifconfig_fxp0_alias1="inet 192.168.1.1 netmask 255.255.255.255" > > So, as you can see I have one default route, and both /24s use that single > 10.10.10.10 as the default router. But, because I have simply added the > 192.168.1.1 IP as one more plain old alias, I now get this in my logs: > > /kernel: arplookup 10.10.10.10 failed: host is not on local network > > So, how do I add 192.168.1.1 as an alias, without adding another > defaultrouter, since my current defaultrouter setting is already correct ? > The problem is not with the aliases - it is (as the message says) because the default router is not on a local network. If the router is attached via fxp0, then try adding an alias like this: ifconfig_fxp0_alias2="inet 10.10.10.1 netmask 255.255.255.0" Then your system will know which interface to use to talk to 10.10.10.10. --- Regards, Patrick O'Reilly. ___ _ __ / _ )__ __ (_)_ __ ___ _/ /____ __ / __/ -_) _) / ~ ) -_), ,-/ -_) _) /_/ \__/_//_/_/~/_/\__/ \__/\__/_/ http://www.perimeter.co.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 14 22:40: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57A2037B401 for ; Mon, 14 Oct 2002 22:40:05 -0700 (PDT) Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6A5543E9C for ; Mon, 14 Oct 2002 22:40:04 -0700 (PDT) (envelope-from zigner@earthlink.net) Received: from lsanca1-ar4-4-43-158-215.lsanca1.elnk.dsl.genuity.net ([4.43.158.215] helo=earthlink.net) by hawk.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 181KR1-0002b8-00 for FreeBSD-questions@FreeBSD.ORG; Mon, 14 Oct 2002 22:40:03 -0700 Message-ID: <3DABAA43.C394B84C@earthlink.net> Date: Mon, 14 Oct 2002 22:40:19 -0700 From: "Tony M." X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD-questions@FreeBSD.ORG Subject: Installing Packages Using Sysinstall? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello again everyone. I am trying to use the sysinstall utility to add packages. If I use the main server (ftp.freebsd.org) then I get a message saying that it can't find the 4.7-RC1 distribution on this server. When I set the options to "any" and then try it it says it can't find the /INDEX file on the specified server. Even when I put in the full path to ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4.7-rc1/ as a url, it still can't find it. What am I doing wrong? Thanks, Tony To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 14 22:48:22 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD61937B401 for ; Mon, 14 Oct 2002 22:48:21 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 3208943EAA for ; Mon, 14 Oct 2002 22:48:20 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 10087 invoked from network); 15 Oct 2002 05:48:12 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 15 Oct 2002 05:48:12 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 9964E2FDAB2; Tue, 15 Oct 2002 07:48:10 +0200 (CEST) Date: Tue, 15 Oct 2002 07:48:10 +0200 From: Roman Neuhauser To: FreeBSD LIST Subject: Re: Ports FAQ is a great read [port.tar??] Message-ID: <20021015054810.GR364@freepuppy.bellavista.cz> Mail-Followup-To: FreeBSD LIST References: <20021015011627.X4776-100000@earl-grey.cloud9.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021015011627.X4776-100000@earl-grey.cloud9.net> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # Hostmaster@Video2Video.Com / 2002-10-15 01:19:17 -0400: > On 1 Oct 2002, Gary W. Swearingen wrote: > > non-cvsup method 3: > > -- cd /usr/ports/ > > fetch > > ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports//port.tar > > tar -xf port.tar > > Note: Not all of the mirrors support tar-on-the-fly ftp transfers, but some do, including the primary site. > > What is "tar-on-the-fly?" No idea. :) > # mkdir /usr/ports/java ; cd /usr/ports/java > # fetch ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/java/jdk13.tar > fetch: jdk13.tar: File unavailable (e.g., file not found, no access) I don't think this will work. You have to fetch the files from sun.com manually due to licensing issues. -- If you cc me or take the list(s) out completely I'll most likely ignore your 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 14 23:11: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DABF37B401 for ; Mon, 14 Oct 2002 23:11:08 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id C7E5B43EB1 for ; Mon, 14 Oct 2002 23:11:06 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 10304 invoked from network); 15 Oct 2002 06:11:02 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 15 Oct 2002 06:11:02 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 5E9F62FDAB2; Tue, 15 Oct 2002 08:10:59 +0200 (CEST) Date: Tue, 15 Oct 2002 08:10:59 +0200 From: Roman Neuhauser To: questions@FreeBSD.ORG Subject: Re: Running ipfw from a webpage/using php. Message-ID: <20021015061059.GS364@freepuppy.bellavista.cz> Mail-Followup-To: questions@FreeBSD.ORG References: <010101c2738e$ffcd2560$ec9e1ec4@staff.uunet.co.za> <3DAADA8B.55767D3A@liwing.de> <20021014151236.GB49638@happy-idiot-talk.infracaninophi> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021014151236.GB49638@happy-idiot-talk.infracaninophi> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # m.seaman@infracaninophile.co.uk / 2002-10-14 16:12:36 +0100: > On Mon, Oct 14, 2002 at 04:54:03PM +0200, Jens Rehsack wrote: > > Patrick Holahan wrote: > > > > I need to run a root command (ipfw) from apache through php. (Yes, this is > > > not very secure and I'm aware of this and if anyone has any better > > > suggestions, please feel free to make them.) > > > is that the function you search: > > string exec ( string command [, array output [, int return_var]]) > > That will run as the UID of the webserver, usually www, which won't be > very useful for doing stuff with ipfw. > > I'd grab sudo(8) or one of the alternatives from ports and very > carefully craft a /usr/local/etc/sudoers file that lets the www UID > run a specific ipfw command line without giving a password. Be very > careful not to let the www UID make arbitrary changes to your firewall > or you will discover the true meaning of pain in very short order. > Remember to add www to the wheel group if you go this way. this is IMO a better solution: #!/bin/sh [ -f /some/file ] && \ /your/command && \ /bin/rm -f /some/file /etc/crontab: * * * * * root /your/script in the php script: touch('/some/file'); > Oh, and good luck maintaining the integrity of your machine if you do > implement this. You're going to need it... not necessarily. implementation dependent. :) -- If you cc me or take the list(s) out completely I'll most likely ignore your 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 14 23:20:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A88C737B401 for ; Mon, 14 Oct 2002 23:20:15 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 4D80643EB1 for ; Mon, 14 Oct 2002 23:20:14 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 10362 invoked from network); 15 Oct 2002 06:20:13 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 15 Oct 2002 06:20:13 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 97D3C2FDAB2; Tue, 15 Oct 2002 08:20:12 +0200 (CEST) Date: Tue, 15 Oct 2002 08:20:12 +0200 From: Roman Neuhauser To: wolfgang Cc: FreeBSD-Questions Subject: Re: mount issues Message-ID: <20021015062012.GT364@freepuppy.bellavista.cz> Mail-Followup-To: wolfgang , FreeBSD-Questions References: <200210141818.50394.GeneralP.Fault@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200210141818.50394.GeneralP.Fault@gmx.net> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # GeneralP.Fault@gmx.net / 2002-10-14 18:18:50 +0200: > i would like to mount an ext2fs partition writable for at least one > user, same with a few msdos partitions. # might be "ext2" below, not sure /dev/foo /lunix ext2fs rw 0 0 /dev/bar /windoze msdos rw 0 0 > FreeBSD's /etc/fstab apparently does not support a "user" option to > allow users to mount file systems - neither does the mount command > setting the user id to someone else than root as far as i can tell. http://www.freebsd.org/doc/faq/disks.html#USER-FLOPPYMOUNT > how can i achieve write permissions for a non-privileged user there? see mount_msdos(8) for FAT filesystems, no idea about ext2fs -- If you cc me or take the list(s) out completely I'll most likely ignore your 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 14 23:38:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F63037B401 for ; Mon, 14 Oct 2002 23:38:40 -0700 (PDT) Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC29143E6E for ; Mon, 14 Oct 2002 23:38:39 -0700 (PDT) (envelope-from mbsd@pacbell.net) Received: from atlas ([64.165.199.240]) by mta6.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0H400000JFSF38@mta6.snfc21.pbi.net> for FreeBSD-Questions@FreeBSD.Org; Mon, 14 Oct 2002 23:38:39 -0700 (PDT) Date: Mon, 14 Oct 2002 23:38:37 -0700 (PDT) From: =?ISO-8859-1?Q?Mikko_Ty=F6l=E4j=E4rvi?= Subject: Re: Ports FAQ is a great read [port.tar??] In-reply-to: <20021015011627.X4776-100000@earl-grey.cloud9.net> X-X-Sender: mikko@atlas.home To: Peter Leftwich Cc: FreeBSD LIST Message-id: <20021014233020.W308-100000@atlas.home> MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 15 Oct 2002, Peter Leftwich wrote: > On 1 Oct 2002, Gary W. Swearingen wrote: > > non-cvsup method 3: > > -- cd /usr/ports/ > > fetch > > ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports//port.tar > > tar -xf port.tar > > Note: Not all of the mirrors support tar-on-the-fly ftp transfers, but some do, including the primary site. > > What is "tar-on-the-fly?" Case in point: A server-side feature that will run "tar," "gzip" and friends to nicely package things up for you when you access certain paths (e.g directories) with certain suffixes (such as ".tar", ".tgz" etc). > # mkdir /usr/ports/java ; cd /usr/ports/java > # fetch ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/java/jdk13.tar > fetch: jdk13.tar: File unavailable (e.g., file not found, no access) > > I am losing faith in my abilities and am most certainly settling on a life > of /stand/sysinstall and `pkg_add -r` :-( Can someone offer me hope? Try a client that does recursive ftp, for example "wget" (should be installable with "pkg_add -r wget", I guess), or "llnxdir" if you want a GUI (requires Motif, though). $.02, /Mikko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Oct 14 23:39:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FA2B37B401 for ; Mon, 14 Oct 2002 23:39:12 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id BC19743EAF for ; Mon, 14 Oct 2002 23:39:10 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 10512 invoked from network); 15 Oct 2002 06:39:03 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 15 Oct 2002 06:39:03 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id D306D2FDAB2; Tue, 15 Oct 2002 08:38:34 +0200 (CEST) Date: Tue, 15 Oct 2002 08:38:34 +0200 From: Roman Neuhauser To: sroberts@dsl.pipex.com Cc: FreeBSD Questions Subject: Re: Caching namesever in sandbox not resolving local boxes Message-ID: <20021015063834.GU364@freepuppy.bellavista.cz> Mail-Followup-To: sroberts@dsl.pipex.com, FreeBSD Questions References: <1034622133.363.34.camel@Demon.vickiandstacey.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1034622133.363.34.camel@Demon.vickiandstacey.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # stacey@Demon.vickiandstacey.com / 2002-10-14 20:02:11 +0100: > I've got named configured as a caching nameserver in a sandbox on my > gateway as per the Handbook. However when I run nslookup on other > machines on my network, I get this: > # nslookup > Server: > Address: upstream NS IP> > > *** can't find : Non-existent host/domain > # I can't really help you with this one (I use different software for DNS), and I see others already tried to guess what you were doing, but you might want to read this anyway: http://homepages.tesco.net./~J.deBoynePollard/FGA/dont-obscure-your-dns-data.html and why you should never use nslookup(1): http://www.faqts.com./knowledge_base/view.phtml/aid/9287/fid/699 http://cr.yp.to/djbdns/faq/tinydns.html#nslookup http://homepages.tesco.net./~J.deBoynePollard/FGA/nslookup-daft-error-message.html > I'm thinking that I can't resolve any other hosts on my network because > I've not got entries for them in a zone file, but then the handbook says > that to create a caching nameserver: > > "A caching name server is a name server that is not authoritative for > any zones. It simply asks queries of its own, and remembers them for > later use. To set one up, just configure the name server as usual, > omitting any inclusions of zones." > > So, am I missing something here. I might well be mistaken in my > understanding of exactly *what* a caching nameserver is supposed to do. http://homepages.tesco.net./~J.deBoynePollard/FGA/dns-server-roles.html -- If you cc me or take the list(s) out completely I'll most likely ignore your 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 15 0:24:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A85B237B401 for ; Tue, 15 Oct 2002 00:24:20 -0700 (PDT) Received: from iota.root-servers.ch (iota.root-servers.ch [193.41.193.195]) by mx1.FreeBSD.org (Postfix) with SMTP id 565FE43E9C for ; Tue, 15 Oct 2002 00:24:19 -0700 (PDT) (envelope-from gaml@buz.ch) Received: (qmail 30378 invoked from network); 15 Oct 2002 07:24:12 -0000 Received: from dclient217-162-94-86.hispeed.ch (HELO gaxp1800.root.li) (217.162.94.86) by 0 with SMTP; 15 Oct 2002 07:24:12 -0000 Date: Tue, 15 Oct 2002 09:24:24 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.60q) Educational Reply-To: Gabriel Ambuehl X-Priority: 3 (Normal) Message-ID: <122257499453.20021015092424@buz.ch> To: questions@freebsd.org Subject: Maximum number of group memberships? How to change? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I need to add user www to about 300 groups (i.e. all WWW users) so that Apache is able to read the files when they have o-r-w-x for safety reasons but it seems that a user can belong to no more than about 20 groups. Is there any possibility to change this? Any help would be greatly appreciated. regards, Gabriel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 0:37:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16AA737B401 for ; Tue, 15 Oct 2002 00:37:45 -0700 (PDT) Received: from mail.thundernet.cz (mail.thundernet.cz [62.77.87.114]) by mx1.FreeBSD.org (Postfix) with SMTP id A740543E9C for ; Tue, 15 Oct 2002 00:37:43 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: (qmail 11204 invoked from network); 15 Oct 2002 07:37:41 -0000 Received: from unknown (HELO freepuppy.bellavista.cz) (62.168.44.50) by mail.thundernet.cz with SMTP; 15 Oct 2002 07:37:41 -0000 Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 67FC32FDAB2; Tue, 15 Oct 2002 09:37:40 +0200 (CEST) Date: Tue, 15 Oct 2002 09:37:40 +0200 From: Roman Neuhauser To: Gabriel Ambuehl Cc: questions@freebsd.org Subject: Re: Maximum number of group memberships? How to change? Message-ID: <20021015073740.GX364@freepuppy.bellavista.cz> Mail-Followup-To: Gabriel Ambuehl , questions@freebsd.org References: <122257499453.20021015092424@buz.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <122257499453.20021015092424@buz.ch> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # gaml@buz.ch / 2002-10-15 09:24:24 +0200: > I need to add user www to about 300 groups (i.e. all WWW users) so > that Apache is able to read the files when they have o-r-w-x for > safety reasons how about adding all www users to the apache group? > but it seems that a user can belong to no more than > about 20 groups. Is there any possibility to change this? no idea. -- If you cc me or take the list(s) out completely I'll most likely ignore your 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 15 0:44:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08BA937B401 for ; Tue, 15 Oct 2002 00:44:10 -0700 (PDT) Received: from ariel.ucs.unimelb.edu.au (ariel.ucs.unimelb.edu.au [128.250.20.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3960543E6E for ; Tue, 15 Oct 2002 00:44:09 -0700 (PDT) (envelope-from jrhoden@unimelb.edu.au) Received: from elkanah.its.unimelb.edu.au (elkanah.its.unimelb.edu.au [128.250.18.41]) by ariel.ucs.unimelb.edu.au (8.12.3/8.12.3) with ESMTP id g9F7htiB012924; Tue, 15 Oct 2002 17:43:55 +1000 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Jacob Rhoden Organization: University of Melbourne To: Roman Neuhauser Subject: Re: Maximum number of group memberships? How to change? Date: Tue, 15 Oct 2002 17:43:55 +1000 X-Mailer: KMail [version 1.4] References: <122257499453.20021015092424@buz.ch> <20021015073740.GX364@freepuppy.bellavista.cz> In-Reply-To: <20021015073740.GX364@freepuppy.bellavista.cz> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210151743.55110.jrhoden@unimelb.edu.au> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 15 Oct 2002 17:37, Roman Neuhauser wrote: > > I need to add user www to about 300 groups (i.e. all WWW users) so > how about adding all www users to the apache group? Probably a better method than this is to create a new group, and add apac= he,=20 and all of the users to that group. As for increasing the limit, there is probably a reason for there being a= =20 limit (ie possibly a speed thing?). I am sure however, if you really, rea= lly,=20 really wanted to, you could modify the FreeBSD source code to increase th= e=20 limit. I would suggest there is a better solution to your problem though = (: Regards, Jacob =20 Jacob Rhoden Phone: +61 3 9844 6102 ITS Division Email: jrhoden@unimelb.edu.au Melbourne University Mobile: +61 403 788 386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 1: 9:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D8D437B401; Tue, 15 Oct 2002 01:09:50 -0700 (PDT) Received: from nebula.powweb.com (nebula.powweb.com [63.251.213.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CA2043E6A; Tue, 15 Oct 2002 01:09:50 -0700 (PDT) (envelope-from jesse@powweb.com) Received: from perth (adsl-63-198-133-39.dsl.lsan03.pacbell.net [63.198.133.39]) by nebula.powweb.com (Postfix) with ESMTP id 3B362BA010; Tue, 15 Oct 2002 01:09:50 -0700 (PDT) Reply-To: From: "Jesse Geddis" Cc: Subject: fp2002 over nfs Date: Tue, 15 Oct 2002 01:09:49 -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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Using a dns round robin of FreeBSD 4.6.2 web servers running apache 1.3.27 is there anything special that has to be done in order to make Front Page 2002 extensions work assuming the module is installed on all web servers and the front page files (binaries etc) would be NFS mounted as well via a NetApp F825? Please include me in the CC as I am not subscribed. Thank you in advance Jesse Geddis http://www.sgeine.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 1:29: 7 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23B1937B401 for ; Tue, 15 Oct 2002 01:29:06 -0700 (PDT) Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FA5B43E4A for ; Tue, 15 Oct 2002 01:29:03 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp03.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H40KWC00.PJ4; Tue, 15 Oct 2002 10:29:00 +0200 Date: Tue, 15 Oct 2002 10:28:16 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <1301540384.20021015102816@dds.nl> To: "Tony M." Cc: FreeBSD-questions@FreeBSD.ORG Subject: Re: Installing Packages Using Sysinstall? In-Reply-To: <3DABAA43.C394B84C@earthlink.net> References: <3DABAA43.C394B84C@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tuesday, October 15, 2002, 7:40:19 AM, you wrote: TM> Hello again everyone. TM> I am trying to use the sysinstall utility to add packages. If I use the main server TM> (ftp.freebsd.org) then I get a message saying that it can't find the 4.7-RC1 TM> distribution on this server. TM> When I set the options to "any" and then try it it says it can't find the /INDEX file TM> on the specified server. Even when I put in the full path to TM> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4.7-rc1/ as a url, it still TM> can't find it. TM> What am I doing wrong? TM> Thanks, TM> Tony TM> To Unsubscribe: send mail to majordomo@FreeBSD.org TM> with "unsubscribe freebsd-questions" in the body of the message Dear Tony, In the option menu you find a string that looks like FreeBSD-4.7-RC1. You have to remove the -RC1 part for this to work. You can also update your version to the final release. -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.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 15 1:29:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0718E37B404 for ; Tue, 15 Oct 2002 01:29:20 -0700 (PDT) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68B4443EAF for ; Tue, 15 Oct 2002 01:29:18 -0700 (PDT) (envelope-from mb@imp.ch) Received: from nbs.imp.ch (nbs.imp.ch [157.161.4.7]) by mail.imp.ch (8.12.3/8.12.3) with ESMTP id g9F8THaa009596; Tue, 15 Oct 2002 10:29:17 +0200 (CEST) (envelope-from Martin.Blapp@imp.ch) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by nbs.imp.ch (8.12.3/8.12.3) with ESMTP id g9F8TG751581559; Tue, 15 Oct 2002 10:29:17 +0200 (MES) Date: Tue, 15 Oct 2002 10:30:16 +0200 (CEST) From: Martin Blapp To: Jesse Geddis Cc: Subject: Re: fp2002 over nfs In-Reply-To: Message-ID: <20021015102956.H15308-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, That should work if you do the setup right. Martin > Using a dns round robin of FreeBSD 4.6.2 web servers running apache 1.3.27 > is there anything special that has to be done in order to make Front Page > 2002 extensions work assuming the module is installed on all web servers and > the front page files (binaries etc) would be NFS mounted as well via a > NetApp F825? Please include me in the CC as I am not subscribed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 1:46:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03F8E37B401 for ; Tue, 15 Oct 2002 01:46:13 -0700 (PDT) Received: from router.darlow.co.uk (pc2-bigg1-2-cust91.lutn.cable.ntl.com [62.255.179.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB30A43EB2 for ; Tue, 15 Oct 2002 01:46:11 -0700 (PDT) (envelope-from neil@darlow.co.uk) Received: from there (IDENT:1000@ideal.darlow.co.uk [192.168.0.2]) by router.darlow.co.uk (8.12.6/8.12.6) with SMTP id g9F8kA2H019330 for ; Tue, 15 Oct 2002 09:46:10 +0100 (BST) (envelope-from neil@darlow.co.uk) Message-Id: <200210150846.g9F8kA2H019330@router.darlow.co.uk> Content-Type: text/plain; charset="iso-8859-1" From: Neil Darlow To: freebsd-questions@freebsd.org Subject: signal 6 after upgrade to 4.7 Date: Tue, 15 Oct 2002 09:46:09 +0100 X-Mailer: KMail [version 1.3.2] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've been running Jabber and the icqv7-t transport quite happily under 4.6(.x) but since upgrading to 4.7 i've been experiencing regular coredumps with a signal 6. The icqv7-t transport and it's dependencies (libsigc++ and libicq2000) are written in C++ which leads me to ask if anyone has experienced these errors with their programs compiled with the 4.7 C++ compiler? Regards, Neil Darlow M.Sc. -- Open Standards/Free Software Consultants http://www.darlow.co.uk/ ICQ: 135505456 E-Mail, Jabber, MSNM: see following GnuPG identity 1024D/531F9048 1999-09-11 Neil Darlow GnuPG fingerprint = 359D B8FF 6273 6C32 BEAA 43F9 E579 E24A 531F 9048 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 2:33:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7F9E37B401 for ; Tue, 15 Oct 2002 02:33:29 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9AAE43EA9 for ; Tue, 15 Oct 2002 02:33:28 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9F9XQKg064806 for ; Tue, 15 Oct 2002 10:33:26 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9F9XLqE064805 for freebsd-questions@FreeBSD.ORG; Tue, 15 Oct 2002 10:33:21 +0100 (BST) Date: Tue, 15 Oct 2002 10:33:21 +0100 From: Matthew Seaman To: freebsd-questions@FreeBSD.ORG Subject: Sizing /var (was Re: monitor ALL connections to ALL ports) Message-ID: <20021015093321.GA64319@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , freebsd-questions@FreeBSD.ORG References: <20021014205437.GA21823@blossom.cjclark.org> <20021014224225.GB61025@happy-idiot-talk.infracaninophi> <20021015023521.GB19297@mrv.tusur.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021015023521.GB19297@mrv.tusur.ru> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-14.1 required=5.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_01_02, USER_AGENT,USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Oct 15, 2002 at 10:35:21AM +0800, Roman V. Mashak wrote: > Could you describe some methods of counting /var-partition size > for saving there: > 1) 'maillog' data > 2) 'ipfw' logs. That's a very hard question to answer. It depends on so many different variables --- how much traffic you're seeing, how much you choose to log, how long you keep log files around and even how compressible the resulting log files are. Now, there's no point getting too precise with all this. On machines I set up for personal use I tend to create a /var partition of 128Mb, and on my home machine at the moment /var is running at 35% percent full. That's fine --- plenty of room for growth or unexpected peaks in traffic (remember the nimda worm?). I wouldn't be too unhappy if usage had stabilized at anywhere up to about 75% full. For most uses a 128Mb /var partition should be fine. The exceptions are: i) You may need plenty of space in /var/crash if you're going to be debugging system crashes. Each crashdump will require slightly more space than the total RAM in your machine, and you usually need to have several sets to work with. Nb. /var/crash is the traditional place to store crash dumps, but it's easy enough to configure the system to use a different partition, which is what I do. ii) You run a particularly busy server --- say your mail or web server gets 100,000 hits in a day and each hit results in about 200 bytes of log message. That's approximately 20Mb a day. Without compression, that's enough to fill up a 128Mb partition inside a week. Assuming you get 80% compression with gzip (not unreasonable for log files) that will give you space for roughly a month's worth of log files. iii) You log an unreasonably large amount of stuff. Suppose the average size of web page (or mail message) on your server is 15kb. You choose to log every http / smtp packet your server deals with --- with a MTU of 1500 bytes that's 10 packets just for sending out the web page or message. So we're looking at approximately a 10 fold increase in the amount of logging data to deal with over (ii), or enough to overflow a 128Mb partition in less than a day without compression. Now, those numbers are approximate, but not unrealistic. I've taken no account of all the other stuff that lives in /var, but that tends to be reasonably constant in size. The best way to proceed is to make this sort of rough calculation to get a ball-park idea of what the right size should be, add some extra for luck and then try it out. Keep a record of how much of the partition is in use each day and examine the trends to see whether it's going to stabilize at around a reasonable percentage. If not, then you can fiddle with the settings in /etc/newsyslog.conf or switch to bzip2 compression or (if the worst comes to the worst) mount a larger partition on /var/log and next time you have the machine scheduled for major maintenance rebuild it with a bigger /var. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 2:52:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4477F37B401; Tue, 15 Oct 2002 02:52:26 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FFEA43EAA; Tue, 15 Oct 2002 02:52:25 -0700 (PDT) (envelope-from root@klima.physik.uni-mainz.de) Received: from klima.physik.uni-mainz.de (smmsp@localhost [127.0.0.1]) by klima.physik.uni-mainz.de (8.12.6/8.12.5) with ESMTP id g9F9qOW5072083; Tue, 15 Oct 2002 11:52:24 +0200 (CEST) (envelope-from root@klima.physik.uni-mainz.de) Received: from localhost (root@localhost) by klima.physik.uni-mainz.de (8.12.6/8.12.6/Submit) with ESMTP id g9F9qNM7072080; Tue, 15 Oct 2002 11:52:24 +0200 (CEST) Date: Tue, 15 Oct 2002 11:52:23 +0200 (CEST) From: KLIMA To: freebsd-questions@freebsd.org Cc: freebsd-hardware@freebsd.org Subject: FreeBSD 4.7-R: sa/tape driver: not known kernel log of tape driver Message-ID: <20021015114629.P71977-100000@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello. Can anyone please explain what this kernel log menas: sym0:4:control msgout: 80 6. The SCSI ID is a HP DAT 40 external drive and the backup system is afbackup 3.3.7pl3 under FreeBSD 4.7-R. this is dmesg out: Copyright (c) 1992-2002 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.7-RELEASE #4: Sat Oct 12 15:15:51 CEST 2002 root@klima.physik.uni-mainz.de:/usr/obj/usr/src/sys/KLIMA Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (803.60-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x387fbff real memory = 1073725440 (1048560K bytes) avail memory = 1041154048 (1016752K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 3, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00178011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc03c2000. netsmb_dev: loaded Pentium Pro MTRR support enabled Using $PIR table, 7 entries at 0xc00f12d0 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard IOAPIC #0 intpin 19 -> irq 2 IOAPIC #0 intpin 16 -> irq 10 pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 pci1: at 0.0 irq 10 isab0: at device 4.0 on pci0 isa0: on isab0 pci0: at 4.1 pci0: (vendor=0x1106, dev=0x3057) at 4.4 sym0: <1010-33> port 0xb800-0xb8ff mem 0xf5800000-0xf5801fff,0xf6000000-0xf60003ff irq 2 at device 9.0 on pci0 sym0: Symbios NVRAM, ID 7, Fast-80, LVD, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. sym0: handling phase mismatch from SCRIPTS. sym1: <1010-33> port 0xb400-0xb4ff mem 0xf4800000-0xf4801fff,0xf5000000-0xf50003ff irq 10 at device 9.1 on pci0 sym1: Symbios NVRAM, ID 7, Fast-80, SE, parity checking sym1: open drain IRQ line driver, using on-chip SRAM sym1: using LOAD/STORE-based firmware. sym1: handling phase mismatch from SCRIPTS. pcib3: at device 11.0 on pci0 IOAPIC #0 intpin 18 -> irq 11 pci2: on pcib3 pcib4: at device 0.0 on pci2 IOAPIC #0 intpin 17 -> irq 13 pci3: on pcib4 amr0: mem 0xf8000000-0xf9ffffff irq 13 at device 0.0 on pci3 amr0: Firmware C170, BIOS 3.13, 32MB RAM pci2: (vendor=0x1077, dev=0x1216) at 1.0 irq 11 fxp0: port 0x9800-0x983f mem 0xf3000000-0xf30fffff,0xf3800000-0xf3800fff irq 10 at device 12.0 on pci0 fxp0: Ethernet address 00:d0:b7:06:6e:78 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcib1: on motherboard pci4: on pcib1 orm0: > > fetch > > ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports//port.tar > > tar -xf port.tar > > Note: Not all of the mirrors support tar-on-the-fly ftp transfers, but some do, including the primary site. > > What is "tar-on-the-fly?" Case in point: > > # mkdir /usr/ports/java ; cd /usr/ports/java > # fetch ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/java/jdk13.tar > fetch: jdk13.tar: File unavailable (e.g., file not found, no access) > > I am losing faith in my abilities and am most certainly settling on a life > of /stand/sysinstall and `pkg_add -r` :-( Can someone offer me hope? Sorry. I guess I shouldn't post my notes without editing out stuff I've just copied from somewhere else without ever trying. I suspect that tar-on-the-fly is what some ftp servers support when you ask for a tar file like xxx.tar when the server filesystem only has a directory xxx. It tars the xxx tree into xxx.tar and delivers it to you. Just guessing. Before fetching things, I usually pull up the ftp directory in my web browser and poke around. It could also be done with the "ftp" command. I just did (essentially) method 3 by using "ncftpget -R ftp://ftp....." on the port skeleton at the ftp site. There's nothing significant to be gained by getting the skeleton wrapped up in a tar file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Oct 15 9:11:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 250D037B401 for ; Tue, 15 Oct 2002 09:11:24 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C6343E7B for ; Tue, 15 Oct 2002 09:11:23 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.physik.uni-mainz.de (klima.physik.uni-mainz.de [134.93.180.162]) by klima.physik.uni-mainz.de (8.12.6/8.12.5) with ESMTP id g9FGBLW6077145 for ; Tue, 15 Oct 2002 18:11:21 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Tue, 15 Oct 2002 18:11:21 +0200 (CEST) From: "Hartmann, O." To: freebsd-questions@freebsd.org Subject: gcc 2.95.4 seems to be buggy in FreeBSD 4.7-RELEASE! Message-ID: <20021015175658.X70642-100000@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Sirs. While under FreeBSD 4.6.2-pl2 Portland's PGI compiler 4.0 had no problems compiling several numerical simulations, under FreeBSD 4.7-R a simpel 'Abort trap' occurs! The first suspect was the Linuxulator on a P4 machine with FreeBSD 4.7-R, but logging into a PIII SMP machine showed up no problems. Compiling there (also FBSD 4.7) and running the program showed no problem! Then, after a few runs, also those systems on which the small Fortran program seems to run showed up the same error, out of the blue! Then I tried to compile the same small programm with the native FBSD 4.7 compiler! And I got the same problem! Abort trap This problem is not reproduceable. After a while I can compile it again, and then not. Doing a ktrace gives no glue, also truss, which gives: truss dopptag process exited before exec'ing dopptag is a standard f77 program which runs well under Linux SuSE 8.1 and, if it compiles, runs well under FreeBSD. but this early Abort trap seems to show up a serious error. Borth, pgf90, pgf77 AND FreeBSD native f77 produces this error! Please aske me for the Fortran code if you need the code to validate this behaviour. this is dmesg output of the failing system (but it fails also on all othe machines, which have FreeBSD 4.7-RELEASE!): Copyright (c) 1992-2002 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.7-RELEASE #3: Tue Oct 15 17:22:41 CEST 2002 root@mail.physik.uni-mainz.de:/usr/obj/usr/src/sys/MAIL Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 2271852280 Hz CPU: Pentium 4 (2271.85-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febfbff,ACC> real memory = 1073659904 (1048496K bytes) avail memory = 1041158144 (1016756K bytes) Preloaded elf kernel "kernel" at 0xc03ba000. ccd0-3: Concatenated disk drivers netsmb_dev: loaded Pentium Pro MTRR support enabled Using $PIR table, 9 entries at 0xc00f1be0 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 11 pcib2: at device 30.0 on pci0 pci2: on pcib2 pci2: at 4.0 irq 15 pci2: at 4.1 irq 14 pci2: at 4.2 irq 4 ahc0: port 0xb800-0xb8ff mem 0xf5000000-0xf5000fff irq 15 at device 9.0 on pci2 aic7860: Ultra Single Channel A, SCSI Id=7, 3/253 SCBs fxp0: port 0xb400-0xb43f mem 0xf4000000-0xf40fffff,0xf4800000-0xf4800fff irq 14 at device 10.0 on pci2 fxp0: Ethernet address 00:d0:b7:4c:2e:9c inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sym0: <1010-33> port 0xb000-0xb0ff mem 0xf3000000-0xf3001fff,0xf3800000-0xf38003ff irq 4 at device 11.0 on pci2 sym0: Symbios NVRAM, ID 7, Fast-80, LVD, parity checking sym0: open drain IRQ line driver, using on-chip SRAM sym0: using LOAD/STORE-based firmware. sym0: handling phase mismatch from SCRIPTS. sym0: SCAN FOR LUNS disabled for targets 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15. sym1: <1010-33> port 0xa800-0xa8ff mem 0xf2000000-0xf2001fff,0xf2800000-0xf28003ff irq 10 at device 11.1 on pci2 sym1: Symbios NVRAM, ID 7, Fast-80, SE, parity checking sym1: open drain IRQ line driver, using on-chip SRAM sym1: using LOAD/STORE-based firmware. sym1: handling phase mismatch from SCRIPTS. isab0: at device 31.0 on pci0 isa0: on isab0 pci0: at 31.1 orm0:

A confirmation screen will show that your email was deleted. In case the browser doesn't start or doesn't show the correct information, select the whole URL line (or lines if it is presented over more than one line) with your mouse, cut and paste it into your browser's address bar and hit enter from there. Here is the link http://www.mlmspy.com/cgi-bin/maxuseradmin.cgi?function=manualdelete3&email=questions@FreeBSD.org&un=mlmspyinsider To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 9:22:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF5F237B401 for ; Wed, 16 Oct 2002 09:22:11 -0700 (PDT) Received: from hotmail.com (oe38.pav2.hotmail.com [64.4.36.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B11043E91 for ; Wed, 16 Oct 2002 09:22:11 -0700 (PDT) (envelope-from unixtools@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 16 Oct 2002 09:22:11 -0700 X-Originating-IP: [202.41.224.36] From: "Unix Tools" To: "Carlos Carnero" , References: <20021016135323.16141.qmail@web21411.mail.yahoo.com> Subject: Re: FreeBSD mailing lists and DNS Date: Wed, 16 Oct 2002 09:49:25 +0530 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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: X-OriginalArrivalTime: 16 Oct 2002 16:22:11.0319 (UTC) FILETIME=[2E2A2870:01C27530] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dig at a.gtld-servers.net dig @a.gtld-servers.net ----- Original Message ----- From: "Carlos Carnero" To: Sent: Wednesday, October 16, 2002 07:23 PM Subject: OT: FreeBSD mailing lists and DNS > Hi, > > I can't send email to the FreeBSD lists because my DNS > configuration is hosed--the bit from my ISP, not my > own bind :) > > Anyway, is there a site that could tell me what the > nameservers "outside" my network see for my domain? > > Best regarads, > Carlos. > > __________________________________________________ > Do you Yahoo!? > Faith Hill - Exclusive Performances, Videos & More > http://faith.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 16 9:28:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A38C137B401 for ; Wed, 16 Oct 2002 09:28:31 -0700 (PDT) Received: from lionsoft.xs4all.nl (lionsoft.xs4all.nl [213.84.78.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D9BD43EB1 for ; Wed, 16 Oct 2002 09:28:30 -0700 (PDT) (envelope-from jacco@lionsoft.xs4all.nl) Received: from win2kws1 (jacco.lionsoft.nl [10.1.1.20]) by lionsoft.xs4all.nl (8.11.6/8.11.6) with SMTP id g9GGSRm47407; Wed, 16 Oct 2002 18:28:27 +0200 (CEST) (envelope-from jacco@lionsoft.xs4all.nl) Reply-To: From: "Jacco" To: "FreeBSD Questions" Cc: "Kris Kennaway" Subject: RE: SSHD problem Date: Wed, 16 Oct 2002 18:30:12 +0200 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: <20021016022753.GA91641@xor.obsecurity.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Kris, | You do realise the sshd in 4.4-RELEASE has a serious security | vulnerability? Unfortunately I didn't know that. Would the "coredump" (and security) problem be fixed after upgrading SSHD? Thank you. Jacco To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 9:29:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B11537B401 for ; Wed, 16 Oct 2002 09:29:18 -0700 (PDT) Received: from imag.imag.fr (imag.imag.fr [129.88.30.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ADFB43E75 for ; Wed, 16 Oct 2002 09:29:16 -0700 (PDT) (envelope-from Nicolas.Kowalski@imag.fr) Received: from pave.imag.fr (pave.imag.fr [129.88.43.12]) by imag.imag.fr (8.11.6/8.11.6) with ESMTP id g9GGTFq13309 for ; Wed, 16 Oct 2002 18:29:15 +0200 (MEST) Received: from astazou ([129.88.43.102] helo=astazou.imag.fr.imag.fr ident=kowalski) by pave.imag.fr with esmtp (Exim 4.10) id 181r2p-0002MX-00 for freebsd-questions@FreeBSD.org; Wed, 16 Oct 2002 18:29:15 +0200 To: freebsd-questions@FreeBSD.org Subject: NFS Problem with SunOS client X-Face: #v^9{p"~.e3TDs~r\ Date: Wed, 16 Oct 2002 18:29:14 +0200 Message-ID: Lines: 54 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) XEmacs/21.4 (Common Lisp, i386-debian-linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello. I am facing some strangeness from SunOS/sparc clients, mounting users home directories on a FreeBSD 4.6 server. The client is unable to mount the remote directory. On the server "pave", a tcpdump with the host "geny" gives : ... 18:19:30.110221 geny.0 > pave.imag.fr.nfs: 0 null (DF) 18:19:30.110403 geny.0 > pave.imag.fr.nfs: 0 null (DF) 18:19:33.480054 geny.0 > pave.imag.fr.nfs: 0 null (DF) 18:19:40.230062 geny.0 > pave.imag.fr.nfs: 0 null (DF) 18:19:53.730234 arp who-has pave.imag.fr (Broadcast) tell geny 18:19:53.730252 arp reply pave.imag.fr is-at pave 18:19:53.730750 geny.0 > pave.imag.fr.nfs: 0 null (DF) 18:20:20.730172 geny.0 > pave.imag.fr.nfs: 0 null (DF) ... The SunOS client hangs, waiting for the FreeBSD server : Oct 16 18:18:28 geny nfs: [ID 664466 kern.notice] NFS fsinfo failed for server pave: error 5 (RPC: Timed out) Oct 16 18:18:28 geny automountd[202]: [ID 834250 daemon.error] Mount of pave:/export/home/user on /home/user: Connection timed out Oct 16 18:19:28 geny nfs: [ID 664466 kern.notice] NFS fsinfo failed for server pave: error 5 (RPC: Timed out) Oct 16 18:19:28 geny automountd[202]: [ID 834250 daemon.error] Mount of pave:/export/home/user on /home/user: Connection timed out Oct 16 18:20:30 geny nfs: [ID 664466 kern.notice] NFS fsinfo failed for server pave: error 5 (RPC: Timed out) Oct 16 18:20:30 geny automountd[202]: [ID 834250 daemon.error] Mount of pave:/export/home/user on /home/user: Connection timed out Running snoop on the client gives : geny -> pave PORTMAP C GETPORT prog=100003 (NFS) vers=3 proto=UDP pave -> geny PORTMAP R GETPORT port=2049 geny -> pave NFS C NULL3 pave -> geny NFS R NULL3 geny -> pave PORTMAP C GETPORT prog=100005 (MOUNT) vers=3 proto=UDP pave -> geny PORTMAP R GETPORT port=1010 geny -> pave MOUNT3 C Null pave -> geny MOUNT3 R Null geny -> pave MOUNT3 C Mount /export/home/user pave -> geny MOUNT3 R Mount OK FH=F757 Auth=unix geny -> pave PORTMAP C GETPORT prog=100003 (NFS) vers=3 proto=TCP pave -> geny PORTMAP R GETPORT port=2049 geny -> pave TCP D=2049 S=1023 Syn Seq=159820072 Len=0 Win=24820 Options= geny -> pave TCP D=2049 S=1023 Syn Seq=159820072 Len=0 Win=24820 Options= geny -> pave TCP D=2049 S=1023 Syn Seq=159820072 Len=0 Win=24820 Options= Any idea to lockout situation ? Thanks. -- Nicolas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 9:34: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DB3437B401 for ; Wed, 16 Oct 2002 09:34:05 -0700 (PDT) Received: from smtp.uc3m.es (smtp01.uc3m.es [163.117.136.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4126943EF4 for ; Wed, 16 Oct 2002 09:33:55 -0700 (PDT) (envelope-from jrh@it.uc3m.es) Received: from smtp01.uc3m.es (localhost [127.0.0.1]) by smtp.uc3m.es (Postfix) with ESMTP id D304F43185 for ; Wed, 16 Oct 2002 18:33:49 +0200 (CEST) Received: from it.uc3m.es (pulgon.it.uc3m.es [163.117.140.177]) by smtp01.uc3m.es (Postfix) with ESMTP id 35F4399E65 for ; Wed, 16 Oct 2002 18:33:49 +0200 (CEST) Message-ID: <3DAD94ED.D9AC4626@it.uc3m.es> Date: Wed, 16 Oct 2002 18:33:49 +0200 From: Juan Francisco Rodriguez Hervella X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Quake2 and server-side bots/mods problems Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello: I'm trying to install some server-side mods to get some bots on my Quake2 server, but I've tried with "Eraser" and "Lithium" (and more I don't remember right now), but I haven't had any success. I'm using a CVSuped version of Quake2 that supports IPv6 (http://www.viagenie.qc.ca/en/ipv6/quake2/ipv6-quake2.shtml), which compiles without problem in my FreeBSD-4.5 When I try to use "Eraser" or "Lithium", I usually obtain this problem: jrh@pulgon:/usr/home/jrh/.quake2$ ./quake2 +set dedicated 1 +set game lithium Quake 2 -- Version 3.21+rCVS Added packfile ./baseq2/pak0.pak (1106 files) using /home/jrh/.quake2/baseq2/ for writing Added packfile /home/jrh/.quake2/baseq2/pak0.pak (1106 files) using /home/jrh/.quake2/lithium/ for writing execing default.cfg execing config.cfg ------- Loading gamei386.so ------- LoadLibrary (/home/jrh/.quake2/lithium/gamei386.so): Undefined symbol "___brk_addr" ******************** ERROR: failed to load game DLL ******************** Error: Error during initialization I don't understand the meaning of "__brk_addr" error. It could be anything related to the Linux emulation ? Has anyone tried to do this before ? Any help will be very appreciated. Thanks. -- JFRH. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 9:35:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D68237B401 for ; Wed, 16 Oct 2002 09:35:18 -0700 (PDT) Received: from altaspectra.com (ns2.altaspectra.com [207.107.194.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 3731A43EA3 for ; Wed, 16 Oct 2002 09:35:17 -0700 (PDT) (envelope-from master@tyranz.com) Received: (qmail 12258 invoked from network); 16 Oct 2002 16:36:47 -0000 Received: from atoulon-101-1-5-128.abo.wanadoo.fr (HELO sebxp) (80.13.88.128) by smtp.altaspectra.com with SMTP; 16 Oct 2002 16:36:47 -0000 Message-ID: <010301c27531$db420720$0201a8c0@sebxp> From: "master" To: Subject: strange error telnet ssh Date: Wed, 16 Oct 2002 18:34:10 +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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG telnetd: login_tty: Inappropriate ioctl for device. what this mean and how can i fix it ? thx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 9:56:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E352337B401 for ; Wed, 16 Oct 2002 09:56:26 -0700 (PDT) Received: from server1.mlmspy.com (mlmspy.com [64.49.222.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A51C43EA3 for ; Wed, 16 Oct 2002 09:56:26 -0700 (PDT) (envelope-from apache@server1.mlmspy.com) Received: (from apache@localhost) by server1.mlmspy.com (8.11.6/8.11.6) id g9GGuPY27847; Wed, 16 Oct 2002 11:56:25 -0500 Date: Wed, 16 Oct 2002 11:56:25 -0500 Message-Id: <200210161656.g9GGuPY27847@server1.mlmspy.com> To: questions@FreeBSD.org From: questions@FreeBSD.org Subject: Your remove request has been successfully processed! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We have processed your remove request successfully. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 10: 1:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D6537B401; Wed, 16 Oct 2002 10:01:32 -0700 (PDT) Received: from windmill-en0.garlic.com (windmill-en0.garlic.com [208.195.160.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id E094D43EB3; Wed, 16 Oct 2002 10:01:31 -0700 (PDT) (envelope-from madriax@garlic.com) Received: from pookie (146.sm7.dialup.garlic.net [216.139.3.146]) by windmill-en0.garlic.com (8.11.1/8.11.1) with ESMTP id g9GH1Ib38640; Wed, 16 Oct 2002 10:01:19 -0700 From: "Pookie" To: "'Bruce M Simpson'" Cc: , , Subject: RE: Port Replicator Date: Wed, 16 Oct 2002 10:01:04 -0700 Message-ID: <000001c27535$a1a11480$92038bd8@pookie> 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, Build 10.0.2616 Importance: Normal In-Reply-To: <20021016110340.GI27166@spc.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You seem like you know what your talking, all im trying to do with the serial port is use my external modem, my internal is a dumb winmodem thus I cant use it. From what I understand I have 4 solutions to my modem problems 1. Buy a port replicator 2. Buy a USB Modem 3. Buy a PCMCIA modem 4. Buy a USB-RS232 adapter As far as my research goes a USB modem or PCMCIA modem seems best. I was looking at /etc/defaults/pccard.conf and it had a decent list of USB modems(I amuse they all work within FreeBSD). I could do this. Or get a PCMCIA modem(pccard if im not mistaken). I don't have a lot of money so I buy something it NEEDS to work. So my question is; What solution seems sense to you people and why. And if you've experienced my problem, what did you choose, and be sure to include make and model so I can go out and get the same :) -----Original Message----- From: Bruce M Simpson [mailto:bms@spc.org] Sent: Wednesday, October 16, 2002 4:04 AM To: Vladimir B. Grebenschikov Cc: Pookie; FreeBSD-Mobile@freebsd.org; freebsd-questions@freebsd.org Subject: Re: Port Replicator On Wed, Oct 16, 2002 at 02:48:17PM +0400, Vladimir B. Grebenschikov wrote: > Do not sure about your SONY, but on my VAIO PCG-Z505S I have absolutly > not problem with port replicator with and without AC power. > For me SIO chip actually located on Notebook motherboard and detected > not depending on plugging port replicator. > If I really want to use COM-port I need connect port replicator with > db9 connector. This sounds very similar to how my Z600 works (which works without a hitch, the sio chip is integrated into the notebook's chipset). I would imagine the FX series are similar. If you have a free PCMCIA slot, though, there is always the alternative of a sio card, which are available very inexpensively these days. I would recommend this over the use of a USB-RS232 adapter, because the ASICs used by these products vary widely and may not have driver support. BMS To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 10: 2:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C1B137B49D for ; Wed, 16 Oct 2002 10:02:22 -0700 (PDT) Received: from smtp.uc3m.es (smtp01.uc3m.es [163.117.136.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEEB743E3B for ; Wed, 16 Oct 2002 10:02:19 -0700 (PDT) (envelope-from jrh@it.uc3m.es) Received: from smtp01.uc3m.es (localhost [127.0.0.1]) by smtp.uc3m.es (Postfix) with ESMTP id 6E72F4319C for ; Wed, 16 Oct 2002 19:02:15 +0200 (CEST) Received: from it.uc3m.es (pulgon.it.uc3m.es [163.117.140.177]) by smtp01.uc3m.es (Postfix) with ESMTP id DEC7099E5D for ; Wed, 16 Oct 2002 19:02:14 +0200 (CEST) Message-ID: <3DAD9B96.D522DF96@it.uc3m.es> Date: Wed, 16 Oct 2002 19:02:14 +0200 From: Juan Francisco Rodriguez Hervella X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@FreeBSD.ORG Subject: Re: Your remove request has been successfully processed! References: <200210161656.g9GGuPY27847@server1.mlmspy.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG questions@FreeBSD.ORG wrote: > > We have processed your remove request successfully. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I haven't asked for any "remove request" ! -- JFRH. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 10:14:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CA1B37B401 for ; Wed, 16 Oct 2002 10:14:14 -0700 (PDT) Received: from mail.speakeasy.net (mail13.speakeasy.net [216.254.0.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03B5043E97 for ; Wed, 16 Oct 2002 10:14:14 -0700 (PDT) (envelope-from jdarnold@buddydog.org) Received: (qmail 32321 invoked from network); 16 Oct 2002 17:14:13 -0000 Received: from unknown (HELO max) ([66.92.76.225]) (envelope-sender ) by mail13.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 16 Oct 2002 17:14:13 -0000 Message-ID: <200210161314120727.0B4D72FE@mail.speakeasy.net> X-Mailer: Calypso Version 3.30.00.00 (4) Date: Wed, 16 Oct 2002 13:14:12 -0400 Reply-To: jdarnold@buddydog.org From: "Jonathan Arnold" To: freebsd-questions@FreeBSD.ORG Subject: Upgrade recommendations Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm currently running 4.5, and want to upgrade my machine and was wondering what you might have for recommendations. It has dual 333mhz Pentium II cpus, an S3 video card, 256mb RAM and a 20gb hard drive - not cutting edge hardware by any means! All it does is serve my small web sites via Apache and run some low volume mailing lists via Mailman. It isn't kept too busy, but it shouldn't be down for long periods nonetheless. I'm thinking of 3 possible paths: 1] A binary upgrade using the latest 4.x (4.7?) 2] A binary upgrade to 5.0 3] A reformat and complete upgrade to 5.0 - I already have the web site & mailing list dbs backed up. As scary as it sounds, I'm leaning towards #3. It seems it shouldn't be too hard to move the Mailman database stuff to a new machine, so my main concern is how stable 5.0 is at this point. I'm willing (heck, even want) to play with some bleeding edge technology, but I do need it to be running with extensive handholding. Is 5.0 at that stage? -- Jonathan Arnold (mailto:jdarnold@buddydog.org) The Incredible Brightness of Seeing, a Home Theater weblog http://jdarnold.tzo.com/HomeTheater To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 10:24:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 782D537B401 for ; Wed, 16 Oct 2002 10:24:13 -0700 (PDT) Received: from casper.sri.com (casper.SRI.COM [128.18.243.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 0990743EB1 for ; Wed, 16 Oct 2002 10:24:13 -0700 (PDT) (envelope-from hogsett@csl.sri.com) Received: (qmail 12767 invoked from network); 16 Oct 2002 17:27:59 -0000 Received: from localhost (HELO casper.SRI.COM) (127.0.0.1) by casper.sri.com with SMTP; 16 Oct 2002 17:27:59 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by casper.SRI.COM (NAVGW 2.5.1.18) with SMTP id M2002101610275803214 ; Wed, 16 Oct 2002 10:27:58 -0700 Received: from axp.csl.sri.com (axp.csl.sri.com [130.107.2.30]) by quarter.csl.sri.com (8.12.4/8.12.4) with ESMTP id g9GHOBnr011690; Wed, 16 Oct 2002 10:24:11 -0700 Received: from axp.csl.sri.com (localhost [127.0.0.1]) by axp.csl.sri.com (8.12.6/8.12.3) with ESMTP id g9GHO81J026667; Wed, 16 Oct 2002 10:24:11 -0700 (PDT) (envelope-from hogsett@axp.csl.sri.com) Message-Id: <200210161724.g9GHO81J026667@axp.csl.sri.com> To: jdarnold@buddydog.org Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Upgrade recommendations In-Reply-To: Message from "Jonathan Arnold" of "Wed, 16 Oct 2002 13:14:12 EDT." <200210161314120727.0B4D72FE@mail.speakeasy.net> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Wed, 16 Oct 2002 10:24:08 -0700 From: Mike Hogsett Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I would recommend a cvsup, build world, build kernel, etc. upgrade to 4.7-RELEASE personnally. Doing the upgrade this way will keep downtime to a minumum ( perhaps 10 minutes downtime ). - Mike > I'm currently running 4.5, and want to upgrade my machine and was > wondering what you might have for recommendations. > > It has dual 333mhz Pentium II cpus, an S3 video card, 256mb RAM > and a 20gb hard drive - not cutting edge hardware by any means! > All it does is serve my small web sites via Apache and run some > low volume mailing lists via Mailman. It isn't kept too busy, > but it shouldn't be down for long periods nonetheless. > > I'm thinking of 3 possible paths: > > 1] A binary upgrade using the latest 4.x (4.7?) > > 2] A binary upgrade to 5.0 > > 3] A reformat and complete upgrade to 5.0 - I already have > the web site & mailing list dbs backed up. > > As scary as it sounds, I'm leaning towards #3. It seems it > shouldn't be too hard to move the Mailman database stuff > to a new machine, so my main concern is how stable 5.0 is > at this point. I'm willing (heck, even want) to play with > some bleeding edge technology, but I do need it to be > running with extensive handholding. Is 5.0 at that stage? > -- > Jonathan Arnold (mailto:jdarnold@buddydog.org) > The Incredible Brightness of Seeing, a Home Theater weblog > http://jdarnold.tzo.com/HomeTheater > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 16 10:33: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96C9337B401 for ; Wed, 16 Oct 2002 10:33:05 -0700 (PDT) Received: from sccimhc01.insightbb.com (sccimhc01.insightbb.com [63.240.76.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14D0743E3B for ; Wed, 16 Oct 2002 10:33:05 -0700 (PDT) (envelope-from bryanc2000@insightbb.com) Received: from insightbb.com ([12.222.162.255]) by sccimhc01.insightbb.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20021016173304.JYWT5019.sccimhc01.insightbb.com@insightbb.com> for ; Wed, 16 Oct 2002 17:33:04 +0000 Date: Wed, 16 Oct 2002 12:36:47 -0500 From: Bryan Cassidy To: freebsd-questions Message-Id: <20021016123647.574ab367.bryanc2000@insightbb.com> X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.10; i386-portbld-freebsd4.6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I was just wondering something. I know this updates the ports but what I want to know is what "EXACTLY" does this command do in a little more detailed answers but simple enough to understand. The command is this cvsup -g -L 2 -h cvsup2.freebsd.org /usr/share/examples/cvsup/ports-supfile Thanks. ------------------------------------------------------------------------------- E-Mail: Bryan Cassidy Operating System: FreeBSD 4.6.2 GAIM: bsdsys Yahoo Messenger: bsdsys I have put alot of time in setting up my mail filters so please do not just Reply-To: Reply to the mailing lists. This is very annoying for me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 10:47:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F76337B401 for ; Wed, 16 Oct 2002 10:47:10 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0527143E91 for ; Wed, 16 Oct 2002 10:47:09 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9GHksf53360; Wed, 16 Oct 2002 12:46:54 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021016124652.0136e5e8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 16 Oct 2002 12:46:52 -0500 To: Mike Hogsett , jdarnold@buddydog.org From: "Jack L. Stone" Subject: Re: Upgrade recommendations Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <200210161724.g9GHO81J026667@axp.csl.sri.com> References: <200210161314120727.0B4D72FE@mail.speakeasy.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 10:24 AM 10.16.2002 -0700, Mike Hogsett wrote: > >I would recommend a cvsup, build world, build kernel, etc. upgrade to >4.7-RELEASE personnally. Doing the upgrade this way will keep downtime to >a minumum ( perhaps 10 minutes downtime ). > > - Mike > > >> I'm currently running 4.5, and want to upgrade my machine and was >> wondering what you might have for recommendations. >> >> It has dual 333mhz Pentium II cpus, an S3 video card, 256mb RAM >> and a 20gb hard drive - not cutting edge hardware by any means! >> All it does is serve my small web sites via Apache and run some >> low volume mailing lists via Mailman. It isn't kept too busy, >> but it shouldn't be down for long periods nonetheless. >> >> I'm thinking of 3 possible paths: >> >> 1] A binary upgrade using the latest 4.x (4.7?) >> >> 2] A binary upgrade to 5.0 >> >> 3] A reformat and complete upgrade to 5.0 - I already have >> the web site & mailing list dbs backed up. >> >> As scary as it sounds, I'm leaning towards #3. It seems it >> shouldn't be too hard to move the Mailman database stuff >> to a new machine, so my main concern is how stable 5.0 is >> at this point. I'm willing (heck, even want) to play with >> some bleeding edge technology, but I do need it to be >> running with extensive handholding. Is 5.0 at that stage? >> -- >> Jonathan Arnold (mailto:jdarnold@buddydog.org) >> The Incredible Brightness of Seeing, a Home Theater weblog >> http://jdarnold.tzo.com/HomeTheater >> I am also running 4.5 and have not moved up because I don't want to deal with the Sendmail 8.12.x changes yet that will affect my mail server and majordomo. So, there will be some configuring *pains* to deal with and need to be ready for.... and it may hamper and extend the downtime well beyond the 10 minutes if you don't first test on another machine.... IMHO.... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 16 10:50:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D7D437B404 for ; Wed, 16 Oct 2002 10:50:33 -0700 (PDT) Received: from dragoncrest.jasnetworks.net (dragoncrest.jasnetworks.net [65.194.254.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88B6C43E97 for ; Wed, 16 Oct 2002 10:50:32 -0700 (PDT) (envelope-from dragoncrest@voyager.net) Received: from works (works.jasnetworks.net [192.168.0.2]) by dragoncrest.jasnetworks.net (8.12.3/8.11.6) with ESMTP id g9GI90xA047376; Wed, 16 Oct 2002 14:09:04 -0400 (EDT) (envelope-from dragoncrest@voyager.net) Message-Id: <4.2.0.58.20021016135805.0096f100@pop.voyager.net> X-Sender: dragoncrest@pop.voyager.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 16 Oct 2002 13:59:05 -0400 To: Roman Neuhauser , freebsd-questions@FreeBSD.ORG From: Lord Raiden Subject: Re: KDE 3.1 - Opinions?? In-Reply-To: <20021016070101.GE364@freepuppy.bellavista.cz> References: <4.2.0.58.20021016021602.00a34de0@pop.voyager.net> <4.2.0.58.20021016021602.00a34de0@pop.voyager.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just looking for other people's opinions of the new KDE. I don't normally use it, but I was considering switching to it. Hence the feedback request. :) At 09:01 AM 10/16/02 +0200, Roman Neuhauser wrote: ># dragoncrest@voyager.net / 2002-10-16 02:18:32 -0400: > > Hi. Just started to play with KDE 3.1, even though it's still in > > beta and I don't really have time to play with it technically. hehe. > > Either way, I've looked at it and I must say, the eye candy is rather > > nice and I'm kind of liking the look and feel of it, but at the same > > time, I can't get over the feeling that this looks way too much like > > Windows XP. > > KDE has always looked like a better looking version of the latest MS > offering, so what are you wondering about? > >-- >If you cc me or take the list(s) out completely I'll most likely >ignore your 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 16 10:52: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACF0937B401 for ; Wed, 16 Oct 2002 10:52:01 -0700 (PDT) Received: from web9703.mail.yahoo.com (web9703.mail.yahoo.com [216.136.129.139]) by mx1.FreeBSD.org (Postfix) with SMTP id 6372D43E91 for ; Wed, 16 Oct 2002 10:52:01 -0700 (PDT) (envelope-from yello62@yahoo.com) Message-ID: <20021016175201.37970.qmail@web9703.mail.yahoo.com> Received: from [64.241.230.3] by web9703.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 10:52:01 PDT Date: Wed, 16 Oct 2002 10:52:01 -0700 (PDT) From: tony yelacic Subject: Re: Your remove request has been successfully processed! To: Juan Francisco Rodriguez Hervella , questions@FreeBSD.ORG In-Reply-To: <3DAD9B96.D522DF96@it.uc3m.es> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG me either, curious. --- Juan Francisco Rodriguez Hervella wrote: > questions@FreeBSD.ORG wrote: > > > > We have processed your remove request > successfully. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message > > I haven't asked for any "remove request" ! > > -- > JFRH. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message ===== the dude abides __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 10:56:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 083C837B401 for ; Wed, 16 Oct 2002 10:56:15 -0700 (PDT) Received: from grumpy.dyndns.org (user-24-214-34-52.knology.net [24.214.34.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D72743EB1 for ; Wed, 16 Oct 2002 10:56:14 -0700 (PDT) (envelope-from dkelly@grumpy.dyndns.org) Received: from grumpy.dyndns.org (localhost [127.0.0.1]) by grumpy.dyndns.org (8.12.6/8.12.6) with ESMTP id g9GHu7Ge017637 for ; Wed, 16 Oct 2002 12:56:07 -0500 (CDT) (envelope-from dkelly@grumpy.dyndns.org) Received: (from dkelly@localhost) by grumpy.dyndns.org (8.12.6/8.12.6/Submit) id g9GHu7MJ017636 for FreeBSD-questions@FreeBSD.ORG; Wed, 16 Oct 2002 12:56:07 -0500 (CDT) Date: Wed, 16 Oct 2002 12:56:07 -0500 From: David Kelly To: FreeBSD-questions@FreeBSD.ORG Subject: Re: how to kill nfs-blocked process Message-ID: <20021016175607.GA17604@grumpy.dyndns.org> References: <3DAA2936.4050207@potentialtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3DAA2936.4050207@potentialtech.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Oct 13, 2002 at 10:17:26PM -0400, Bill Moran wrote: > [please stop top-posting] And "charset=GB2312" trips my spam filters. If you don't mind, then I won't mind either. Now that I've opened my mouth, sure hope mutt does the right thing. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 10:59:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36C4137B401 for ; Wed, 16 Oct 2002 10:59:19 -0700 (PDT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 845B143EC5 for ; Wed, 16 Oct 2002 10:59:18 -0700 (PDT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.6+Sun/8.11.6) id g9GHxF020570; Wed, 16 Oct 2002 13:59:15 -0400 (EDT) From: Jerry McAllister Message-Id: <200210161759.g9GHxF020570@clunix.cl.msu.edu> Subject: Re: Your remove request has been successfully processed! To: yello62@yahoo.com (tony yelacic) Date: Wed, 16 Oct 2002 13:59:14 -0400 (EDT) Cc: jrh@it.uc3m.es (Juan Francisco Rodriguez Hervella), questions@FreeBSD.ORG In-Reply-To: <20021016175201.37970.qmail@web9703.mail.yahoo.com> from "tony yelacic" at Oct 16, 2002 10:52:01 AM 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > me either, curious. > I think these are related to some pumice-brained children's attempts to sign the list up to these other lists. Then someone has to send a thing in to unsubscribe the list from the other lists and thus the unsubscribe messages on the list. ////jerry > > --- Juan Francisco Rodriguez Hervella > wrote: > > questions@FreeBSD.ORG wrote: > > > > > > We have processed your remove request > > successfully. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body > > of the message > > > > I haven't asked for any "remove request" ! > > > > -- > > JFRH. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of > > the message > > > ===== > the dude abides > > __________________________________________________ > Do you Yahoo!? > Faith Hill - Exclusive Performances, Videos & More > http://faith.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 16 11: 1:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E991C37B401 for ; Wed, 16 Oct 2002 11:01:08 -0700 (PDT) Received: from casper.sri.com (casper.SRI.COM [128.18.243.12]) by mx1.FreeBSD.org (Postfix) with SMTP id DF69C43EA3 for ; Wed, 16 Oct 2002 11:01:07 -0700 (PDT) (envelope-from hogsett@csl.sri.com) Received: (qmail 13491 invoked from network); 16 Oct 2002 18:04:53 -0000 Received: from localhost (HELO casper.SRI.COM) (127.0.0.1) by casper.sri.com with SMTP; 16 Oct 2002 18:04:53 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by casper.SRI.COM (NAVGW 2.5.1.18) with SMTP id M2002101611045225305 ; Wed, 16 Oct 2002 11:04:52 -0700 Received: from axp.csl.sri.com (axp.csl.sri.com [130.107.2.30]) by quarter.csl.sri.com (8.12.4/8.12.4) with ESMTP id g9GI15nr014596; Wed, 16 Oct 2002 11:01:05 -0700 Received: from axp.csl.sri.com (localhost [127.0.0.1]) by axp.csl.sri.com (8.12.6/8.12.3) with ESMTP id g9GI141J027014; Wed, 16 Oct 2002 11:01:04 -0700 (PDT) (envelope-from hogsett@axp.csl.sri.com) Message-Id: <200210161801.g9GI141J027014@axp.csl.sri.com> To: Jerry McAllister Cc: yello62@yahoo.com (tony yelacic), jrh@it.uc3m.es (Juan Francisco Rodriguez Hervella), questions@FreeBSD.ORG Subject: Re: Your remove request has been successfully processed! In-Reply-To: Message from Jerry McAllister of "Wed, 16 Oct 2002 13:59:14 EDT." <200210161759.g9GHxF020570@clunix.cl.msu.edu> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Wed, 16 Oct 2002 11:01:04 -0700 From: Mike Hogsett Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Why doesn't postmaster put a procmail filter infront of the list software to prevent this abuse? > > > > me either, curious. > > > > I think these are related to some pumice-brained children's > attempts to sign the list up to these other lists. Then someone > has to send a thing in to unsubscribe the list from the other lists > and thus the unsubscribe messages on the list. > > ////jerry > > > > > --- Juan Francisco Rodriguez Hervella > > wrote: > > > questions@FreeBSD.ORG wrote: > > > > > > > > We have processed your remove request > > > successfully. > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body > > > of the message > > > > > > I haven't asked for any "remove request" ! > > > > > > -- > > > JFRH. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of > > > the message > > > > > > ===== > > the dude abides > > > > __________________________________________________ > > Do you Yahoo!? > > Faith Hill - Exclusive Performances, Videos & More > > http://faith.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 Wed Oct 16 11: 6: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D15B37B419 for ; Wed, 16 Oct 2002 11:05:50 -0700 (PDT) Received: from hobbiton.shire.net (frogmorton.shire.net [204.228.145.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF89043E9C for ; Wed, 16 Oct 2002 11:05:49 -0700 (PDT) (envelope-from chad@shire.net) Received: from slc1298.modem.xmission.com ([166.70.13.28] helo=shire.net) by hobbiton.shire.net with asmtp (Exim 3.36 #9) id 181sYF-000G8U-00 for freebsd-questions@FreeBSD.ORG; Wed, 16 Oct 2002 14:05:49 -0400 Date: Wed, 16 Oct 2002 12:05:24 -0600 Subject: Re: "asr0: Blink LED 0x3 resetting adapter" adaptec 2100S Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Mime-Version: 1.0 (Apple Message framework v546) From: Chad Leigh -- Shire.Net LLC To: freebsd-questions@FreeBSD.ORG Content-Transfer-Encoding: quoted-printable In-Reply-To: <0C6E2E86-DFCD-11D6-8FEC-0003931BED80@shire.net> Message-Id: X-Mailer: Apple Mail (2.546) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday, Oct 14, 2002, at 17:31 US/Mountain, Chad Leigh -- Shire.Net=20= LLC wrote: > > On Monday, October 14, 2002, at 01:59 , Chad Leigh -- Shire.Net LLC=20 > wrote: > >> Hi >> >> I run an adadptec 2100S. Today it displayed the following message,=20= >> and while the system was still "running" and pingable, you couldn't=20= >> do anything include login. >> >> "asr0: Blink LED 0x3 resetting adapter" > > It happened again, this time 0x68 in the message. The machine is=20 > running but the adapter resets itself and seems to go offline. =20 > Rebooting gets it going again for a few hours. Adaptec tech support=20= > thought maybe a bad cache memory module or something. They didn't=20 > find a 0x68 for blink codes listed in their manuals. > > I will be trying some other memory... It happened once more with 0x3 . Though the codes don't seem to be in=20= the code lists that adaptec tech support has, it appears that when a=20 fault happens, the internal LEDs will blink, making a specific HEX code=20= to help figure out what the problem is. This messages seems to be a=20 report on what the LEDs are doing when there is a fault. I replaced the cache memory module and the system has not had a problem=20= since, after 3 or more problems in one day on Monday. best regards Chad > > Chad > > >> >> Resetting the machine and going into the onboard ROM SMOR adaptec=20 >> manager on the card, nothing seemed out of the ordinary. All of the=20= >> disks and volumes were "optimal" and no errors were reported on card. >> >> I looked through both the mailist archives, in the adaptec manuals, =20= >> and the adaptec site to see if there was any sort of similar message=20= >> listed, but I found no info. Anyone know what this means? I looked=20= >> at the list of LEDs, wondering if 0x3 meant LED #3, but that does not=20= >> make sense, as that is >> >> "3 Indicates the controller=92s internal operating system is in its = idle >> loop." >> >> Thanks for any help. I have had some random freezeups on the=20 >> machine, off an on, most recently an hour or two before this adapter=20= >> reset happened, and I was wondering if they are related. >> >> BY random freezeups, I mean hard freeze on the machine. I had one=20 >> this morning, two weeks ago, and 99 days before that. >> >> But this message about the reset adapter did not hard freeze the=20 >> machine. I just think they might be related, like maybe the RAM=20= >> module on the adapter is flaky or something. >> >> Thanks >> Chad >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" 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 16 11: 7:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64CA237B406 for ; Wed, 16 Oct 2002 11:07:41 -0700 (PDT) Received: from janus.neilmcgann.co.uk (pc3-cmbg1-4-cust127.cam.cable.ntl.com [80.1.205.127]) by mx1.FreeBSD.org (Postfix) with SMTP id 38A4843E4A for ; Wed, 16 Oct 2002 11:07:40 -0700 (PDT) (envelope-from neil@neilmcgann.co.uk) Received: (qmail 94989 invoked from network); 16 Oct 2002 18:07:39 -0000 Received: from unknown (HELO neilmcgann.co.uk) (127.0.0.1) by localhost.0.0.127.in-addr.arpa with SMTP; 16 Oct 2002 18:07:39 -0000 Received: from 192.168.0.5 (SquirrelMail authenticated user nmcgann) by www.neilmcgann.co.uk with HTTP; Wed, 16 Oct 2002 19:07:39 +0100 (BST) Message-ID: <1053.192.168.0.5.1034791659.squirrel@www.neilmcgann.co.uk> Date: Wed, 16 Oct 2002 19:07:39 +0100 (BST) Subject: Has anyone got the current AbiWord port to build under 4.7R? From: "Neil McGann" To: X-Priority: 3 Importance: Normal Reply-To: neil@neilmcgann.co.uk X-Mailer: SquirrelMail (version 1.2.8) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I get the following: ===> Extracting for AbiWord-1.0.3 >> Checksum OK for AbiWord/abiword-1.0.3.tar.gz. ===> AbiWord-1.0.3 depends on executable: unzip - found ===> AbiWord-1.0.3 depends on executable: gmake - found ===> AbiWord-1.0.3 depends on executable: automake14 - found ===> AbiWord-1.0.3 depends on executable: autoconf213 - found ===> AbiWord-1.0.3 depends on shared library: png.5 - found ===> AbiWord-1.0.3 depends on shared library: iconv.3 - found ===> AbiWord-1.0.3 depends on shared library: psiconv.8 - found ===> AbiWord-1.0.3 depends on shared library: X11.6 - found ===> AbiWord-1.0.3 depends on shared library: glib12.3 - found ===> AbiWord-1.0.3 depends on shared library: gtk12.2 - found ===> Patching for AbiWord-1.0.3 ===> Applying FreeBSD patches for AbiWord-1.0.3 ===> Configuring for AbiWord-1.0.3 automake (GNU automake) 1.4-p5 Creating aclocal.m4... aclocal: configure.in: 25: macro `AM_INIT_AUTOMAKE' not found in library aclocal: configure.in: 38: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 52: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 68: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 69: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 70: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 108: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 110: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 112: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 123: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 190: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 212: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 338: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 345: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 350: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 355: macro `AM_CONDITIONAL' not found in library aclocal: configure.in: 364: macro `AM_CONDITIONAL' not found in library *** Error code 1 I've done a bit of digging (see http://www.gnome.org/~chema/gnome-love/compiling_faq.html section 5.1), but this fix doesn't help even when I found where the aclocal.m4 library lives. The machine I'm working on is a fairly clean install, the full Gnome desktop isn't installed (using XFCE). Anyone got any ideas how to fix this? Neil McGann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11: 8:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8718C37B404 for ; Wed, 16 Oct 2002 11:08:12 -0700 (PDT) Received: from klima.physik.uni-mainz.de (klima.Physik.Uni-Mainz.DE [134.93.180.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF82C43E4A for ; Wed, 16 Oct 2002 11:08:11 -0700 (PDT) (envelope-from ohartman@klima.physik.uni-mainz.de) Received: from klima.physik.uni-mainz.de (klima.physik.uni-mainz.de [134.93.180.162]) by klima.physik.uni-mainz.de (8.12.6/8.12.5) with ESMTP id g9GI8AfI098627 for ; Wed, 16 Oct 2002 20:08:10 +0200 (CEST) (envelope-from ohartman@klima.physik.uni-mainz.de) Date: Wed, 16 Oct 2002 20:08:10 +0200 (CEST) From: "Hartmann, O." To: freebsd-questions@freebsd.org Subject: HEIMDAL/KERBEROS V: what do I need? Message-ID: <20021016200414.G91543-100000@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello. I wish to setup a Kerberos V environment using the default stuff comming with FreeBSD 4.7-RELEASE. When I did a make world I ommited compiling Kerberos IV support, only compiled Kerberos V/Heimdal and the great question is now: I miss several programs to initialize a KDC/master KDC and I guess the lack of Kerberos IV vanishes these utilities. Can anyone inform me whether the FBSD 4.7 Kerberos V/Heimdal suite is usable in a production environment (Kerb-V) and do I need to compile also the Kerberos IV stuff to get a full working Kerberos V/Heimdal environment? Thanks. Oliver -- MfG O. Hartmann ohartman@klima.physik.uni-mainz.de ------------------------------------------------------------------ IT-Administration des Institutes fuer Physik der Atmosphaere (IPA) ------------------------------------------------------------------ Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinenraum) Tel: +496131/3924144 (Buero) 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 Wed Oct 16 11:13:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7367937B404 for ; Wed, 16 Oct 2002 11:13:29 -0700 (PDT) Received: from anchor-post-35.mail.demon.net (anchor-post-35.mail.demon.net [194.217.242.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A09943E9E for ; Wed, 16 Oct 2002 11:13:28 -0700 (PDT) (envelope-from kevin@caomhin.demon.co.uk) Received: from caomhin.demon.co.uk ([62.49.21.186]) by anchor-post-35.mail.demon.net with esmtp (Exim 3.36 #2) id 181sff-0006Uq-0U; Wed, 16 Oct 2002 19:13:27 +0100 Message-ID: Date: Wed, 16 Oct 2002 19:11:54 +0100 To: Bryan Cassidy Cc: freebsd-questions From: Kevin Golding Subject: re: what is cvsup References: <20021016123647.574ab367.bryanc2000@insightbb.com> In-Reply-To: <20021016123647.574ab367.bryanc2000@insightbb.com> MIME-Version: 1.0 X-Mailer: Turnpike Integrated Version 5.01 U Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Someone, quite probably Bryan Cassidy, once wrote: >I was just wondering something. I know this updates the ports but what I want to >know is what "EXACTLY" does this command do in a little more detailed answers >but simple enough to understand. The command is this > >cvsup -g -L 2 -h cvsup2.freebsd.org /usr/share/examples/cvsup/ports-supfile cvsup is the name of a binary than does the updating. Basically it looks at the files you have in ports and sees what if anything you need to download so it is up to date. -g tells the binary to run in non-graphical mode -L 2 says what kind of messages you'll see scrolling by the screen -h cvsup2.freebsd.org this says what server to get the information from /usr/share/examples/cvsup/ports-supfile is a default skeleton for downloading the most recent ports collection. This page explains it better: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html If you want more technical details then try here: http://www.polstra.com/projects/freeware/CVSup/ Kevin -- kevin@caomhin.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:14: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B30837B401 for ; Wed, 16 Oct 2002 11:14:08 -0700 (PDT) Received: from ShagBSD.shagol.com (shagbsd.shagol.com [195.65.111.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id D671943E6E for ; Wed, 16 Oct 2002 11:14:06 -0700 (PDT) (envelope-from thomas@haug.li) Received: from ShagBSD.shagol.com (localhost [127.0.0.1]) by ShagBSD.shagol.com (8.12.6/8.12.6) with ESMTP id g9GIFGAP004168 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Wed, 16 Oct 2002 20:15:16 +0200 (CEST) (envelope-from thomas@haug.li) Received: (from www@localhost) by ShagBSD.shagol.com (8.12.6/8.12.6/Submit) id g9GIFATV004167 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 20:15:10 +0200 (CEST) (envelope-from thomas@haug.li) Received: from shaghome.shagol.com ( [shaghome.shagol.com]) as user shagol@mail.shagol.com by mail.shagol.com with HTTP; Wed, 16 Oct 2002 20:15:10 +0200 Message-ID: <1034792110.3dadacaede4c3@mail.shagol.com> Date: Wed, 16 Oct 2002 20:15:10 +0200 From: Thomas Haug To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi people How can i get my internal gigabit-NIC running on freebsd 4.7 RELEASE ? Compaq Proliant ML 310 with: NC7760 PCI Gigabit Server Adapter (Integrated/Embedded) hmmm i think this is a Broadcom Gigabit NIC but i cannot find the TYPE :-( The includet bge device doesn't work. My Box: FreeBSD 4.7-STABLE Thanx Thomas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:16: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4628137B401 for ; Wed, 16 Oct 2002 11:16:02 -0700 (PDT) Received: from grumpy.dyndns.org (user-24-214-34-52.knology.net [24.214.34.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D8B43E6A for ; Wed, 16 Oct 2002 11:16:01 -0700 (PDT) (envelope-from dkelly@grumpy.dyndns.org) Received: from grumpy.dyndns.org (localhost [127.0.0.1]) by grumpy.dyndns.org (8.12.6/8.12.6) with ESMTP id g9GIFSGe017698; Wed, 16 Oct 2002 13:15:28 -0500 (CDT) (envelope-from dkelly@grumpy.dyndns.org) Received: (from dkelly@localhost) by grumpy.dyndns.org (8.12.6/8.12.6/Submit) id g9GIFSBP017697; Wed, 16 Oct 2002 13:15:28 -0500 (CDT) Date: Wed, 16 Oct 2002 13:15:28 -0500 From: David Kelly To: Jonathan Arnold Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Upgrade recommendations Message-ID: <20021016181528.GB17604@grumpy.dyndns.org> References: <200210161314120727.0B4D72FE@mail.speakeasy.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200210161314120727.0B4D72FE@mail.speakeasy.net> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Oct 16, 2002 at 01:14:12PM -0400, Jonathan Arnold wrote: > I'm currently running 4.5, and want to upgrade my machine and was > wondering what you might have for recommendations. [...] > 3] A reformat and complete upgrade to 5.0 - I already have > the web site & mailing list dbs backed up. > > As scary as it sounds, I'm leaning towards #3. That does sound scary. By all means go right ahead if it doesn't matter that the server stays up. In the past 7 years that I have been using FreeBSD the hardest thing to beat into peoples heads has been "don't use -current on critical machines." Am concerned that your system is still 4.5, which suggests you don't have to spend much time keeping it running (good) but don't spend much time "keeping up" (bad). There have been serious issues with ssh, apache, and probably other things since 4.5. You may be vulnerable. "Make buildworld", "make installworld", mergemaster, and "make kernel" can be performed on a running system. Then with any luck you are only a reboot away from being updated. That's what I do. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:18:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F4E837B401 for ; Wed, 16 Oct 2002 11:18:38 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BBC543EA3 for ; Wed, 16 Oct 2002 11:18:37 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id LAA27188 for ; Wed, 16 Oct 2002 11:18:36 -0700 Message-ID: <3DADAD7B.50101@owt.com> Date: Wed, 16 Oct 2002 11:18:35 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: freebsd-questions Subject: Re: References: <20021016123647.574ab367.bryanc2000@insightbb.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bryan Cassidy wrote: > I was just wondering something. I know this updates the ports but what I want to know is what "EXACTLY" does this command do in a little more detailed answers but simple enough to understand. The command is this > > cvsup -g -L 2 -h cvsup2.freebsd.org /usr/share/examples/cvsup/ports-supfile For exact information, do a "man cvsup". Your question is very similar to asking what a shell script does and then only provide the name of the script. Cvsup does not update your ports. It only updates the port data structure. It also only updates the structures you have provided in your ports-supfile, which you didn't list. When you have cvsup updated the port-structure, you can cd into the directory of a port and then make and install port. Some of this behaviour depends on the file /usr/ports/INDEX. This file is updated infrequently and many of us update the ports with a shell script that also "cd /usr/ports" and does a "make index". When your INDEX file has also been updated, your port structure is truly current. For example, my uports looks like ruby# cat uports #! /bin/sh cd /root/cvsup cvsup -g -L 2 ports-supfile 2>&1 | tee /var/log/build/ports_cvsup.log cd /var/log/build # Now convert the log to html` cvsuplog < ports_cvsup.log > ports-`date "+%Y%m%d-%H%M"`.html # Now update the index pages. portsdb -Uu I use the portupgrade set of tools and need both INDEX and INDEX.db updated. I also want an html version of the changes, which is what cvsuplog does for me. Since I upgrade the INDEX files everytime I cvsup, I have added ports/INDEX into my ports-all refuse file. There is no reason to update something that will be immediately replaced. > > Thanks. > > ------------------------------------------------------------------------------- > E-Mail: Bryan Cassidy > Operating System: FreeBSD 4.6.2 > GAIM: bsdsys > Yahoo Messenger: bsdsys > > I have put alot of time in setting up my mail filters so please do not > just Reply-To: Reply to the mailing > lists. This is very annoying for me. Actually replying to you this way is too much trouble. If you want people to not copy you, then you should have your reply-to as the list. The usual choice in the mailers is reply, which is to only you, or reply-all, which includes the list. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:23:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C51D537B401; Wed, 16 Oct 2002 11:23:38 -0700 (PDT) Received: from tonberry.chocobo.cx (innerwall.ironcastle.net [12.30.48.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id D807F43E8A; Wed, 16 Oct 2002 11:23:37 -0700 (PDT) (envelope-from chip@tonberry.chocobo.cx) Received: from tonberry.chocobo.cx (localhost [127.0.0.1]) by tonberry.chocobo.cx (8.12.3/8.12.3) with ESMTP id g9GINf2F078875; Wed, 16 Oct 2002 14:23:41 -0400 (EDT) (envelope-from chip@tonberry.chocobo.cx) Received: (from chip@localhost) by tonberry.chocobo.cx (8.12.3/8.12.3/Submit) id g9GINejI078874; Wed, 16 Oct 2002 14:23:40 -0400 (EDT) Date: Wed, 16 Oct 2002 14:23:40 -0400 From: Chip Marshall To: FreeBSD-hardware@freebsd.org, FreeBSD-Mobile@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Port Replicator Message-ID: <20021016182339.GA78534@chocobo.cx> Reply-To: chip@chocobo.cx Mail-Followup-To: FreeBSD-hardware@freebsd.org, FreeBSD-Mobile@freebsd.org, freebsd-questions@freebsd.org References: <20021016110340.GI27166@spc.org> <000001c27535$a1a11480$92038bd8@pookie> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline In-Reply-To: <000001c27535$a1a11480$92038bd8@pookie> X-URL: http://www.chocobo.cx/chip/ X-OS: FreeBSD 4.7-STABLE i386 User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On October 16, 2002, Pookie sent me the following: > As far as my research goes a USB modem or PCMCIA modem seems best. I > was looking at /etc/defaults/pccard.conf and it had a decent list of > USB modems(I amuse they all work within FreeBSD). I could do this. Or > get a PCMCIA modem(pccard if im not mistaken). I've been using some Zoom USB Voice modems here with NetBSD for a while, and they've been working great. They're based on the Lucent Venus CRM chip, I think. Basically, for USB modems, avoid anything that doesn't say it has a controller. They seem to get marketted as "gamer" modems, since they put less strain on the host CPU. (Because they arn't winmodems.) > -----Original Message----- > From: Bruce M Simpson [mailto:bms@spc.org]=20 > Sent: Wednesday, October 16, 2002 4:04 AM > To: Vladimir B. Grebenschikov > Cc: Pookie; FreeBSD-Mobile@freebsd.org; freebsd-questions@freebsd.org > Subject: Re: Port Replicator >=20 > If you have a free PCMCIA slot, though, there is always the > alternative of a sio card, which are available very inexpensively > these days. I would recommend this over the use of a USB-RS232 > adapter, because the ASICs used by these products vary widely and may > not have driver support. Mind pointing me in the direction of these inexpensive PCMCIA serial cards? The ones I keep finding are over $100 USD. --=20 Chip Marshall http://www.chocobo.cx/chip/ GCM/CS d+(-) s+:++ a21>? C++ UB++++$ P+++$ L- E--- W++ N@ o K- w O M+ V-- PS+ PE Y+ PGP++ t+@ R@ tv@ b++@ DI++++ D+(-) G++ e>++ h>++ r++ y? --BXVAT5kNtrzKuDFl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9ra6r8vyTVl6qbdQRAtjxAKDdiAEI2WW1J+t9ZdvhPmWFesOeZgCghRtk SkpjprZ2kCOaxnqYLjmqKGc= =gDQ8 -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:24:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3D3C37B401 for ; Wed, 16 Oct 2002 11:24:14 -0700 (PDT) Received: from c014.snv.cp.net (h003.c014.snv.cp.net [209.228.35.77]) by mx1.FreeBSD.org (Postfix) with SMTP id 6436243E8A for ; Wed, 16 Oct 2002 11:24:14 -0700 (PDT) (envelope-from klimenta@futurebit.com) Received: (cpmta 8676 invoked from network); 16 Oct 2002 11:24:13 -0700 Received: from 12.33.76.83 (HELO bigbeat) by smtp.cswebmail.com (209.228.35.77) with SMTP; 16 Oct 2002 11:24:13 -0700 X-Sent: 16 Oct 2002 18:24:13 GMT Message-ID: <002601c27541$3a4a0a10$ca0110ac@vinyl.tkvbp.com> From: "Kliment Andreev" To: References: <200210161801.g9GI141J027014@axp.csl.sri.com> Subject: Re: Your remove request has been successfully processed! Date: Wed, 16 Oct 2002 14:24:10 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-5" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Why doesn't postmaster put a procmail filter infront of the > list software to prevent this abuse? traceroute... .... 19 g2-1.bas2-m.sc5.yahoo.com (64.56.207.150) 91.545 ms 94.781 ms 92.792 ms 20 vl44.bas2-m.sc5.yahoo.com (66.163.160.222) 92.311 ms 91.559 ms 90.283 ms 21 mx2.freebsd.org (216.136.204.119) 89.862 ms 93.566 ms 93.261 ms What does this mean? The computer is in "yahoo's" network? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:26: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E76B937B404 for ; Wed, 16 Oct 2002 11:25:58 -0700 (PDT) Received: from mail.karamazov.org (h162-040-089-010.adsl.navix.net [162.40.89.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EDBE43EB2 for ; Wed, 16 Oct 2002 11:25:50 -0700 (PDT) (envelope-from smoberly@karamazov.org) Received: from karamazov.org (localhost [127.0.0.1]) by mail.karamazov.org (8.12.6/8.12.6) with SMTP id g9GIOnaJ067873; Wed, 16 Oct 2002 13:24:54 -0500 (CDT) (envelope-from smoberly@karamazov.org) From: "Scott A. Moberly" Received: from 65.221.169.187 (SquirrelMail authenticated user smoberly) by mail.karamazov.org with HTTP; Wed, 16 Oct 2002 13:24:56 -0500 (CDT) Message-ID: <39911.65.221.169.187.1034792696.squirrel@mail.karamazov.org> Date: Wed, 16 Oct 2002 13:24:56 -0500 (CDT) Subject: Re: PHP 4.2.3 install To: In-Reply-To: <7E8qieCdPIr9EwyS@caomhin.demon.co.uk> References: <002401c27488$310e4bf0$0701a8c0@darryl> <7E8qieCdPIr9EwyS@caomhin.demon.co.uk> X-Priority: 3 Importance: Normal Cc: , X-Mailer: SquirrelMail (version 1.2.8) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The information below is correct; however I sould advise against doing so at this point in time. Release 4.2.3 is currently broken in the ports tree. So you can either wait, do it anyway and see if any of the problems effect your php scripts or use the patches listed in the gnat. > Someone, quite probably Darryl Hoar, once wrote: >>Greetings, >>I have a box running 4.3-release which I had installed PHP from ports. >> This was >>quite a while ago. I need to be running PHP 4.2.3 on this box. How do >> I de-install >>the php version I have and install 4.2.3? >> >>thanks for ideas or pointers to the applicable FM. > > # cd /usr/ports/sysutils/portupgrade > # make install clean > # rehash > # portupgrade mod_php4 > > The man pages for portupgrade will tell you handy little hints like if > you use: > # portupgrade -rR mod_php4 > it will actually upgrade all of the dependencies for PHP (and anything > that depended on it too.) > > Kevin > -- > kevin@caomhin.demon.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 16 11:29:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6F4337B401 for ; Wed, 16 Oct 2002 11:29:17 -0700 (PDT) Received: from casper.sri.com (casper.SRI.COM [128.18.243.12]) by mx1.FreeBSD.org (Postfix) with SMTP id D680643EA9 for ; Wed, 16 Oct 2002 11:29:16 -0700 (PDT) (envelope-from hogsett@csl.sri.com) Received: (qmail 13961 invoked from network); 16 Oct 2002 18:33:03 -0000 Received: from localhost (HELO casper.SRI.COM) (127.0.0.1) by casper.sri.com with SMTP; 16 Oct 2002 18:33:03 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by casper.SRI.COM (NAVGW 2.5.1.18) with SMTP id M2002101611330204889 ; Wed, 16 Oct 2002 11:33:02 -0700 Received: from axp.csl.sri.com (axp.csl.sri.com [130.107.2.30]) by quarter.csl.sri.com (8.12.4/8.12.4) with ESMTP id g9GITFnr017424; Wed, 16 Oct 2002 11:29:15 -0700 Received: from axp.csl.sri.com (localhost [127.0.0.1]) by axp.csl.sri.com (8.12.6/8.12.3) with ESMTP id g9GITF1J027431; Wed, 16 Oct 2002 11:29:15 -0700 (PDT) (envelope-from hogsett@axp.csl.sri.com) Message-Id: <200210161829.g9GITF1J027431@axp.csl.sri.com> To: "Kliment Andreev" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Your remove request has been successfully processed! In-Reply-To: Message from "Kliment Andreev" of "Wed, 16 Oct 2002 14:24:10 EDT." <002601c27541$3a4a0a10$ca0110ac@vinyl.tkvbp.com> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Wed, 16 Oct 2002 11:29:15 -0700 From: Mike Hogsett Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Seems to mean that they are hung off of one of Yahoo!'s routers in Exodus's Santa Clara colo site. (which is absolutely gorgeous btw). > > Why doesn't postmaster put a procmail filter infront of the > > list software to prevent this abuse? > > > traceroute... > .... > 19 g2-1.bas2-m.sc5.yahoo.com (64.56.207.150) 91.545 ms 94.781 ms 92.792 > ms > 20 vl44.bas2-m.sc5.yahoo.com (66.163.160.222) 92.311 ms 91.559 ms 90.283 > ms > 21 mx2.freebsd.org (216.136.204.119) 89.862 ms 93.566 ms 93.261 ms > > What does this mean? The computer is in "yahoo's" network? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 16 11:32:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 739D937B401 for ; Wed, 16 Oct 2002 11:32:37 -0700 (PDT) Received: from zeus.cairodurham.org (zeus.cairodurham.org [209.23.60.35]) by mx1.FreeBSD.org (Postfix) with SMTP id 814BF43E7B for ; Wed, 16 Oct 2002 11:32:36 -0700 (PDT) (envelope-from jkikpole@cairodurham.org) Received: (qmail 28985 invoked from network); 16 Oct 2002 18:32:36 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 16 Oct 2002 18:32:36 -0000 Date: Wed, 16 Oct 2002 14:32:36 -0400 (EDT) From: Jaime Kikpole X-X-Sender: jkikpole@zeus To: freebsd-questions@freebsd.org Subject: FTP prob in PHP 4.2.3/install older version? Message-ID: <20021016142635.D28732-100000@zeus> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've found that PHP 4.2.3 seems to have a problem with ftp_* functions. I have a web-app called SquirrelMail with a plugin that uses FTP to manage your .procmailrc and SpamAssassin settings. The plugin works about 5-10% of the time. This web-app on an older box running PHP 4.2.1 seems to not have the problems that it does in PHP 4.2.3. So I was wondering if there was a way to install an older version of this port. If I install mod_php4 via the packages, it doesn't come with FTP support. I've already CVSup-ed my /usr/ports directory and my backup of the old version is over a year old. (My last "make world" went from FreeBSD 4.4 to 4.7.) Does anyone have any ideas? I need to make sure that at least IMAP, FTP, and MySQL support are compiled into mod_php4. Thanks in advance, Jaime -- Network Administrator Cairo-Durham Central School District To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:36:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4394037B404 for ; Wed, 16 Oct 2002 11:36:32 -0700 (PDT) Received: from mail.FreeBSD.org (host-64-110-76-218.interpacket.net [64.110.76.218]) by mx1.FreeBSD.org (Postfix) with SMTP id 18EFD43E7B for ; Wed, 16 Oct 2002 11:36:08 -0700 (PDT) (envelope-from fatigwarzo01@usa.com) From: "Fati Gwarzo" Date: Wed, 16 Oct 2002 19:41:45 To: freebsd-questions@FreeBSD.org Subject: confidential. MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20021016183608.18EFD43E7B@mx1.FreeBSD.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG DEAR SIR, MAY THE BLESSINGS OF GOD BE UPON YOU AND GRANT YOUR FAMILY AND YOU THE WISDOM AND SYMPATHY TO UNDERSTAND OUR SITUATION AND HOW MUCH WE REALLY NEED YOUR ASSISTANCE. I AM THE WIFE OF ALHAJI ISMAILA GWARZO THE NATIONAL SECURITY ADVISER TO THE FORMER LATE HEAD OF STATE GEN. SANI ABACHA WHO DIED IN 1998 AS A RESULT OF HEART FAILURE. SINCE THE DEATH OF GEN. ABACHA AND THE CONSEQUENT DISSOLUTION OF HIS CABINET THE NEW GOVERNMENT OF CHIEF OBASANJO HAS TURNED AGAINST MY FAMILY. AT FIRST WE THOUGHT IT WAS A NORMAL INTERROGATION, AS MY FATHER SHOULD KNOW ABOUT SOME CONFIDENTIAL DEALINGS OF HIS BOSS LATE GEN. SANI ABACHA OR HARASSMENT FROM ENEMIES HE MADE WHILE IN GOVERNMENT BUT I WAS PROVED VERY WRONG. MY HUSBANDIS NOW BEING DETAINED AT THE KUJE PRISONS ABUJA FOR DOING NOTHING OTHER THAN SERVING HIS FATHER LAND, ALL OUR ACCOUNTS AT HOME AND ABROAD KNOWN TO THE GOVERNMENT HAS BEEN FROZEN TO FRUSTRATE US. IT HAS NOW DAWNED ON US THAT WE HAVE A VERY SERIOUS BATTLE WITH PRESIDENT OBASANJO’S GOVERNMENT SINCE HE BELIEVES THAT MY HUSBAND WAS THE PERSON WHO ROPED HIM INTO PRISON FOR A PHANTOM COUP CHARGE, AS HE NOW WANTS TO GET BACK AT US. MY HUSBAND’S CLOSEST ASSOCIATES HAVE BETRAYED AND DESERTED US AND WE NO LONGER TRUST ANYONE OF THEM. THEREFORE, I AM REQUESTING FOR YOUR URGENT ASSISTANCE TO HELP MY FAMILY. RECENTLY, HE CONFIDED IN ME ABOUT A SECRET DEPOSIT OF US$25,000,000.00 (TWENTY FIVE MILLION, UNITED STATES DOLLARS), WHICH HE MADE VIA DIPLOMATIC COURIER SERVICES TO A SECURITY COMPANY BASED IN ABROAD AND PLACED ON HOLD. BECAUSE OF LACK OF TRUST ON FRIENDS AND ASSOCIATES MY HUSBAND HAS MANDATED ME TO OFFER 20% OF THE FUND TO YOU FOR YOUR ASSISTANCE AT THIS HOUR OF NEED. ALL YOU ARE EXPECTED TO DO IS COLLECT THE DEPOSIT DOCUMENTS FROM ME TO ENABLE YOU COLLECT THE TRUNK BOXES OF MONEY ON OUR BEHALF. MY ENTIRE FAMILY IS IN SERIOUS FINANCIAL DISTRESS AND THIS IS THE ONLY HOPE FOR US AS ALL OUR PASSPORTS AND TRAVELING DOCUMENTS HAVE BEEN SEIZED BY THE GOVERNMENT, HAVE IT IN MIND THAT THERE IS NO RISK INVOLVED IN THIS ASSISTANCE AS ONLY , MY HUSBAND AND I KNOW ABOUT THIS. OUR OWN SHARE IS TO BE LEFT IN YOUR CARE UNTIL ONE OF US IS ABLE TO FIND HIS WAY OUT TO OPEN NEW ACCOUNTS. I WILL SINCERELY APPRECIATE YOUR RESPONSE THROUGH MY PRIVATE EMAIL: fatigwarzo@techemail.com. THIS SUBJECT IS HIGHLY CONFIDENTIAL AND THEREFORE SHOULD BE TREATED AS SUCH. INCLUDE YOUR PERSONAL TELEPHONE AND FAX NUMBERS FOR EASY COMMUNICATION. WE HOPE THAT YOU CAN BE TRUSTED AND YOU WOULD NOT DISAPPOINT US. BEST REGARDS, HAJIA FATI GWARZO To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:40: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3392037B401 for ; Wed, 16 Oct 2002 11:40:08 -0700 (PDT) Received: from mail.FreeBSD.org (host-64-110-76-218.interpacket.net [64.110.76.218]) by mx1.FreeBSD.org (Postfix) with SMTP id 2B73243EA3 for ; Wed, 16 Oct 2002 11:40:04 -0700 (PDT) (envelope-from fatigwarzo01@usa.com) From: "Fati Gwarzo" Date: Wed, 16 Oct 2002 19:45:47 To: questions@FreeBSD.org Subject: confidential. MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20021016184004.2B73243EA3@mx1.FreeBSD.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG DEAR SIR, MAY THE BLESSINGS OF GOD BE UPON YOU AND GRANT YOUR FAMILY AND YOU THE WISDOM AND SYMPATHY TO UNDERSTAND OUR SITUATION AND HOW MUCH WE REALLY NEED YOUR ASSISTANCE. I AM THE WIFE OF ALHAJI ISMAILA GWARZO THE NATIONAL SECURITY ADVISER TO THE FORMER LATE HEAD OF STATE GEN. SANI ABACHA WHO DIED IN 1998 AS A RESULT OF HEART FAILURE. SINCE THE DEATH OF GEN. ABACHA AND THE CONSEQUENT DISSOLUTION OF HIS CABINET THE NEW GOVERNMENT OF CHIEF OBASANJO HAS TURNED AGAINST MY FAMILY. AT FIRST WE THOUGHT IT WAS A NORMAL INTERROGATION, AS MY FATHER SHOULD KNOW ABOUT SOME CONFIDENTIAL DEALINGS OF HIS BOSS LATE GEN. SANI ABACHA OR HARASSMENT FROM ENEMIES HE MADE WHILE IN GOVERNMENT BUT I WAS PROVED VERY WRONG. MY HUSBANDIS NOW BEING DETAINED AT THE KUJE PRISONS ABUJA FOR DOING NOTHING OTHER THAN SERVING HIS FATHER LAND, ALL OUR ACCOUNTS AT HOME AND ABROAD KNOWN TO THE GOVERNMENT HAS BEEN FROZEN TO FRUSTRATE US. IT HAS NOW DAWNED ON US THAT WE HAVE A VERY SERIOUS BATTLE WITH PRESIDENT OBASANJO’S GOVERNMENT SINCE HE BELIEVES THAT MY HUSBAND WAS THE PERSON WHO ROPED HIM INTO PRISON FOR A PHANTOM COUP CHARGE, AS HE NOW WANTS TO GET BACK AT US. MY HUSBAND’S CLOSEST ASSOCIATES HAVE BETRAYED AND DESERTED US AND WE NO LONGER TRUST ANYONE OF THEM. THEREFORE, I AM REQUESTING FOR YOUR URGENT ASSISTANCE TO HELP MY FAMILY. RECENTLY, HE CONFIDED IN ME ABOUT A SECRET DEPOSIT OF US$25,000,000.00 (TWENTY FIVE MILLION, UNITED STATES DOLLARS), WHICH HE MADE VIA DIPLOMATIC COURIER SERVICES TO A SECURITY COMPANY BASED IN ABROAD AND PLACED ON HOLD. BECAUSE OF LACK OF TRUST ON FRIENDS AND ASSOCIATES MY HUSBAND HAS MANDATED ME TO OFFER 20% OF THE FUND TO YOU FOR YOUR ASSISTANCE AT THIS HOUR OF NEED. ALL YOU ARE EXPECTED TO DO IS COLLECT THE DEPOSIT DOCUMENTS FROM ME TO ENABLE YOU COLLECT THE TRUNK BOXES OF MONEY ON OUR BEHALF. MY ENTIRE FAMILY IS IN SERIOUS FINANCIAL DISTRESS AND THIS IS THE ONLY HOPE FOR US AS ALL OUR PASSPORTS AND TRAVELING DOCUMENTS HAVE BEEN SEIZED BY THE GOVERNMENT, HAVE IT IN MIND THAT THERE IS NO RISK INVOLVED IN THIS ASSISTANCE AS ONLY , MY HUSBAND AND I KNOW ABOUT THIS. OUR OWN SHARE IS TO BE LEFT IN YOUR CARE UNTIL ONE OF US IS ABLE TO FIND HIS WAY OUT TO OPEN NEW ACCOUNTS. I WILL SINCERELY APPRECIATE YOUR RESPONSE THROUGH MY PRIVATE EMAIL: fatigwarzo@techemail.com. THIS SUBJECT IS HIGHLY CONFIDENTIAL AND THEREFORE SHOULD BE TREATED AS SUCH. INCLUDE YOUR PERSONAL TELEPHONE AND FAX NUMBERS FOR EASY COMMUNICATION. WE HOPE THAT YOU CAN BE TRUSTED AND YOU WOULD NOT DISAPPOINT US. BEST REGARDS, HAJIA FATI GWARZO To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:42:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B39D37B401 for ; Wed, 16 Oct 2002 11:42:26 -0700 (PDT) Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDE2543E9C for ; Wed, 16 Oct 2002 11:42:24 -0700 (PDT) (envelope-from shovey@buffnet.net) 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 OAA83715; Wed, 16 Oct 2002 14:42:11 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Wed, 16 Oct 2002 14:42:00 -0400 (EDT) From: Stephen Hovey To: Fati Gwarzo Cc: questions@FreeBSD.ORG Subject: Re: confidential. In-Reply-To: <20021016184004.2B73243EA3@mx1.FreeBSD.org> 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You would think with so many of these originating from US Ip addresses that law enforcement woulda slapped all their butts in jail by now.. SHEESH On Wed, 16 Oct 2002, Fati Gwarzo wrote: > DEAR SIR, >=20 > MAY THE BLESSINGS OF GOD BE UPON YOU AND GRANT YOUR FAMILY AND YOU THE=20 > WISDOM AND SYMPATHY TO UNDERSTAND OUR SITUATION AND HOW MUCH WE REALLY N= EED YOUR ASSISTANCE. I AM THE WIFE OF ALHAJI ISMAILA GWARZO THE=20 > NATIONAL SECURITY ADVISER TO THE FORMER LATE HEAD OF STATE GEN. SANI=20 > ABACHA WHO DIED IN 1998 AS A RESULT OF HEART FAILURE. SINCE THE DEATH OF= =20 > GEN. ABACHA AND THE CONSEQUENT DISSOLUTION OF HIS CABINET THE NEW=20 > GOVERNMENT OF CHIEF OBASANJO HAS TURNED AGAINST MY FAMILY. >=20 > AT FIRST WE THOUGHT IT WAS A NORMAL INTERROGATION, AS MY FATHER SHOULD=20 > KNOW ABOUT SOME CONFIDENTIAL DEALINGS OF HIS BOSS LATE GEN. SANI ABACHA= =20 > OR HARASSMENT FROM ENEMIES HE MADE WHILE IN GOVERNMENT BUT I WAS PROVED = VERY WRONG. MY HUSBANDIS NOW BEING DETAINED AT THE KUJE PRISONS ABUJA FOR = DOING NOTHING OTHER THAN SERVING HIS FATHER LAND, ALL OUR ACCOUNTS AT HOME = AND ABROAD KNOWN TO THE GOVERNMENT HAS BEEN FROZEN TO FRUSTRATE US. IT HAS= NOW DAWNED ON US THAT WE HAVE A VERY SERIOUS BATTLE WITH PRESIDENT OBASANJ= O=92S GOVERNMENT SINCE HE BELIEVES THAT MY HUSBAND WAS THE PERSON WHO ROPED= HIM INTO PRISON FOR A PHANTOM COUP CHARGE, AS HE NOW WANTS TO GET BACK AT = US. MY HUSBAND=92S CLOSEST ASSOCIATES HAVE BETRAYED AND DESERTED US AND WE = NO LONGER TRUST ANYONE OF THEM. THEREFORE, I AM REQUESTING FOR YOUR URGENT = ASSISTANCE TO HELP MY FAMILY. >=20 > RECENTLY, HE CONFIDED IN ME ABOUT A SECRET DEPOSIT OF US$25,000,000.00=20 > (TWENTY FIVE MILLION, UNITED STATES DOLLARS), WHICH HE MADE VIA=20 > DIPLOMATIC COURIER SERVICES TO A SECURITY COMPANY BASED IN ABROAD AND P= LACED ON HOLD. BECAUSE OF LACK OF TRUST ON FRIENDS AND ASSOCIATES MY HUSBA= ND HAS MANDATED ME TO OFFER 20% OF THE FUND TO YOU FOR YOUR ASSISTANCE AT T= HIS HOUR OF NEED. ALL YOU ARE EXPECTED TO DO IS COLLECT THE DEPOSIT DOCUMEN= TS FROM ME TO ENABLE YOU COLLECT THE TRUNK BOXES OF MONEY ON OUR BEHALF. MY= ENTIRE FAMILY IS IN SERIOUS FINANCIAL DISTRESS AND THIS IS THE ONLY HOPE F= OR US AS ALL OUR PASSPORTS AND TRAVELING DOCUMENTS HAVE BEEN SEIZED BY THE = GOVERNMENT, HAVE IT IN MIND THAT THERE IS NO RISK=20 > INVOLVED IN THIS ASSISTANCE AS ONLY , MY HUSBAND AND I KNOW ABOUT THIS. O= UR OWN SHARE IS TO BE LEFT IN YOUR CARE UNTIL ONE OF US IS ABLE TO FIND HI= S=20 > WAY OUT TO OPEN NEW ACCOUNTS. >=20 > I WILL SINCERELY APPRECIATE YOUR RESPONSE THROUGH MY PRIVATE EMAIL: fatig= warzo@techemail.com. THIS SUBJECT IS HIGHLY CONFIDENTIAL AND=20 > THEREFORE SHOULD BE TREATED AS SUCH. INCLUDE YOUR PERSONAL TELEPHONE AND = FAX NUMBERS FOR EASY COMMUNICATION. >=20 > WE HOPE THAT YOU CAN BE TRUSTED AND YOU WOULD NOT DISAPPOINT US. >=20 > BEST REGARDS, >=20 > HAJIA FATI GWARZO >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 11:53: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0D9337B401 for ; Wed, 16 Oct 2002 11:53:00 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 437FB43E9E for ; Wed, 16 Oct 2002 11:52:59 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9GIqqf54240; Wed, 16 Oct 2002 13:52:52 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021016135251.0136e5e8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 16 Oct 2002 13:52:51 -0500 To: David Kelly , Jonathan Arnold From: "Jack L. Stone" Subject: Re: Upgrade recommendations Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <20021016181528.GB17604@grumpy.dyndns.org> References: <200210161314120727.0B4D72FE@mail.speakeasy.net> <200210161314120727.0B4D72FE@mail.speakeasy.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 01:15 PM 10.16.2002 -0500, David Kelly wrote: >On Wed, Oct 16, 2002 at 01:14:12PM -0400, Jonathan Arnold wrote: >> I'm currently running 4.5, and want to upgrade my machine and was >> wondering what you might have for recommendations. > >[...] > >> 3] A reformat and complete upgrade to 5.0 - I already have >> the web site & mailing list dbs backed up. >> >> As scary as it sounds, I'm leaning towards #3. > >That does sound scary. By all means go right ahead if it doesn't matter >that the server stays up. In the past 7 years that I have been using >FreeBSD the hardest thing to beat into peoples heads has been "don't use >-current on critical machines." > >Am concerned that your system is still 4.5, which suggests you don't >have to spend much time keeping it running (good) but don't spend much >time "keeping up" (bad). There have been serious issues with ssh, >apache, and probably other things since 4.5. You may be vulnerable. > >"Make buildworld", "make installworld", mergemaster, and "make kernel" >can be performed on a running system. Then with any luck you are only a >reboot away from being updated. That's what I do. > >-- >David Kelly N4HHE, dkelly@hiwaay.net >===================================================================== >>> There have been serious issues with ssh, apache, and probably other things since 4.5. You may be vulnerable.<<< This is not an issue with the base system. the ssh has been patched and Apache is not part of the base system and can be updated separately from ports or packages. I'm running on e of the latest versions not vulnerable. Also, am running 4.5-RELEASE p-20 which is right up to date with security patches. I don't track STABLE. but do track all security patches and update as and when they come out.... so, one doesn't have to upgrade above 4.5 to have the security..... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 16 11:53:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B2337B401 for ; Wed, 16 Oct 2002 11:53:44 -0700 (PDT) Received: from hotmail.com (f128.law8.hotmail.com [216.33.241.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4646C43E9E for ; Wed, 16 Oct 2002 11:53:44 -0700 (PDT) (envelope-from jmd526@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 16 Oct 2002 11:53:44 -0700 Received: from 66.89.179.250 by lw8fd.law8.hotmail.msn.com with HTTP; Wed, 16 Oct 2002 18:53:43 GMT X-Originating-IP: [66.89.179.250] Reply-To: jmd17@columbia.edu From: "John Daniels" To: freebsd-questions@freebsd.org Subject: SYSINSTALL/FDISK Date: Wed, 16 Oct 2002 14:53:43 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 16 Oct 2002 18:53:44.0205 (UTC) FILETIME=[59F273D0:01C27545] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi: Please read the whole post before replying. Yes, I know that DOS allows 4 PRIMARY Partitions and the history and purpose of an EXTENDED Partition. I am installing 4.7-REL on a PC with one PRIMARY and one EXTENDED partition. The PRIMARY partition is FAT and I have W98 there. The EXTENDED partition is empty as it was originally set up to be a place for FreeBSD. Unfortuneately, I now understand that FreeBSD needs to be in a PRIMARY partition. (EXTENDED was recommended by the disk's customer service rep was was familiar with Linux but not BSD) Also, SYSINSTALL's FDISK program says that one should put FreeBSD in a partition labeled as "unused". However, the "Change Type" command lets me change the EXTENDED partition to FreeBSD. I tried it and it seemed to work (I could even make it "bootable") but I decided not to proceed because I don't know what is going on behind the scenes: is it really changing the partition to PRIMARY or just making a label change (is that the same thing)? I don't want to wind up with a disk that is unuseable. And if it is making the change from EXTENDED to PRIMARY, is this something that the BIOS will be OK with? Alternatively, should I use the SYSINSTALL/FDISK "Delete" option on the Partition and then create a new partition/slice instead of "Change Type"? If SYSINSTALL's FDISK program will not do what I need can you direct me to a tool can I use to change the EXTENDED partition to a PRIMARY partition? Thanks, John Daniels FYI, SYSINSTALL's FDISK screen is: Disk Name: ad0 Disk geometry: 4865 cyls/ 255 heads / 63 sectors = 78156225 (38162MB) Offset Size End Name PType Desc. Subtype Flags 0 63 62 - 6 unused 0 63 12594897 12594959 ad0s1 2 fat 11 12594960 65561265 78156224 ad0s2 4 extended 15 78156225 9135 78165359 - 6 unused 0 _________________________________________________________________ Choose an Internet access plan right for you -- try MSN! http://resourcecenter.msn.com/access/plans/default.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 16 11:55:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8980237B401 for ; Wed, 16 Oct 2002 11:55:33 -0700 (PDT) Received: from smtp030.tiscali.dk (smtp030.tiscali.dk [212.54.64.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D6343EAF for ; Wed, 16 Oct 2002 11:55:32 -0700 (PDT) (envelope-from db@traceroute.dk) Received: from cpmail.dk.tiscali.com (mail.tiscali.dk [212.54.64.159]) by smtp030.tiscali.dk (8.12.5/8.12.5) with ESMTP id g9GIreXv029839 for ; Wed, 16 Oct 2002 20:55:29 +0200 (MEST) Received: from rafter (213.237.112.252) by cpmail.dk.tiscali.com (6.0.053) id 3DAA952F000BB57C for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 20:55:30 +0200 Date: Wed, 16 Oct 2002 21:01:08 +0200 From: Socketd To: freebsd-questions@freebsd.org Subject: FTP forwarding Message-ID: <20021016190108.GA290@rafter> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.3.6 Lines: 17 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all I know this is not a FreeBSD question, but I hope someone can help me. I have one global IP and a cisco router. On my LAN I have 3 FreeBSD 4.7 servers. On one server I run the standard ftpd, so I have to forward ftp traffic to that server. I should forward: 21 and 49152-65535, right? Also port 20? Btw, I know how to make the router forward one port, but can I just write ip nat inside source static 192.168.1.2 49152-65535 interface dialer0 49152-65535 to forward all those ports? In the future I will also run httpd, smtpd, sshd and pop3d (and maybe imapd) servers, do any of these need some special ports above 1024? br socketd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12: 3:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 804BD37B404 for ; Wed, 16 Oct 2002 12:03:49 -0700 (PDT) Received: from zeus.cairodurham.org (zeus.cairodurham.org [209.23.60.35]) by mx1.FreeBSD.org (Postfix) with SMTP id D03A043EAF for ; Wed, 16 Oct 2002 12:03:48 -0700 (PDT) (envelope-from jkikpole@cairodurham.org) Received: (qmail 29948 invoked from network); 16 Oct 2002 19:03:48 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 16 Oct 2002 19:03:48 -0000 Date: Wed, 16 Oct 2002 15:03:48 -0400 (EDT) From: Jaime Kikpole X-X-Sender: jkikpole@zeus To: freebsd-questions@freebsd.org Subject: FTP prob in PHP 4.2.3/install older version? Message-ID: <20021016150328.H29340-100000@zeus> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've found that PHP 4.2.3 seems to have a problem with ftp_* functions. I have a web-app called SquirrelMail with a plugin that uses FTP to manage your .procmailrc and SpamAssassin settings. The plugin works about 5-10% of the time. This web-app on an older box running PHP 4.2.1 seems to not have the problems that it does in PHP 4.2.3. So I was wondering if there was a way to install an older version of this port. If I install mod_php4 via the packages, it doesn't come with FTP support. I've already CVSup-ed my /usr/ports directory and my backup of the old version is over a year old. (My last "make world" went from FreeBSD 4.4 to 4.7.) Does anyone have any ideas? I need to make sure that at least IMAP, FTP, and MySQL support are compiled into mod_php4. Thanks in advance, Jaime -- Network Administrator Cairo-Durham Central School District To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12: 8:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B2E037B401 for ; Wed, 16 Oct 2002 12:08:31 -0700 (PDT) Received: from hotmail.com (oe55.law12.hotmail.com [64.4.18.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6175A43EAA for ; Wed, 16 Oct 2002 12:08:31 -0700 (PDT) (envelope-from b1henning@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 16 Oct 2002 12:08:31 -0700 X-Originating-IP: [192.216.212.193] From: "Brian Henning" To: Subject: opengl Date: Wed, 16 Oct 2002 14:08:26 -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 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 16 Oct 2002 19:08:31.0256 (UTC) FILETIME=[6AABB180:01C27547] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hello- i would like to program in opengl on freebsd with c/c++ what do i need to install from the ports directory to do this or am i already set up.. thanks, brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:12:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2240837B401 for ; Wed, 16 Oct 2002 12:12:52 -0700 (PDT) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6A2143E97 for ; Wed, 16 Oct 2002 12:12:51 -0700 (PDT) (envelope-from jdarnold@buddydog.org) Received: (qmail 15370 invoked from network); 16 Oct 2002 19:12:52 -0000 Received: from unknown (HELO max) ([66.92.76.225]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 16 Oct 2002 19:12:52 -0000 Message-ID: <200210161512500640.0BBA12CA@mail.speakeasy.net> In-Reply-To: <20021016181528.GB17604@grumpy.dyndns.org> References: <200210161314120727.0B4D72FE@mail.speakeasy.net> <20021016181528.GB17604@grumpy.dyndns.org> X-Mailer: Calypso Version 3.30.00.00 (4) Date: Wed, 16 Oct 2002 15:12:50 -0400 Reply-To: jdarnold@buddydog.org From: "Jonathan Arnold" To: freebsd-questions@FreeBSD.ORG Subject: Re: Upgrade recommendations Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >FreeBSD the hardest thing to beat into peoples heads has been "don't use >-current on critical machines." Thanks for insisting on that too! I don't have, by any means, a "critical" machine - it's just a play web site and mailing list - but I do like to have them up, so perhaps I'll stay away for now. >time "keeping up" (bad). There have been serious issues with ssh, >apache, and probably other things since 4.5. You may be vulnerable. All valid concerns. But I don't use ssh (have it turned off) and I have kept Apache patched. I do run some updates, just haven't jumped whole hog into the water. >"Make buildworld", "make installworld", mergemaster, and "make kernel" >can be performed on a running system. Then with any luck you are only a >reboot away from being updated. That's what I do. You know, I will probably do that, to the recent 4.7, now that I think about it a little more. -- Jonathan Arnold (mailto:jdarnold@buddydog.org) The Incredible Brightness of Seeing, a Home Theater weblog http://jdarnold.tzo.com/HomeTheater To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:28:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E811B37B401 for ; Wed, 16 Oct 2002 12:28:09 -0700 (PDT) Received: from smtp020.tiscali.dk (smtp020.tiscali.dk [212.54.64.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id F221C43EAC for ; Wed, 16 Oct 2002 12:28:08 -0700 (PDT) (envelope-from db@traceroute.dk) Received: from cpmail.dk.tiscali.com (mail.tiscali.dk [212.54.64.159]) by smtp020.tiscali.dk (8.12.5/8.12.5) with ESMTP id g9GJS5FE023282 for ; Wed, 16 Oct 2002 21:28:05 +0200 (MEST) Received: from rafter (213.237.112.252) by cpmail.dk.tiscali.com (6.0.053) id 3DA4A5FA000E7607 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 21:28:07 +0200 Date: Wed, 16 Oct 2002 21:33:44 +0200 From: Socketd To: freebsd-questions@freebsd.org Subject: Re: FTP forwarding Message-ID: <20021016193344.GC290@rafter> References: <20021016190108.GA290@rafter> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20021016190108.GA290@rafter>; from db@traceroute.dk on Wed, Oct 16, 2002 at 21:01:08 +0200 X-Mailer: Balsa 1.3.6 Lines: 13 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2002.10.16 21:01 Socketd wrote: > In the future I will also run httpd, smtpd, sshd and pop3d (and maybe > imapd) servers, do any of these need some special ports above 1024? Btw, I have looked, but can it really be true that you can't run FTP with SSL (SFTP)? There is no SFTP daemons or SSL support to the existing daemons in the base system or in the ports (I know there is software outside the ports, but I rather run a normal ftp server than use that). br socketd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:40:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70C8D37B401 for ; Wed, 16 Oct 2002 12:40:51 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9406743E91 for ; Wed, 16 Oct 2002 12:40:47 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain ([12.242.158.67]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021016194044.BCOE4193.rwcrmhc51.attbi.com@localhost.localdomain>; Wed, 16 Oct 2002 19:40:44 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id g9GJhaUW053328; Wed, 16 Oct 2002 12:43:37 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id g9GJhTEA053323; Wed, 16 Oct 2002 12:43:29 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: Jerry McAllister Cc: jmd17@columbia.edu, freebsd-questions@FreeBSD.ORG Subject: Re: using an extended partition for freebsd References: <200210161434.g9GEYJe19859@clunix.cl.msu.edu> From: swear@attbi.com (Gary W. Swearingen) Date: 16 Oct 2002 12:43:29 -0700 In-Reply-To: <200210161434.g9GEYJe19859@clunix.cl.msu.edu> Message-ID: Lines: 49 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I am installing 4.7-REL on a PC with one PRIMARY and one EXTENDED partition. > > The PRIMARY > > partition is FAT and I have W98 there. I want to use the EXTENED partition > > (the WHOLE partition - > > there is currently nothing there) for FreeBSD but I read that FreeBSD needs > > to be installed into > > a PRIMARY partition. Under the IBM disk-layout scheme we're still using 20 years later, you may have up to 4 primary partitions. Most software supports having one of them being an extended partition which contains secondary partitions. So you have two primaries, one of them extended. (I suspect that one could manage to use multiple extended partitions with Linux, with some rarely-used "fdisk" features, but probably causing problems for some software.) > Right. An extended partition is something MS came up with to get around > some historical narrow thinking. FreeBSD doesn't need that. Be careful there. The BSD OSes essentially do the same thing, except they allow four "extended" partitions and use different internal formats and names: primary partition -> slice secondary partition -> partition I think we should use the IBM jargon. While the slice/partition jargon is a bit cleaner, the benefit is not worth the costs in continually needing to explain the differences in documents and support forums, and giving newbies another reason to return to what they know best. > It just needs slices (which are called partitions by Microsloth). Actually, it doesn't. FreeBSD can just have what it calls "partitions", in which case there won't be a "partition table". But "they" recommend having one slice anyway; I guess to support software (eg, on a Linux disk) thatexpects the more common disk layout. > > SYSINSTALL's FDISK program has an option ("Change Type") that lets me change > > the EXTENDED > > partition to FreeBSD, but I don't know if it is changing the partition to > > PRIMARY or just making a > > cosmetic Label change. And if it is making the change, will the BIOS > > recognize it (will anything > > break) I've never used it but it sounds like it would work OK. The BIOS doesn't need to recognize it, though with some boot loaders, it might need to have the "/" secondary partition in the first 1024 cylinders for your BIOS to grab all of the boot code. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:49: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B2A537B401 for ; Wed, 16 Oct 2002 12:49:03 -0700 (PDT) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FFCD43EA9 for ; Wed, 16 Oct 2002 12:49:02 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from Admin01 (admin01.westbend.net [216.47.253.18]) by mail.westbend.net (8.12.5/8.12.5) with SMTP id g9GJmtrH040752; Wed, 16 Oct 2002 14:48:55 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <001901c2754d$11d68c00$12fd2fd8@Admin01> From: "Scot W. Hetzel" To: Cc: References: Subject: Re: fp2002 over nfs Date: Wed, 16 Oct 2002 14:48:58 -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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "Jesse Geddis" > Using a dns round robin of FreeBSD 4.6.2 web servers running apache 1.3.27 > is there anything special that has to be done in order to make Front Page > 2002 extensions work assuming the module is installed on all web servers and > the front page files (binaries etc) would be NFS mounted as well via a > NetApp F825? Please include me in the CC as I am not subscribed. > As long as the frontpage binaries are still accessable from /usr/local/frontpage, there should be no problems with such a setup. All you can do is try it, and let us know if it works correctly with the FrontPage client (98/2000/2002) and browsing the site to a page that is using frontpage components (i.e. does fp counter work correctly). Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:50:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5766837B401 for ; Wed, 16 Oct 2002 12:50:57 -0700 (PDT) Received: from smtp010.tiscali.dk (smtp010.tiscali.dk [212.54.64.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6046843EAC for ; Wed, 16 Oct 2002 12:50:56 -0700 (PDT) (envelope-from db@traceroute.dk) Received: from cpmail.dk.tiscali.com (mail.tiscali.dk [212.54.64.159]) by smtp010.tiscali.dk (8.12.5/8.12.5) with ESMTP id g9GJnERT026246 for ; Wed, 16 Oct 2002 21:49:52 +0200 (MEST) Received: from rafter (213.237.112.252) by cpmail.dk.tiscali.com (6.0.053) id 3DA4A5FA000E7E67 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 21:49:53 +0200 Date: Wed, 16 Oct 2002 21:55:31 +0200 From: Socketd To: freebsd-questions@freebsd.org Subject: File-systems Message-ID: <20021016195531.GG290@rafter> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.3.6 Lines: 14 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi again :-) Just some filesystem questions. What filesystem does FreeBSD use for disks (1.44mb and 120 mb). In windows they use ms-dos, but my guess is that we don't use FFS for disks? and how do I format a disk to our filesystem? Why is it what we don't have to fragment our hard-disks all the time like I did in windows? I also heard that the filesystem for hard-disk will be updated in FreeBSD 5.0, can you guide my to some info about this? br socketd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:51:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE26537B401 for ; Wed, 16 Oct 2002 12:51:26 -0700 (PDT) Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4235343E8A for ; Wed, 16 Oct 2002 12:51:06 -0700 (PDT) (envelope-from jdarnold@buddydog.org) Received: (qmail 15469 invoked from network); 16 Oct 2002 19:44:06 -0000 Received: from unknown (HELO max) ([66.92.76.225]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 16 Oct 2002 19:44:06 -0000 Message-ID: <200210161544050013.0BD6AD96@mail.speakeasy.net> In-Reply-To: <1034757661.427.17.camel@knyghtmare.com> References: <20021016111927.K212-100000@bigb3server.bbcluster.gr> <1034757661.427.17.camel@knyghtmare.com> X-Mailer: Calypso Version 3.30.00.00 (4) Date: Wed, 16 Oct 2002 15:44:05 -0400 Reply-To: jdarnold@buddydog.org From: "Jonathan Arnold" To: questions@FreeBSD.ORG Subject: Re: CVSUP update from 4.6 -> 4.7 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >*default compress The comments in the cvsup file say to comment this line out if you have less than a T1, while cvsupit says to not use compress if your connection is greater than a 56k connection. Which is right for a fast DSL connection? -- Jonathan Arnold (mailto:jdarnold@buddydog.org) The Incredible Brightness of Seeing, a Home Theater weblog http://jdarnold.tzo.com/HomeTheater To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:55:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3D7F37B401 for ; Wed, 16 Oct 2002 12:55:36 -0700 (PDT) Received: from lion.com.ua (lion.com.ua [213.133.161.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2909A43E8A for ; Wed, 16 Oct 2002 12:55:32 -0700 (PDT) (envelope-from sa@simon.org.ua) Received: from localhost (localhost [127.0.0.1]) by lion.com.ua (8.12.5/8.12.5) with ESMTP id g9GJtH9I071710; Wed, 16 Oct 2002 22:55:21 +0300 (EEST) (envelope-from sa@simon.org.ua) Date: Wed, 16 Oct 2002 22:55:17 +0300 (EEST) From: Andrey Simonenko X-X-Sender: sa@lion.com.ua To: Matthew Seaman Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help me with building JDK1.3.1 (strange error with BOOTDIR variable) In-Reply-To: <20021016143339.GA74784@happy-idiot-talk.infracaninophi> Message-ID: <20021016224757.J71688-100000@lion.com.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks, I'll try this (I've just started to download linux-sun-jdk13 from Sun). Actually I want to install Java plugin for Mozilla (compiled for FreeBSD), as I understand I try to install correct port for this, isn't it? What are the better arguments for "make" utility for jdk13 port if I want to build Java plugin for Mizlla? On Wed, 16 Oct 2002, Matthew Seaman wrote: > On Wed, Oct 16, 2002 at 05:16:25PM +0300, Andrey Simonenko wrote: > > Hello all, > > > > Can somebody explaine me what I do wrong when building jdk1.3.1 port on > > FreeBSD 4.6-STABLE? > > > > [root@lion jdk13]# make -DNATIVE_BOOTSTRAP -DNODEBUG build > > ===> Building for jdk-nodebug-1.3.1p7 > > i386 Build started: 1.3.1-p7-root-021016-17:10 > > ERROR: BOOTDIR does not point to a valid Java 2 SDK > > Check that you have access to > > /usr/local/jdk1.3.1/bin/java > > and/or check your value of ALT_BOOTDIR. > > > > Exiting because of the above error(s). > > gmake: *** [sanity] Error 1 > > *** Error code 2 > > > > Stop in /usr/ports/java/jdk13. > > > > ps: I downloaded JDK sources from Sun and patches as it is said in jdk13 > > port. > > Catch 22: you need an installed and working JDK before you can > bottstrap a JDK. I this case, just install one of the linux JDK's --- > I think linux-sun-jdk13 is quite popular for this job. > > Then you can build and install the native JDK, and once that's working > OK, you can get rid of the linux JDK. > > Cheers, > > Matthew > > -- > Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks > Savill Way > Marlow > Tel: +44 1628 476614 Bucks., SL7 1TH 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 16 12:55:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A80E37B401 for ; Wed, 16 Oct 2002 12:55:41 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD09B43EAA for ; Wed, 16 Oct 2002 12:55:40 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain ([12.242.158.67]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021016195539.DRFQ12986.sccrmhc02.attbi.com@localhost.localdomain>; Wed, 16 Oct 2002 19:55:39 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id g9GJwUUW053510; Wed, 16 Oct 2002 12:58:30 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id g9GJwOuD053507; Wed, 16 Oct 2002 12:58:24 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: "Jonas Fornander" Cc: Subject: Re: Probably picked wrong boot loader References: <026701c274ef$e6b8c630$0800a8c0@master> From: swear@attbi.com (Gary W. Swearingen) Date: 16 Oct 2002 12:58:24 -0700 In-Reply-To: <026701c274ef$e6b8c630$0800a8c0@master> Message-ID: Lines: 16 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Jonas Fornander" writes: > How can I add the standard boot loader or do I have to re-install again? I'm fairly sure that you can boot the install floppy and at some point while it's booting it gives you a chance to interrupt and boot from the hard disk. (You might have to wait till you get to the main menu and then use the "fixit" option and floppy, but I doubt it.) The problem is that you have to learn how to name the disk partition which holds the kernel which you have already installed. It's probably explained in the handbook or a paper BSD book. It's kinda nasty, something like: 0:ad(0,a) Before you give up and re-install, try just using the menu options as far as adding the boot loader and then exit out the menues to reboot (and ctrl-alt-del works too, IIRC). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 12:59:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC51037B4DB for ; Wed, 16 Oct 2002 12:59:17 -0700 (PDT) Received: from truman.datasphereweb.com (12-231-81-122.client.attbi.com [12.231.81.122]) by mx1.FreeBSD.org (Postfix) with SMTP id 3198943EA9 for ; Wed, 16 Oct 2002 12:59:17 -0700 (PDT) (envelope-from ryallsd@datasphereweb.com) Received: (qmail 10850 invoked from network); 16 Oct 2002 20:01:14 -0000 Received: from 12-229-238-38.client.attbi.com (HELO bartxp) (12.229.238.38) by 12-231-81-122.client.attbi.com with SMTP; 16 Oct 2002 20:01:14 -0000 From: "Derrick Ryalls" To: Subject: RE: File-systems Date: Wed, 16 Oct 2002 12:59:04 -0700 Message-ID: <001501c2754e$7dc6e1c0$0200a8c0@bartxp> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4024 In-Reply-To: <20021016195531.GG290@rafter> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG=20 > [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of Socketd > Sent: Wednesday, October 16, 2002 12:56 PM > To: freebsd-questions@freebsd.org > Subject: File-systems >=20 >=20 > Hi again :-) >=20 > Just some filesystem questions. > What filesystem does FreeBSD use for disks (1.44mb and 120 mb). In=20 > windows they use ms-dos, but my guess is that we don't use FFS for=20 > disks? and how do I format a disk to our filesystem? Just a clarification, but windows 9x and below uses FAT(16/32). DOS sits on fat. FreeBSD I believe uses UFS for drive access and can be used via /stand/sysinstall. I don't recall what the acronym means. =20 >=20 > Why is it what we don't have to fragment our hard-disks all the time=20 > like I did in windows? I also heard that the filesystem for hard-disk=20 > will be updated in FreeBSD 5.0, can you guide my to some info about=20 > this? You are close, on windows you need to de-fragment the hard drive. Fragmentation slows down a system a little bit. Fragmentation usually occurs when you are doing lots of file creation/deletion. My 2 freebsd boxen don't do this on a normal basis, so the drives don't get too fragmented. >=20 > br > socketd >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 0:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B26637B404; Wed, 16 Oct 2002 13:00:17 -0700 (PDT) Received: from mf2.bredband.net (pop02.lab.bredband.com [195.54.122.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9901643EA9; Wed, 16 Oct 2002 13:00:15 -0700 (PDT) (envelope-from webmaster@maximillian.nu) Received: from libra.maximillian.nu ([213.113.164.134]) by mf2.bredband.net with ESMTP id <20021016200222.FRVO8373.mf2@libra.maximillian.nu>; Wed, 16 Oct 2002 22:02:22 +0200 Subject: mount_smbfs: can't get handle to requester (no /dev/nsmb* device) From: Markku Kokko To: FreeBSD Stable Cc: FreeBSD Questions Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 16 Oct 2002 22:00:57 +0200 Message-Id: <1034798457.280.15.camel@libra.maximillian.nu> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all ! I have a little problem here mounting or browsing samba shares. I have FreeBSD 4.6.2 running on both samba server and client, and a share on the server called public. when I try to mount that share it asks for password, and then gives an error: ex. libra# mount_smbfs //maxi@samba/public /mnt Password: mount_smbfs: can't get handle to requester (no /dev/nsmb* device) libra# I can list the shares with smbclient, no errors at all. I can not login to the samba like this: libra# smbutil login //maxi@samba Password: smbutil: can't get handle to requester (no /dev/nsmb* device) smbutil: can't get handle to requester (no /dev/nsmb* device) smbutil: could not login to server SAMBA: syserr = Invalid argument libra# I have checked /dev and there is one entry for nsmb0: libra# ll /dev/nsmb* crw------- 1 root wheel 144, 0 Oct 14 15:23 /dev/nsmb0 libra# I don't think the problem is server related because it works on another Windows workstation on the same LAN. Any ideas on what this might be? Need more info? Just ask, I'll give all info I can... Regards: Markku / Maxi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 0:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1834A37B401 for ; Wed, 16 Oct 2002 13:00:27 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66E7A43EA3 for ; Wed, 16 Oct 2002 13:00:26 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D170266E5E; Wed, 16 Oct 2002 13:00:25 -0700 (PDT) Date: Wed, 16 Oct 2002 13:00:25 -0700 From: Kris Kennaway To: Jacco Cc: FreeBSD Questions , Kris Kennaway Subject: Re: SSHD problem Message-ID: <20021016200025.GA13748@xor.obsecurity.org> References: <20021016022753.GA91641@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 16, 2002 at 06:30:12PM +0200, Jacco wrote: > Hello Kris, >=20 > | You do realise the sshd in 4.4-RELEASE has a serious security > | vulnerability? >=20 > Unfortunately I didn't know that. Would the "coredump" (and security) > problem be fixed after upgrading SSHD? No idea about the coredump, but the security problem will certainly be fixed by following the upgrade directions in the security advisory. Kris --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9rcVYWry0BWjoQKURAh2JAKDWxu91H07KnNhmKOGkDb/CGEuLUwCePytg UFmXiL1ma+AAydf1CdmwFUE= =lj/J -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 1:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06ABF37B401 for ; Wed, 16 Oct 2002 13:01:26 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9250443E42 for ; Wed, 16 Oct 2002 13:01:25 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 183E066B5E; Wed, 16 Oct 2002 13:01:25 -0700 (PDT) Date: Wed, 16 Oct 2002 13:01:24 -0700 From: Kris Kennaway To: Mark Miller Cc: freebsd-questions@freebsd.org Subject: Re: CPU_ENABLE_SSE on a P2 Celeron? Message-ID: <20021016200124.GB13748@xor.obsecurity.org> References: <20021015200131.O77260-100000@soda.csua.berkeley.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6sX45UoQRIJXqkqR" Content-Disposition: inline In-Reply-To: <20021015200131.O77260-100000@soda.csua.berkeley.edu> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --6sX45UoQRIJXqkqR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 15, 2002 at 08:04:10PM -0700, Mark Miller wrote: >=20 > As far as I can tell, SSE applies only to pentium III cpus and later; is > this correct? dmesg reports for me >=20 > CPU: Pentium II/Pentium II Xeon/Celeron (399.10-MHz 686-class CPU) > Origin =3D "GenuineIntel" Id =3D 0x665 Stepping =3D 5 > Features=3D0x183f9ff T,PSE36,MMX,FXSR> >=20 > Would enabling SSE in my kernel have any ill (positive) effects? The Pentium II does not support SSE (as you can see from the above feature list). Kris --6sX45UoQRIJXqkqR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9rcWUWry0BWjoQKURApGZAJ4k8vVw77UTuZaS1/Ll4JX1vE9InACeOoq0 5w11DL9IzwHfq0nbW+gwJcc= =T03f -----END PGP SIGNATURE----- --6sX45UoQRIJXqkqR-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 3: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFBE437B404 for ; Wed, 16 Oct 2002 13:03:04 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17A7743EA3 for ; Wed, 16 Oct 2002 13:03:04 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 883E266B5E; Wed, 16 Oct 2002 13:03:03 -0700 (PDT) Date: Wed, 16 Oct 2002 13:03:03 -0700 From: Kris Kennaway To: Roberto Armenteros Cc: freebsd-questions@freebsd.org Subject: Re: HELP!!! error installing ports Message-ID: <20021016200303.GC13748@xor.obsecurity.org> References: <20021016063107.99552.qmail@web13606.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yLVHuoLXiP9kZBkt" Content-Disposition: inline In-Reply-To: <20021016063107.99552.qmail@web13606.mail.yahoo.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --yLVHuoLXiP9kZBkt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 15, 2002 at 11:31:07PM -0700, Roberto Armenteros wrote: > Hi all, >=20 > When I downlaoded the ports initially with cvsup I > could install any port by typing "make install". After > I updated the ports a couple of times, I get the error > "make: dont know who to make install. Stop in > /usr/ports..." > Why am I getting this error now and not before? I > tried with lots of different ports and I get the same > error. I would really appreciate any help on this... In future, please paste the exact output of the relevant commands instead of retyping part of it from memory. Have you accidentally deleted your /usr/ports/Mk directory? Kris --yLVHuoLXiP9kZBkt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9rcX2Wry0BWjoQKURAgP7AJ9pJZOqk8H//sQ9KE8GPfbzuywWkACg+BOX MNNPjZioj6PsKOJBZI+9TlY= =93MM -----END PGP SIGNATURE----- --yLVHuoLXiP9kZBkt-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 3:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 032E737B401 for ; Wed, 16 Oct 2002 13:03:28 -0700 (PDT) Received: from nova.kettering.edu (nova.kettering.edu [192.138.137.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FE6843E42 for ; Wed, 16 Oct 2002 13:03:25 -0700 (PDT) (envelope-from acheng@member.ams.org) Received: from infinity.kettering.edu (infinity.kettering.edu [198.110.5.123]) by nova.kettering.edu (8.10.1/8.10.0) with ESMTP id g9GK3Hw29154 for ; Wed, 16 Oct 2002 16:03:17 -0400 (EDT) Received: from infinity.kettering.edu (localhost.kettering.edu [127.0.0.1]) by infinity.kettering.edu (8.12.6/8.12.6) with ESMTP id g9GK5UrH000985 for ; Wed, 16 Oct 2002 16:05:30 -0400 (EDT) (envelope-from acheng@member.ams.org) Received: from localhost (acheng@localhost) by infinity.kettering.edu (8.12.6/8.12.6/Submit) with ESMTP id g9GK5Ufi000982 for ; Wed, 16 Oct 2002 16:05:30 -0400 (EDT) (envelope-from acheng@member.ams.org) X-Authentication-Warning: infinity.kettering.edu: acheng owned process doing -bs Date: Wed, 16 Oct 2002 16:05:30 -0400 (EDT) From: Ada Cheng X-X-Sender: To: Subject: Problem with sendmail Message-ID: <20021016155214.G811-100000@infinity.kettering.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am unable to receive any email send to my box. I am running 4.6.2 with sendmail 8.12.6_1. When I try to send a test mail to another source which I then redirect back to my box I obtain the following message in /var/log/maillog Oct 16 15:56:09 infinity sendmail[947]: g9GJu9Ow000947: from=, size=707, class=0, nrcpts=1, msgid=<20021016155600.N811-100000@infinity.kettering.edu>,proto=ESMTP, relay=acheng@localhost Oct 16 15:56:09 infinity sm-mta[950]: g9GJu9rH000950: from=, size=1016, class=0, nrcpts=1, msgid=<20021016155600.N811-100000@infinity.kettering.edu>, proto=ESMTP, daemon=MTA, relay=localhost.kettering.edu [127.0.0.1] Oct 16 15:56:09 infinity sendmail[949]: g9GJu9Ow000947: to=, delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30297, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (g9GJu9rH000950 Message accepted for delivery) Oct 16 15:56:10 infinity sm-mta[952]: g9GJu9rH000950: to=, delay=00:00:01, xdelay=00:00:01, mailer=relay, pri=30606, relay=mailhost.kettering.edu [192.138.137.2], dsn=2.0.0, stat=Sent (g9GJruw23876 Message accepted for delivery) Oct 16 15:56:10 infinity sm-mta[953]: g9GJuArH000953: from=, size=1482, class=0, nrcpts=1, msgid=<20021016155600.N811-100000@infinity.kettering.edu>, proto=ESMTP, daemon=MTA, relay=nova.kettering.edu [192.138.137.2] Oct 16 15:56:10 infinity mail.local: setreuid(0, 1000): Operation not permitted (r=1, e=1) Oct 16 15:56:10 infinity sm-mta[954]: g9GJuArH000953: to=, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31744, dsn=5.0.0, stat=Service unavailable Oct 16 15:56:10 infinity sm-mta[954]: g9GJuArH000953: g9GJuArH000954: DSN: Service unavailable Oct 16 15:56:11 infinity sm-mta[954]: g9GJuArH000954: to=, delay=00:00:01, xdelay=00:00:01, mailer=relay, pri=32768, relay=mailhost.kettering.edu [192.138.137.2], dsn=2.0.0, stat=Sent (g9GJrvw23884 Message accepted for delivery) Oct 16 15:56:16 infinity sm-mta[957]: g9GJuGrH000957: from=<>, size=4067, class=0, nrcpts=1, msgid=<200210161956.g9GJuArH000954@infinity.kettering.edu>, proto=ESMTP, daemon=MTA, relay=nova.kettering.edu [192.138.137.2] Oct 16 15:56:16 infinity mail.local: setreuid(0, 1000): Operation not permitted (r=1, e=1) Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000957: to=, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=34289, dsn=5.0.0, stat=Service unavailable Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000957: g9GJuGrH000958: postmaster notify: Service unavailable Oct 16 15:56:16 infinity mail.local: setreuid(0, 0): Operation not permitted (r=1, e=1) Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000958: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=35313, dsn=5.0.0, stat=Service unavailable Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000958: g9GJuGrI000958: return to sender: Service unavailable Oct 16 15:56:16 infinity mail.local: setreuid(0, 0): Operation not permitted (r=1, e=1) Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrI000958: to=root, delay=00:00:00, xdelay=00:00:00, mailer=local, pri=36337, dsn=5.0.0, stat=Service unavailable Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000958: Losing ./qfg9GJuGrH000958: savemail panic Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000958: SYSERR(root): savemail: cannot save rejected email anywhere -> And the following message in /var/log/messages Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000958: Losing ./qfg9GJuGrH000958: savemail panic Oct 16 15:56:16 infinity sm-mta[958]: g9GJuGrH000958: SYSERR(root): savemail: cannot save rejected email anywhere -> When I run sendmail -bv -d0.12 postmaster, I obtained the following output: Version 8.12.6 Compiled with: DNSMAP LOG MAP_REGEX MATCHGECOS MILTER MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETINET6 NETUNIX NEWDB NIS PIPELINING SCANF TCPWRAPPERS USERDB XDEBUG OS Defines: BSD4_4_SOCKADDR HASFCHOWN HASFCHMOD HASFLOCK HASGETDTABLESIZE HASGETUSERSHELL HASINITGROUPS HASLSTAT HASNICE HASRANDOM HASRRESVPORT HASSETLOGIN HASSETREUID HASSETRLIMIT HASSETSID HASSETUSERCONTEXT HASSETVBUF HAS_ST_GEN HASSRANDOMDEV HASURANDOMDEV HASSTRERROR HASUNAME HASUNSETENV HASWAITPID IDENTPROTO IP_SRCROUTE LOCK_ON_OPEN SAFENFSPATHCONF USE_DOUBLE_FORK USESETEUID USESYSCTL Kernel symbols: don't use _PATH_UNIX Conf file: /etc/mail/submit.cf (default for MSP) Conf file: /etc/mail/sendmail.cf (default for MTA) Pid file: /var/run/sendmail.pid (default) libsm Defines: SM_CONF_GETOPT SM_CONF_LONGLONG SM_CONF_MEMCHR SM_CONF_MSG SM_CONF_SEM SM_CONF_SETITIMER SM_CONF_SHM SM_CONF_SSIZE_T SM_CONF_STDDEF_H SM_CONF_SYS_CDEFS_H SM_CONF_UID_GID SM_HEAP_CHECK SM_OS=sm_os_freebsd SM_VA_STD Canonical name: infinity.kettering.edu a.k.a.: infinity UUCP nodename: infinity.kettering.edu a.k.a.: infinity a.k.a.: [198.110.5.123] a.k.a.: [IPv6:fe80::206:5bff:fe87:39ed] a.k.a.: [IPv6:::1] a.k.a.: [IPv6:fe80::1] a.k.a.: [127.0.0.1] a.k.a.: localhost.kettering.edu Conf file: /etc/mail/sendmail.cf (selected) Pid file: /var/run/sendmail.pid (selected) ============ SYSTEM IDENTITY (after readcf) ============ (short domain name) $w = infinity (canonical domain name) $j = infinity.kettering.edu (subdomain name) $m = kettering.edu (node name) $k = infinity.kettering.edu ======================================================== Notice: -bv may give misleading output for non-privileged user root... deliverable: mailer local, user root -> Finally, I am using the generic freebsd.mc, i.e. divert(0) VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.mc,v 1.10.2.11 2001/07/14 18:07:27 gshapiro Exp $') OSTYPE(freebsd4) DOMAIN(generic) FEATURE(access_db, `hash -o /etc/mail/access') FEATURE(blacklist_recipients) FEATURE(local_lmtp) FEATURE(mailertable, `hash -o /etc/mail/mailertable') FEATURE(relay_based_on_MX) FEATURE(virtusertable, `hash -o /etc/mail/virtusertable') dnl Uncomment to activate Realtime Blackhole List dnl information available at http://www.mail-abuse.com/ dnl NOTE: This is a subscription service as of July 31, 2001 dnl FEATURE(dnsbl) dnl Alternatively, you can provide your own rejection message for the RBL: dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `"550 Mail from " $&{client_addr} " rejected, see http://mail-abuse.org/cgi-bin/lookup?" $&{client_addr}') dnl Other DNS based black hole lists dnl -------------------------------- dnl MAPS Relay Spam Stopper (RSS): http://mail-abuse.org/rss/ dnl NOTE: This is a subscription service as of July 31, 2001 dnl FEATURE(dnsbl, `relays.mail-abuse.org', `"550 Mail from " $&{client_addr} " rejected; see http://mail-abuse.org/cgi-bin/nph-rss?" $&{client_addr}') dnl MAPS Dial-up User List (DUL): http://maps.vix.com/dul/ dnl NOTE: This is a subscription service as of July 31, 2001 dnl FEATURE(dnsbl, `dialups.mail-abuse.org', `"550 Mail from dial-up rejected; see http://mail-abuse.org/dul/enduser.htm"') dnl Dialup users should uncomment and define this appropriately dnl define(`SMART_HOST', `your.isp.mail.server') dnl Uncomment the first line to change the location of the default dnl /etc/mail/local-host-names and comment out the second line. dnl define(`confCW_FILE', `-o /etc/mail/sendmail.cw') define(`confCW_FILE', `-o /etc/mail/local-host-names') dnl Uncomment both of the following lines to listen on IPv6 as well as IPv4 dnl DAEMON_OPTIONS(`Name=IPv4, Family=inet') dnl DAEMON_OPTIONS(`Name=IPv6, Family=inet6') define(`confMAX_MIME_HEADER_LENGTH', `256/128') define(`confNO_RCPT_ACTION', `add-to-undisclosed') define(`confPRIVACY_FLAGS', `authwarnings,noexpn,novrfy') MAILER(local) MAILER(smtp) -> Any help will be greatly appreciated. Thanks Ada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 6:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47F8337B401 for ; Wed, 16 Oct 2002 13:06:34 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3A9743E8A for ; Wed, 16 Oct 2002 13:06:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4AC3766B5E; Wed, 16 Oct 2002 13:06:33 -0700 (PDT) Date: Wed, 16 Oct 2002 13:06:33 -0700 From: Kris Kennaway To: Neil McGann Cc: freebsd-questions@FreeBSD.org Subject: Re: Has anyone got the current AbiWord port to build under 4.7R? Message-ID: <20021016200633.GD13748@xor.obsecurity.org> References: <1053.192.168.0.5.1034791659.squirrel@www.neilmcgann.co.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SO98HVl1bnMOfKZd" Content-Disposition: inline In-Reply-To: <1053.192.168.0.5.1034791659.squirrel@www.neilmcgann.co.uk> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --SO98HVl1bnMOfKZd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 16, 2002 at 07:07:39PM +0100, Neil McGann wrote: > I get the following: >=20 > =3D=3D=3D> Extracting for AbiWord-1.0.3 AbiWord compiles correctly in a fresh environment. Perhaps you have out-of-date versions of the packages upon which AbiWord depends, or you have extra (stale) files installed on your system. Try using the portupgrade utility to update all the dependent ports (portupgrade -R AbiWord). Kris --SO98HVl1bnMOfKZd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9rcbIWry0BWjoQKURAkAcAKD2+IG/K0FVlLTSCr0PLQFBhLeb7ACffx/J HohRn/yZYgPOQjljlLfoPKM= =dLsY -----END PGP SIGNATURE----- --SO98HVl1bnMOfKZd-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 7:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B4937B401 for ; Wed, 16 Oct 2002 13:07:36 -0700 (PDT) Received: from server1.mlmspy.com (mlmspy.com [64.49.222.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E9ED43EAC for ; Wed, 16 Oct 2002 13:07:36 -0700 (PDT) (envelope-from apache@server1.mlmspy.com) Received: (from apache@localhost) by server1.mlmspy.com (8.11.6/8.11.6) id g9GK7Zo30564; Wed, 16 Oct 2002 15:07:35 -0500 Date: Wed, 16 Oct 2002 15:07:35 -0500 Message-Id: <200210162007.g9GK7Zo30564@server1.mlmspy.com> To: questions@FreeBSD.org From: questions@FreeBSD.org Subject: Your remove request has been successfully processed! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We have processed your remove request successfully. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 8:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AAE037B401 for ; Wed, 16 Oct 2002 13:08:47 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D62143EB2 for ; Wed, 16 Oct 2002 13:08:43 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain ([12.242.158.67]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021016200843.BXSN4193.rwcrmhc51.attbi.com@localhost.localdomain>; Wed, 16 Oct 2002 20:08:43 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id g9GKBWUW053673; Wed, 16 Oct 2002 13:11:36 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id g9GKBRFZ053670; Wed, 16 Oct 2002 13:11:27 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: berninme@muohio.edu Cc: Subject: Re: Relatively cheap, well supported printer References: <2732.24.27.164.225.1034767079.squirrel@webmail.muohio.edu> From: swear@attbi.com (Gary W. Swearingen) Date: 16 Oct 2002 13:11:26 -0700 In-Reply-To: <2732.24.27.164.225.1034767079.squirrel@webmail.muohio.edu> Message-ID: <9uof9u5ekx.f9u@localhost.localdomain> Lines: 6 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I strongly recommend that you get a used PostScript laser printer, or at least a laser printer with an HP laser printer emulation. Unless you're not apt to care about ink costs and jet clogging and slow printing. 300 DPI is plenty good for most purposes. I see new 600 DPI laser printers are now quite cheap, but I don't know about their compatibility. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13: 9:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D18137B401 for ; Wed, 16 Oct 2002 13:09:50 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B75A43EB1 for ; Wed, 16 Oct 2002 13:09:49 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2C5AC66B5E; Wed, 16 Oct 2002 13:09:49 -0700 (PDT) Date: Wed, 16 Oct 2002 13:09:49 -0700 From: Kris Kennaway To: Socketd Cc: freebsd-questions@freebsd.org Subject: Re: File-systems Message-ID: <20021016200948.GE13748@xor.obsecurity.org> References: <20021016195531.GG290@rafter> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BZaMRJmqxGScZ8Mx" Content-Disposition: inline In-Reply-To: <20021016195531.GG290@rafter> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --BZaMRJmqxGScZ8Mx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 16, 2002 at 09:55:31PM +0200, Socketd wrote: > Hi again :-) >=20 > Just some filesystem questions. > What filesystem does FreeBSD use for disks (1.44mb and 120 mb). In=20 > windows they use ms-dos, but my guess is that we don't use FFS for=20 > disks? and how do I format a disk to our filesystem? You can use whatever filesystem you want. It's just a filesystem..it doesn't care about the underlying disk medium. You can create a FFS filesystem on a floppy disk the same way you create one on a hard disk (using newfs, or newfs_* for other filesystems). > Why is it what we don't have to fragment our hard-disks all the time=20 > like I did in windows? The filesystem is designed not to become fragmented under normal use. On the other hand FAT was not designed very well (at all? :). > I also heard that the filesystem for hard-disk=20 > will be updated in FreeBSD 5.0, can you guide my to some info about=20 > this? Check the release notes. >=20 > br > socketd >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message --BZaMRJmqxGScZ8Mx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9rceMWry0BWjoQKURAgEHAKCnxpHiNIKv4yWcCWfgW4SB86iXAQCfV1Dv +do6+N1XSYhVOHXK9mjT2k8= =aYT2 -----END PGP SIGNATURE----- --BZaMRJmqxGScZ8Mx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:12:45 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5014F37B401 for ; Wed, 16 Oct 2002 13:12:44 -0700 (PDT) Received: from alpha.wintersperu.com.pe (alpha.wintersperu.com.pe [200.37.53.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id E628743E6E for ; Wed, 16 Oct 2002 13:12:35 -0700 (PDT) (envelope-from aran80@wintersperu.com.pe) Received: from electron ([130.102.1.2]) by alpha.wintersperu.com.pe (8.11.6/8.11.6) with ESMTP id g9GKBoP14235 for ; Wed, 16 Oct 2002 15:11:52 -0500 (PET) (envelope-from aran80@wintersperu.com.pe) From: "Alvaro Rosales R." Organization: Procacao S.A To: freebsd-questions@FreeBSD.ORG Date: Wed, 16 Oct 2002 15:11:50 -0500 MIME-Version: 1.0 Subject: Stable or Current?? Message-ID: <3DAD81B6.24762.1329B38@localhost> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi fellows , How can I tell what kind of FReeBSD do I have installed in my BOX, I mean HOw do I know if my software is a Current or a STABLE release??. Thanks for your answers Alvaro A. Rosales Rojas. ---------------- a.k.a. RAZA Proud user of Pegasus Mail Soporte Tecnico de Sistemas Procacao S.A 3368113 ext 260 "You'll never know how far you can go until you break the chains that tie your soul " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:18:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57BC837B401 for ; Wed, 16 Oct 2002 13:18:26 -0700 (PDT) Received: from casper.sri.com (casper.SRI.COM [128.18.243.12]) by mx1.FreeBSD.org (Postfix) with SMTP id AA3D643E6E for ; Wed, 16 Oct 2002 13:18:25 -0700 (PDT) (envelope-from hogsett@csl.sri.com) Received: (qmail 15959 invoked from network); 16 Oct 2002 20:22:11 -0000 Received: from localhost (HELO casper.SRI.COM) (127.0.0.1) by casper.sri.com with SMTP; 16 Oct 2002 20:22:11 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by casper.SRI.COM (NAVGW 2.5.1.18) with SMTP id M2002101613221123913 ; Wed, 16 Oct 2002 13:22:11 -0700 Received: from axp.csl.sri.com (axp.csl.sri.com [130.107.2.30]) by quarter.csl.sri.com (8.12.4/8.12.4) with ESMTP id g9GKIOnr026201; Wed, 16 Oct 2002 13:18:24 -0700 Received: from axp.csl.sri.com (localhost [127.0.0.1]) by axp.csl.sri.com (8.12.6/8.12.3) with ESMTP id g9GKIN1J037448; Wed, 16 Oct 2002 13:18:24 -0700 (PDT) (envelope-from hogsett@axp.csl.sri.com) Message-Id: <200210162018.g9GKIN1J037448@axp.csl.sri.com> To: "Alvaro Rosales R." Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Stable or Current?? In-Reply-To: Message from "Alvaro Rosales R." of "Wed, 16 Oct 2002 15:11:50 CDT." <3DAD81B6.24762.1329B38@localhost> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Wed, 16 Oct 2002 13:18:22 -0700 From: Mike Hogsett Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 'uname -a' will give you the information.. e.g. --> uname -a FreeBSD axp.csl.sri.com 4.7-RELEASE FreeBSD 4.7-RELEASE #3: Thu Oct 10 14:58:35 PDT 2002 hogsett@axp.csl.sri.com:/usr/obj/usr/src/sys/AXP alpha I am running 4.7-RELEASE - Mike > Hi fellows , How can I tell what kind of FReeBSD do I have installed in > my BOX, I mean HOw do I know if my software is a Current or a > STABLE release??. > > Thanks for your answers > > > > > > > > > > > Alvaro A. Rosales Rojas. ---------------- a.k.a. RAZA > Proud user of Pegasus Mail > Soporte Tecnico de Sistemas > Procacao S.A > 3368113 ext 260 > > "You'll never know how far you can go until you break the chains that > tie your soul " > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 16 13:20:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3582537B401 for ; Wed, 16 Oct 2002 13:20:42 -0700 (PDT) Received: from calico.dreamhaven.org (bdsl.66.12.17.211.gte.net [66.12.17.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95A5743E97 for ; Wed, 16 Oct 2002 13:20:41 -0700 (PDT) (envelope-from data@dreamhaven.org) Received: from data (helo=localhost) by calico.dreamhaven.org with local-esmtp (Exim 4.05) id 181uem-00004E-00 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 13:20:40 -0700 Date: Wed, 16 Oct 2002 13:20:40 -0700 (PDT) From: Bryce Newall To: FreeBSD Questions List Message-ID: MIME-Version: 1.0 Subject: Buildworld error Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=0.0 required=7.5 tests=none version=2.31 X-Spam-Level: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I am running into some difficulty trying to upgrade my system (a freshly-installed FreeBSD 4.7-RELEASE system) to 4.7-STABLE. About 45 minutes into the buildworld process, it bombs out with the following: ===> share/doc/papers/fsinterface touch _stamp.extraobjs (cd /usr/src/share/doc/papers/fsinterface; groff -mtty-char -Tascii -t -ms -o1- /usr/src/share/doc/papers/fsinterface/fsinterface.ms) | gzip -cn > fsinterface.ascii.gz ===> share/doc/papers/jail touch _stamp.extraobjs (cd /usr/src/share/doc/papers/jail; groff -mtty-char -Tascii -ms -o1- /usr/src/share/doc/papers/jail/paper.ms) | gzip -cn > jail.ascii.gz ===> share/doc/papers/kernmalloc (cd /usr/src/share/doc/papers/kernmalloc; soelim kernmalloc.t) > kernmalloc.ms vgrind -f < /usr/src/share/doc/papers/kernmalloc/appendix.t > appendix.ms elf_load_section: truncated ELF file Abort trap *** Error code 134 Stop in /usr/src/share/doc/papers/kernmalloc. *** Error code 1 Stop in /usr/src/share/doc/papers. *** Error code 1 Stop in /usr/src/share/doc. *** Error code 1 Stop in /usr/src/share. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. That "truncated ELF file" is what is concerning me, but I don't know what to check for. Any help will be greatly appreciated. Thanks!! ********************************************************* * Bryce Newall * Email: data@dreamhaven.org * * www.dreamhaven.org/~data * * "Computers make very fast, very accurate mistakes." * ********************************************************* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:20:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E00237B401 for ; Wed, 16 Oct 2002 13:20:51 -0700 (PDT) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCDC243EAA for ; Wed, 16 Oct 2002 13:20:48 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: from net2.dinoex.sub.org (dinoex@net2.dinoex.de [212.184.201.182]) by net2.dinoex.sub.org (8.12.6/8.12.6) with ESMTP id g9GKKJEv019434; Wed, 16 Oct 2002 22:20:20 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) X-Authentication-Warning: net2.dinoex.sub.org: Host dinoex@net2.dinoex.de [212.184.201.182] claimed to be net2.dinoex.sub.org Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.12.6/8.12.6/Submit) with BSMTP id g9GKKJSQ019414; Wed, 16 Oct 2002 22:20:19 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-questions@FreeBSD.ORG, acheng@member.ams.org (Ada Cheng) Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: Problem with sendmail Date: Wed, 16 Oct 2002 22:18:17 +0200 X-Mailer: Dinoex 1.79 References: <20021016155214.G811-100000@infinity.kettering.edu> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.94] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 2001 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20021016000000S+2@dinoex.sub.org X-Accept-Language: de,en X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-No-Archive: yes Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ada Cheng schrieb:, > I am unable to receive any email send to my box. I am running 4.6.2 with > sendmail 8.12.6_1. > > When I try to send a test mail to another source which I then redirect > back to my box I obtain the following message in > Oct 16 15:56:10 infinity mail.local: setreuid(0, 1000): Operation not permitted (r=1, e=1) Please add in your sendmail.mc file: MODIFY_MAILER_FLAGS(`LOCAL', `+S')dnl mail.local is not SUID, so sendmail must start it as root. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - [dirk.meyer@dinoex.sub.org],[dirk.meyer@guug.de],[dinoex@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 16 13:24:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B94D37B401 for ; Wed, 16 Oct 2002 13:24:32 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 189CF43EAA for ; Wed, 16 Oct 2002 13:24:31 -0700 (PDT) (envelope-from GeneralP.Fault@gmx.net) Received: (qmail 4187 invoked by uid 0); 16 Oct 2002 20:24:29 -0000 Received: from p5081b930.dip.t-dialin.net (HELO data) (80.129.185.48) by mail.gmx.net (mp015-rz3) with SMTP; 16 Oct 2002 20:24:29 -0000 Content-Type: text/plain; charset="iso-8859-1" From: wolfgang To: harsha godavari Subject: Re: multiple_file_downloading Date: Wed, 16 Oct 2002 22:24:27 +0200 User-Agent: KMail/1.4.3 Cc: References: <20021015223412.Q7763-100000@mail.radzinschi.com> In-Reply-To: <20021015223412.Q7763-100000@mail.radzinschi.com> Organization: planet earth MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210162224.27777.GeneralP.Fault@gmx.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG you can use the GNU program wget in linux/unix and windows. to download an entire directory with wget (using anonymous ftp) you would= =20 simply type wget -r ftp://whatever/your/server/is/directory/ find wget via freshmeat.net, for the windows version see http://space.tin.it/computer/hherold/ hope this helps, wolfgang To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:30:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CB2837B401 for ; Wed, 16 Oct 2002 13:30:50 -0700 (PDT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E2C043EA9 for ; Wed, 16 Oct 2002 13:30:50 -0700 (PDT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.6+Sun/8.11.6) id g9GKUia21490; Wed, 16 Oct 2002 16:30:44 -0400 (EDT) From: Jerry McAllister Message-Id: <200210162030.g9GKUia21490@clunix.cl.msu.edu> Subject: Re: using an extended partition for freebsd To: swear@attbi.com (Gary W. Swearingen) Date: Wed, 16 Oct 2002 16:30:44 -0400 (EDT) Cc: jerrymc@clunix.cl.msu.edu (Jerry McAllister), jmd17@columbia.edu, freebsd-questions@FreeBSD.ORG In-Reply-To: from "Gary W. Swearingen" at Oct 16, 2002 12:43:29 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > > Right. An extended partition is something MS came up with to get around > > some historical narrow thinking. FreeBSD doesn't need that. > > Be careful there. The BSD OSes essentially do the same thing, except > they allow four "extended" partitions and use different internal formats > and names: > primary partition -> slice > secondary partition -> partition Sort of, but not quite. FreeBSD partitions divide up slices in to nice neat separately mountable (if they are made in to file systems) independantly addressable units. > I think we should use the IBM jargon. While the slice/partition jargon > is a bit cleaner, the benefit is not worth the costs in continually > needing to explain the differences in documents and support forums, > and giving newbies another reason to return to what they know best. I don't agree there. Using slice & partition within slice is more clear thatn partition and extended partition and may make newbees heave a sigh of relief. > > It just needs slices (which are called partitions by Microsloth). > > Actually, it doesn't. FreeBSD can just have what it calls "partitions", > in which case there won't be a "partition table". But "they" recommend > having one slice anyway; I guess to support software (eg, on a Linux > disk) thatexpects the more common disk layout. Yes, the socalled "dangerously dedicated" disk, sure. On today's large disks there is little reason to do it that way. ////jerry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:31:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 342CD37B401 for ; Wed, 16 Oct 2002 13:31:52 -0700 (PDT) Received: from alpha.wintersperu.com.pe (alpha.wintersperu.com.pe [200.37.53.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5800343EAF for ; Wed, 16 Oct 2002 13:31:35 -0700 (PDT) (envelope-from aran80@wintersperu.com.pe) Received: from electron ([130.102.1.2]) by alpha.wintersperu.com.pe (8.11.6/8.11.6) with ESMTP id g9GKVQP14389 for ; Wed, 16 Oct 2002 15:31:27 -0500 (PET) (envelope-from aran80@wintersperu.com.pe) From: "Alvaro Rosales R." Organization: Procacao S.A To: freebsd-questions@FreeBSD.ORG Date: Wed, 16 Oct 2002 15:31:26 -0500 MIME-Version: 1.0 Subject: How to upgrade from 4.3 to 4.7 Message-ID: <3DAD864E.31367.1448E0F@localhost> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi fellows , can you tell me how can I upgrade my FreeBSD release 4.3 to 4.7? . Thanks for your help Alvaro A. Rosales Rojas. ---------------- a.k.a. RAZA Proud user of Pegasus Mail Soporte Tecnico de Sistemas Procacao S.A 3368113 ext 260 "You'll never know how far you can go until you break the chains that tie your soul " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:37:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F7E37B401 for ; Wed, 16 Oct 2002 13:37:55 -0700 (PDT) Received: from c014.snv.cp.net (h001.c014.snv.cp.net [209.228.35.75]) by mx1.FreeBSD.org (Postfix) with SMTP id B61FD43E9C for ; Wed, 16 Oct 2002 13:37:54 -0700 (PDT) (envelope-from klimenta@futurebit.com) Received: (cpmta 26406 invoked from network); 16 Oct 2002 13:37:54 -0700 Received: from 12.33.76.83 (HELO bigbeat) by smtp.cswebmail.com (209.228.35.75) with SMTP; 16 Oct 2002 13:37:54 -0700 X-Sent: 16 Oct 2002 20:37:54 GMT Message-ID: <001e01c27553$e6f88fe0$ca0110ac@vinyl.tkvbp.com> From: "Kliment Andreev" To: Subject: routed daemon Date: Wed, 16 Oct 2002 16:37:48 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-5" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have a production PC (4.5-stable) ------------- ------------- ------------- |172.16.1.3|--->|172.16.4.10|--->|172.16.4.11| - (Internet) ------------- ------------- ------------- 4.5 STABLE Cisco Router PIX Firewall ------------- ------------- (Internet) |172.19.4.10|<---|172.19.1.x|(Clients) ------------- ------------- Cisco Router Everything is fine, but from time to time when I type # netstat -r I have 172.19 gateway 172.16.4.10 172.19.1.10 gateway 172.16.4.11 <------- This should not be here (dynamic flag) I don't have routed daemon running. Who is updating my routing table? Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 13:52:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30A1F37B401 for ; Wed, 16 Oct 2002 13:52:11 -0700 (PDT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71A2B43E97 for ; Wed, 16 Oct 2002 13:52:10 -0700 (PDT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.6+Sun/8.11.6) id g9GKq9h21592; Wed, 16 Oct 2002 16:52:09 -0400 (EDT) From: Jerry McAllister Message-Id: <200210162052.g9GKq9h21592@clunix.cl.msu.edu> Subject: Re: SYSINSTALL/FDISK To: jmd17@columbia.edu Date: Wed, 16 Oct 2002 16:52:09 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: from "John Daniels" at Oct 16, 2002 02:53:43 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Hi: > > Please read the whole post before replying. Yes, I know that > DOS allows 4 PRIMARY Partitions and the history and purpose > of an EXTENDED Partition. > > I am installing 4.7-REL on a PC with one PRIMARY and one > EXTENDED partition. The PRIMARY partition is FAT and I have > W98 there. The EXTENDED partition is empty as it was originally > set up to be a place for FreeBSD. Unfortuneately, I now > understand that FreeBSD needs to be in a PRIMARY partition. > (EXTENDED was recommended by the disk's customer > service rep was was familiar with Linux but not BSD) Sounds like you have all the answers. Why the question. > Also, SYSINSTALL's FDISK program says that one should put > FreeBSD in a partition labeled as "unused". However, the > "Change Type" command lets me change the EXTENDED > partition to FreeBSD. I tried it and it seemed to work (I could > even make it "bootable") but I decided not to proceed because > I don't know what is going on behind the scenes: is it really > changing the partition to PRIMARY or just making a label > change (is that the same thing)? I don't want to wind up > with a disk that is unuseable. And if it is making the > change from EXTENDED to PRIMARY, is this something that > the BIOS will be OK with? I doubt the BIOS will care. It will probably work. But, if you are concerned, get yourself a copy of Partition Magic by Power Quest. It is available in most places that sell PC and software, including Best Buy, Circuit City, etc. Use it to clean up everything and leave the extra space not in your first slice (DOS primary partition) as unused space. Then let the fdisk in sysinstall turn that space in to a FreeBSD slice. Basically, FreeBSD fdisk/disklabel/newfs is quite happy to overwrite any type of space with a slice and partitions/filesystems whether they are already in use or not, if you tell them to do so. The fdisk basically just rewrites the disk's slice (DOS partition) table, thus determining how the disk space is divvied up. It will read and report existing use, but you can tell it to redivide that space any way you want. Of course, if you modify space already in use, that previous stuff is going to be trashed (most likely), but it tells you how each piece is being used so you can be careful. The fact that an empty piece (slice/DOS partition) is identified as set up to hold extended partitions means little as long as nothing is really there. ////jerry > > Alternatively, should I use the SYSINSTALL/FDISK "Delete" > option on the Partition and then create a new partition/slice > instead of "Change Type"? > > If SYSINSTALL's FDISK program will not do what I need can you > direct me to a tool can I use to change the EXTENDED partition > to a PRIMARY partition? > > Thanks, > > John Daniels > > > FYI, SYSINSTALL's FDISK screen is: > > Disk Name: ad0 > Disk geometry: 4865 cyls/ 255 heads / 63 sectors = 78156225 (38162MB) > > Offset Size End Name PType Desc. Subtype > Flags > 0 63 62 - 6 > unused 0 > 63 12594897 12594959 ad0s1 2 fat 11 > 12594960 65561265 78156224 ad0s2 4 extended 15 > 78156225 9135 78165359 - 6 unused 0 > > > > _________________________________________________________________ > Choose an Internet access plan right for you -- try MSN! > http://resourcecenter.msn.com/access/plans/default.asp > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 16 13:52:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3935137B401 for ; Wed, 16 Oct 2002 13:52:47 -0700 (PDT) Received: from sirius.pbegames.com (sirius.pbegames.com [38.144.126.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 723B243E6A for ; Wed, 16 Oct 2002 13:52:46 -0700 (PDT) (envelope-from thomas@pbegames.com) Received: from leviathan.pbegames.com (medusa.pbegames.com [141.156.216.175]) by sirius.pbegames.com (8.11.5/8.11.5) with ESMTP id g9GKqjv09146 for ; Wed, 16 Oct 2002 16:52:45 -0400 (EDT) (envelope-from thomas@pbegames.com) Message-Id: <5.1.0.14.2.20021016162714.0227d0c0@pbegames.com> X-Sender: thomas@pbegames.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 16 Oct 2002 16:53:26 -0400 To: freebsd-questions@freebsd.org From: Mark Thomas Subject: Slow one-way network speeds Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm having an issue with transfer speeds on my local network and I'm looking for some pointers on what I might do to fix it up. My network is pretty simple. Internet -- DSL -- Medusa -- Local Net -- Leviathan Medusa is (PII-400): FreeBSD medusa.pbegames.com 4.4-STABLE FreeBSD 4.4-STABLE #2: Tue Apr 16 09:45:14 EDT 2002 Leviathan is (AMD TBird-900): Win98 with the latest service packs, patches, etc. The DSL connection is running user ppp with nat. The local net is a D-Link hub (10baseT/UTP). The problem: Transfers from Leviathan to Medusa run at ~900 kB/s Transfers from Medusa to Leviathan run at ~55 kB/s Interestingly, transfers from the Internet to Leviathan run at the expected rate (~75 kB/s -- about normal for my local DSL provider). I've been testing transfer rates using a 9 MB file. I first noticed this with Samba, but I can reproduce it with scp and ftp as well. I've done some looking around at various sysctl and registry settings, but I haven't seen anything that jumps out. The local interface on Medusa (LinkSys LNE100 I believe) looks like this: dc0: flags=8843 mtu 1500 inet6 fe80::204:5aff:fe57:5cc2%dc0 prefixlen 64 scopeid 0x1 inet 192.168.99.1 netmask 0xffff0000 broadcast 192.168.255.255 ether 00:04:5a:57:5c:c2 media: Ethernet autoselect (10baseT/UTP) status: active I've swapped out all cables, and transfers between Leviathan and a test machine internally work fine over all ports on the hub. I'm leaning towards a problem with the tcp settings between the two machines, but have about reached the limits of my knowledge in this area. Any pointers to where to look would be great. I can pass on more information if needed (sysctls, tcpdump, etc.). TIA, Mark Thomas --- thomas@pbegames.com ----> http://www.pbegames.com/~thomas Play by Electron Games -> http://www.pbegames.com Free Trial Games To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 14:20:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E34D037B401 for ; Wed, 16 Oct 2002 14:20:24 -0700 (PDT) Received: from casper.sri.com (casper.SRI.COM [128.18.243.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 6AD9543E8A for ; Wed, 16 Oct 2002 14:20:24 -0700 (PDT) (envelope-from hogsett@csl.sri.com) Received: (qmail 17059 invoked from network); 16 Oct 2002 21:24:10 -0000 Received: from localhost (HELO casper.SRI.COM) (127.0.0.1) by casper.sri.com with SMTP; 16 Oct 2002 21:24:10 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by casper.SRI.COM (NAVGW 2.5.1.18) with SMTP id M2002101614240922532 ; Wed, 16 Oct 2002 14:24:09 -0700 Received: from axp.csl.sri.com (axp.csl.sri.com [130.107.2.30]) by quarter.csl.sri.com (8.12.4/8.12.4) with ESMTP id g9GLKMnr030773; Wed, 16 Oct 2002 14:20:22 -0700 Received: from axp.csl.sri.com (localhost [127.0.0.1]) by axp.csl.sri.com (8.12.6/8.12.3) with ESMTP id g9GLKL1J037841; Wed, 16 Oct 2002 14:20:22 -0700 (PDT) (envelope-from hogsett@axp.csl.sri.com) Message-Id: <200210162120.g9GLKL1J037841@axp.csl.sri.com> To: "Alvaro Rosales R." Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How to upgrade from 4.3 to 4.7 In-Reply-To: Message from "Alvaro Rosales R." of "Wed, 16 Oct 2002 15:31:26 CDT." <3DAD864E.31367.1448E0F@localhost> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Wed, 16 Oct 2002 14:20:21 -0700 From: Mike Hogsett Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Hi fellows , can you tell me how can I upgrade my FreeBSD release 4.3 > to 4.7? . > Thanks for your help The following is one of several methods to accomplish this. Also I am making several assumptions about your system and its network setup. ** ** BACKUP ALL IMPORTANT DATA BEFORE DOING THIS ** ** ** ** BE FAMILIAR WITH HOW TO BOOT INTO SINGLE USER MODE ** ** ** ** AND HOW TO LOAD ARBITRARY KERNELS FROM THE OK PROMPT ** ** In a nutshell... First read the following : http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html and any of the other many good chapters you feel inclined to read. Install CVSUP if you don't already have it installed. Go to /usr/ports/net/cvsup and do a make install. ** NOTE ** It may be necessary to manually install cvsup from a binary package. Old versions of CVSUP have a bug, and your ports tree may be out of date. You can find a cvsup binary package at : ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4-stable/All/cvsup/cvsup-16.1f.tgz ** ** someone please correct the above URL if this is not the correct one ** ** When you have the package do : > pkg_add cvsup-16.1f.tgz If all goes well then > cp /usr/share/examples/cvsup/standard-supfile /etc/standard-supfile edit /etc/standard-supfile change : *default host=CHANGE_THIS.FreeBSD.org Set "CHANGE_THIS.FreeBSD.org" to a "close" cvsup server. By close I mean one that has either a good ping or the fewest hops in traceroute. Here in Silicon Valley I used to get great speeds from cvsup14.FreeBSD.org until I started running my own cvsup mirror, now I use my mirror. change : *default release=cvs tag=RELENG_4_7 **NOTE** "RELENG_4_7" will likely be different in your copy of standard-supfile. Change it to be "RELENG_4_7". This is the 4.7 with patches branch (a good one to track). run : > cvsup -g /etc/standard-supfile This should begin the process of updating your /usr/src directory. Depending on your network connection this may take from under an hour to several hours. *** NOTE *** you may want to do the same cvsup procedure using /usr/share/examples/cvsup/ports-supfile to update /usr/ports. Just copy it to /etc, edit the "*default host=" line to the same as you used before, then run "cvsup -g /etc/ports-supfile". This will update all of /usr/ports. After the cvsup has completed you now have the 4.7 sources in /usr/src You might need to completely remove /usr/obj, if so do "rm -rf /usr/obj" ** NOTE ** check your work. Know what you are doing. I take no responsibility if you lose important files. > cd /usr/src ** ** READ /usr/src/UPDATING ** ** To build the 4.7 do : > make buildworld && make buildkernel Come back in a couple hours or a couple of days depending on the speed of your CPU, how much memory it has, and how fast its disk/s is/are. When that completes do : > make installkernel Reboot into single user mode. ** ** NOTE: If the new kernel craps out on you or otherwise fails to boot reset the machine, and at the "ok" prompt boot with either kernel.GENERIC or kernel.old, Then diagnose why the new kernel failed. DO NOT PROCEED with the remainder of the install until this is resolved. at the shell do : > mount -a -t ufs > cd /usr/src > cd usr.sbin/mergemaster > make && make install > mergemaster -p mergemaster will update your password and group files as necessary. ** NOTE ** be sure to keep your "root" entry from the installed password file, as well as any other important user entries. Now cd /usr/src > make installworld Now run mergemaster again to update the remaining configuration files. > mergemaster Reboot. Ta da 4.7-RELEASE, assuming everything went smoothly. Good Luck. - Mike Hogsett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 14:23:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D46E37B401 for ; Wed, 16 Oct 2002 14:23:36 -0700 (PDT) Received: from yertle.kciLink.com (yertle.kcilink.com [216.194.193.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC1E943E6A for ; Wed, 16 Oct 2002 14:23:35 -0700 (PDT) (envelope-from khera@kciLink.com) Received: from onceler.kciLink.com (onceler.kciLink.com [216.194.193.106]) by yertle.kciLink.com (Postfix) with ESMTP id 739E52178C for ; Wed, 16 Oct 2002 17:23:35 -0400 (EDT) Received: by onceler.kciLink.com (Postfix, from userid 100) id 512DB3D07; Wed, 16 Oct 2002 17:23:35 -0400 (EDT) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: Vivek Khera To: freebsd-questions@freebsd.org Subject: Re: vmware Newsgroups: ml.freebsd.questions References: X-Trace: lorax.kciLink.com 1034802222 48123 216.194.193.106 (16 Oct 2002 21:03:42 GMT) X-Complaints-To: daemon@kciLink.com X-Virus-Scanned: by amavisd-new amavisd-new-20020630 (@kci) X-Razor-id: 90e4c6fa22e869a9b1e0a1d3d47a3735e28374f1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >>>>> "NT" == Nick Tonkin writes: NT> Excuse me, but did you get networking working with win2k guest on NT> freebsd? What I do is disable the netgraph bridging, since I don't like my interfaces constantly running in permiscous mode, then used NAT on the host with a private IP space to access the rest of the world. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 14:29: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71D5037B401 for ; Wed, 16 Oct 2002 14:29:00 -0700 (PDT) Received: from dsl-64-128-185-9.telocity.com (dsl-64-128-185-9.telocity.com [64.128.185.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7907343E42 for ; Wed, 16 Oct 2002 14:28:59 -0700 (PDT) (envelope-from mjoyner2@hq.dyns.cx) Received: (from root@localhost) by dsl-64-128-185-9.telocity.com (8.12.6/8.11.5) id g9GLSXxI040288 for questions@freebsd.org; Wed, 16 Oct 2002 17:28:33 -0400 (EDT) (envelope-from mjoyner2@hq.dyns.cx) Received: from ip-24.internal (ip-34.internal [192.168.2.34]) by hq.dyns.cx (8.12.6/8.11.5av) with ESMTP id g9GLSF5u040271 for ; Wed, 16 Oct 2002 17:28:15 -0400 (EDT) (envelope-from mjoyner2@hq.dyns.cx) Received: from hq.dyns.cx (localhost [127.0.0.1]) by ip-24.internal (8.12.6/8.12.6) with ESMTP id g9GLSa1f088524 for ; Wed, 16 Oct 2002 17:28:36 -0400 (EDT) (envelope-from mjoyner2@hq.dyns.cx) Message-ID: <3DADDA04.9050108@hq.dyns.cx> Date: Wed, 16 Oct 2002 17:28:36 -0400 From: wolf User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3 X-Accept-Language: en-us MIME-Version: 1.0 To: questions Subject: vmware3 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is anyone working on getting vmware3 working on FreeBSD ? I upgraded by system to a Duron and now I can't run anything under vmware2 that wants the SIMD(?) instructions used. (i.e. Windows 2000/XP, RedHat 7.3/8.0 etc.) -- Michael Joyner FreeBSD System Administrator http://manhattan.hq.dyns.cx/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 14:30:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E8C037B406 for ; Wed, 16 Oct 2002 14:30:12 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A3C043E3B for ; Wed, 16 Oct 2002 14:30:09 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9GLU7Kg084707 for ; Wed, 16 Oct 2002 22:30:07 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9GLU2J1084702 for freebsd-questions@FreeBSD.ORG; Wed, 16 Oct 2002 22:30:02 +0100 (BST) Date: Wed, 16 Oct 2002 22:30:02 +0100 From: Matthew Seaman To: freebsd-questions@FreeBSD.ORG Subject: Re: Help me with building JDK1.3.1 (strange error with BOOTDIR variable) Message-ID: <20021016213002.GA84463@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , freebsd-questions@FreeBSD.ORG References: <20021016143339.GA74784@happy-idiot-talk.infracaninophi> <20021016224757.J71688-100000@lion.com.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021016224757.J71688-100000@lion.com.ua> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-14.1 required=5.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_01_02, USER_AGENT,USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Oct 16, 2002 at 10:55:17PM +0300, Andrey Simonenko wrote: > Thanks, I'll try this (I've just started to download linux-sun-jdk13 from > Sun). Actually I want to install Java plugin for Mozilla (compiled for > FreeBSD), as I understand I try to install correct port for this, isn't > it? What are the better arguments for "make" utility for jdk13 port if I > want to build Java plugin for Mizlla? Yes, the native jdk-1.3.1 port includes the java plugin for Mozilla: happy-idiot-talk:/usr/ports:% pkg_info -L jdk-1.3.1p7 | grep javaplugin /usr/local/jdk1.3.1/jre/lib/i386/libjavaplugin_jni.so /usr/local/jdk1.3.1/jre/lib/i386/libjavaplugin_jni_g.so /usr/local/jdk1.3.1/jre/lib/javaplugin.jar /usr/local/jdk1.3.1/jre/plugin/i386/ns4/javaplugin.so /usr/local/jdk1.3.1/jre/plugin/i386/ns4/javaplugin_g.so /usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so /usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji_g.so You don't need to do anything special when building the JDK --- the java plugin gets built by default. You can turn off building the plugin by: make -DWITHOUT_PLUGIN You'll need to create a symbolic link as instructed at the end of the install process so that mozilla can find the plugin: ln -s /usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so \ /usr/X11R6/lib/mozilla/plugins/ (or mozilla-devel if that's the mozilla port you've installed). Remember to enable java from the preferences panel in Mozilla. Then to test that everything works, try http://games.yahoo.com/games/downloads/dm.html (ignore the warnings about incompatibility with unix/Mac, they're out of date) or http://www.netspace.net.au/~gregegan/APPLETS/Applets.html. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH 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 16 14:48:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2083637B401 for ; Wed, 16 Oct 2002 14:48:42 -0700 (PDT) Received: from web40801.mail.yahoo.com (web40801.mail.yahoo.com [66.218.78.178]) by mx1.FreeBSD.org (Postfix) with SMTP id CF4B143E88 for ; Wed, 16 Oct 2002 14:48:41 -0700 (PDT) (envelope-from ejcerejo@yahoo.com) Message-ID: <20021016214841.65665.qmail@web40801.mail.yahoo.com> Received: from [65.129.46.252] by web40801.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 14:48:41 PDT Date: Wed, 16 Oct 2002 14:48:41 -0700 (PDT) From: "E. J. Cerejo" Subject: US Robotics Performance Pro modem won't work To: FreeBSD-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just built a pc and bought the above modem for being 100% controller-based hardware modem but I can't get it to work, it doesn't complain when I run the ppp -ddial command and it even creates tun0.pid file but it doesn't dial at all and I think it has to do with the com port. In windows shows that, it's using com3 which tells me it has its own com ports in the card and the question is what should I do to make it work in FreeBSD 4.6.2? I've tried to change the ppp.conf file from cuaa0 to cuaa1 and so on but nothing happens. I'm still using the generic kernel. Thanks in advance __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 14:53:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F0137B401 for ; Wed, 16 Oct 2002 14:53:28 -0700 (PDT) Received: from scanmail1.nyc.untd.com (outbound-21.nyc.untd.com [64.136.21.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7770D43E65 for ; Wed, 16 Oct 2002 14:53:27 -0700 (PDT) (envelope-from null@juno.com) Received: (from daemon@localhost) by scanmail1.nyc.untd.com (8.8.6.Beta0/8.8.7/juno-1.2) id RAAAA02843; Wed, 16 Oct 2002 17:53:26 -0400 (EDT) Date: Wed, 16 Oct 2002 17:53:26 -0400 (EDT) Message-Id: <200210162153.RAAAA02843@scanmail1.nyc.untd.com> From: referrals@support.juno.com Reply-To: referrals@support.juno.com To: freebsd-questions Subject: Re: To referrals@support.juno.com. --> Ref #[1M0NcEZUBB0jhre] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear freebsd-questions , Thank you for contacting the Juno Help Center. Please be advised that this is an automated response aimed at assisting you with some common issues. If your concern is not addressed, please write back to us with the complete details of your query. Also note that, to answer any query regarding your referral status, we would require the Juno e-mail ID of either party - the referrer and the referee. Please ensure that you enclose these details in your reply. Best regards, Juno Customer Care --------------------------- Frequently Asked Questions: 1. I want to refer my friend to Juno. Please send a Juno disk to his address. 2. I referred a member/members to Juno, when will I receive my referral check? 3. The e-mail address I entered for my referrer is incorrect. Can I change it ? If so, how ? 4. I referred my friend to Juno Basic Plan. Am I eligible for referral bonus? 5. How many members can I refer to Juno ? 6. What are rules of the Juno Tell-A-Friend program ? ------- Answers 1. I want to refer my friend to Juno. Please send a Juno disk to his address. To have the CD-ROM mailed, please go to the Juno Web Referrals ad by clicking on the word 'Advertisements' near the top of your screen, then selecting 'Advertisement Index' from the menu that drops down. You can enter up to ten names and addresses per month to have software sent to your friends and family. If you have access to the World Wide Web, you can also go to our Web site, http://www.juno.com and click on 'Tell-A-Friend' where you can request a copy of the software by mail or enter an address for your friends and family. 2. I referred a member/members to Juno, when will I receive my referral check? If the new member remains with Juno premium service for a period of 90 consecutive days from date of signup , the referrer will receive via U.S. mail a check for the amount specified at http://www.juno.com/referral/. Please allow two to four weeks for delivery of the check after the new member has completed 90 consecutive days with Juno Web. The check will be mailed to the address specified in the referrers Member Profile. 3. The e-mail address I entered for my referrer is incorrect. Can I change it ? If so, how ? Please visit our My Account pages, located at http://account.juno.com, to change the e-mail address of your referring member. Please note that you have fifteen days after the date of your original signup to change the address. Changes will not be accepted after that time. 4. I referred my friend to Juno Basic Plan. Am I eligible for referral bonus? According to our referral policy - In order for the referring member to be eligible for the cash payment, the new member must register for the then-current Juno premium flat-rate plan. Please note that the current flat rate offered to new members is the Juno Platinum plan charged at $9.95 per month. 5. How many members can I refer to Juno ? Each Juno member may refer a maximum of 25 completed referrals to Juno Web as part of this program. Members who wish to refer more than 25 referrals should contact Juno at referrals@support.juno.com.. Please send us more information regarding your request to exceed our referral limits, including how many additional members you would like to refer. If these members are part of an established organization, please provide the name, address and phone number of the organization. Once we have received this information, we will review your request and respond within 7-10 business days. At the discretion of Juno Online Services, payment for multiple referrals may arrive as one lump sum or individually . 6. What are rules of the Juno Tell-A-Friend program ? The official rules of the Juno Tell-A-Friend program are listed below : 1. Any Juno member may refer a new member to Juno Web in order to take part in this program. 2. New members cannot be current or former members of any Juno service. 3. New members must create a Juno Web account using version 2.0 or later of the Juno software, and must sign up for Juno Web at the time of account creation. The most recent version of the Juno software can be downloaded from our home page at http://dl.www.juno.com/bin/dynoget/site/get. To check which version of Juno is installed on your computer, click 'Help' at the top of the main Juno interface, then select 'About Juno'. 4. The new member must enter the referring member's Juno e-mail address in the box designated for referrals during the sign-up process. All information gathered will be used only in accordance with Juno's privacy policy. Signup must take place online (rather than by telephone with a customer service representative). 5. In order for the referring member to be eligible for the cash payment, the new member must register for the then-current Juno flat-rate plan. Other price plans may apply at the sole discretion of Juno Online Services. Please note that the current flat rate plan offered to new members is the Juno Platinum charged at $9.95 per month. 6. If the new member signs up for Juno Web and remains with Juno Web for a period of 90 consecutive days, the referring member will receive via U.S. mail a check for the amount specified at http://www.juno.com/referral/. Please allow two to four weeks for delivery of the check after the new member has completed 90 consecutive days with Juno Web. The check will be mailed to the address specified in the referring member's Member Profile. 7. The new member's account must be current (that is, there must be no balance past due) in order for Juno to pay the referring member. 8. Members will not receive payment for referring themselves to Juno Web. 9. Juno may provide referring members with the e-mail addresses and full names of all new members they have referred to Juno Web, consistent with Juno's privacy policy. 10. Each Juno member may be compensated for a maximum of 25 completed referrals to Juno Web as part of this program. Members who wish to be compensated for more than 25 successful referrals should contact Juno at referrals@support.juno.com. At the discretion of Juno Online Services, payment for multiple referrals may arrive as one lump sum or individually. 11. Juno maintains a My Account Web page at http://account.juno.com/, where referring members may check the status of accounts they have referred to Juno Web. Please report any problems or questions to referrals@support.juno.com. Customer service representatives cannot answer questions regarding referrals by telephone. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 14:54:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 990F837B401 for ; Wed, 16 Oct 2002 14:54:09 -0700 (PDT) Received: from relay.kiev.sovam.com (relay.kiev.sovam.com [212.109.32.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0B7543E6E for ; Wed, 16 Oct 2002 14:54:08 -0700 (PDT) (envelope-from 0572-191-160@post.ro) Received: from [62.64.119.168] (helo=postmaster) by relay.kiev.sovam.com with smtp (Exim 3.34 #1) id 181w75-0003Ye-00; Thu, 17 Oct 2002 00:54:01 +0300 From: Igor <0572-191-160@post.ro> To: "post" <> Subject: Cðî÷íàÿ «ëèêâèäàöèÿ» ðåã, ðàáîòà ñ êðåäèòîðàìè è äåáèòîðàìè, âçûñêàíèå çàäîëæåííîñòåé Organization: Delta Reply-To: 0572-191-160@post.ro X-Mailer: Microsoft Outlook Express 4.72.3110.5 Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Date: Thu, 17 Oct 2002 00:52:09 +0400 Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Àäâîêàòû è þðèñòû þðèäè÷åñêîé ôèðìû «Äåëüòà» îêàçûâàþò âåñü ñïåêòð þðèäè÷åñêèõ óñëóã, ïî âñåì ðåãèîíàì Óêðàèíû, â òîì ÷èñëå: - ñðî÷íàÿ «ëèêâèäàöèÿ» ñóáúåêòîâ ïðåäïðèíèìàòåëüñêîé äåÿòåëüíîñòè ðàçëè÷íîé ôîðìû ñîáñòâåííîñòè âî âñåõ ðåãèîíàõ Óêðàèíû ïóòåì: ñìåíû ó÷ðåäèòåëåé; ðåîðãàíèçàöèè ïóòåì ñëèÿíèÿ, ðàçäåëåíèÿ, ïðèñîåäèíåíèÿ, âûäåëåíèÿ è ïðåîáðàçîâàíèÿ, ïðè ýòîì îêàçûâàþò êîíñóëüòàöèè ïî àíàëèçó è ïîäáîðó ñîñòàâà ó÷ðåäèòåëåé è àäìèíèñòðàöèè ïðåäïðèÿòèÿ; - ñðî÷íàÿ ðåãèñòðàöèÿ ñóáúåêòîâ ïðåäïðèíèìàòåëüñêîé äåÿòåëüíîñòè ðàçëè÷íîé ôîðìû ñîáñòâåííîñòè âî âñåõ ðåãèîíàõ Óêðàèíû, ÷òî âêëþ÷àåò êîíñóëüòàöèè ïî âûáîðó ôîðìû ñîáñòâåííîñòè, àíàëèçó è ïîäáîðó ó÷ðåäèòåëåé è èíâåñòîðîâ, ïðîæèâàþùèõ â äðóãèõ ðåãèîíàõ; - , ïðåòåíçèîííàÿ ðàáîòà, çàùèòà èíòåðåñîâ ñ ñóäå, ó÷àñòèå â èñïîëíèòåëüíîì ïðîèçâîäñòâå âïëîòü äî çà÷èñëåíèÿ ñðåäñòâ íà ð/ñ êëèåíòà, áàíêðîòñòâî. Ñì. http://delta.kharkov.com/lhelp.html Òåë. äëÿ ñïðàâîê (0572) 191-160 _____________________________________________________________________________ Îòäåë ïðîãðàììíîãî îáåñïå÷åíèÿ ïðåäëàãàåò óñëóãè ïî ñîçäàíèþ web-ïðèëîæåíèé. Ìû ïîìîæåì Âàì ñîçäàòü ñîáñòâåííûé ñàéò - îò íåáîëüøîé âèçèòíîé êàðòî÷êè äî èíòåðíåò-ìàãàçèíà. Ìû áóäåì ðàäû îáñóäèòü ñ Çàêàç÷èêîì ñîçäàíèå äèçàéíà ëþáîãî óðîâíÿ ôóíêöèîíàëüíîñòè, òåõíîëîãè÷íîñòè è îðèãèíàëüíîñòè è íàäååìñÿ, ÷òî íàø îïûò ïîçâîëèò óäîâëåòâîðèòü ñàìûå âçûñêàòåëüíûå òðåáîâàíèÿ. Òåë. äëÿ ñïðàâîê (0572) 14-06-53 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 14:56:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B744F37B401 for ; Wed, 16 Oct 2002 14:56:11 -0700 (PDT) Received: from hotmail.com (f65.law15.hotmail.com [64.4.23.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EF8843E77 for ; Wed, 16 Oct 2002 14:56:11 -0700 (PDT) (envelope-from dyn_dns_sweden@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 16 Oct 2002 14:56:11 -0700 Received: from 213.67.37.47 by lw15fd.law15.hotmail.msn.com with HTTP; Wed, 16 Oct 2002 21:56:10 GMT X-Originating-IP: [213.67.37.47] From: "Ms Carlsson" To: freebsd-questions@freebsd.org Subject: /usr/libexec/ftpd Date: Wed, 16 Oct 2002 23:56:10 +0200 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Message-ID: X-OriginalArrivalTime: 16 Oct 2002 21:56:11.0045 (UTC) FILETIME=[D6C5AD50:01C2755E] Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How do i set the anonymous homedir? How do i set maximum of connections. Please helt, The manual pages does NOT tell me. /Miss _________________________________________________________________ Fynda på nätet! Handla på MSN Shopping http://www.msn.se/shopping To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15: 6: 0 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1DE437B401 for ; Wed, 16 Oct 2002 15:05:59 -0700 (PDT) Received: from sccimhc01.insightbb.com (sccimhc01.insightbb.com [63.240.76.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CE7D43E6A for ; Wed, 16 Oct 2002 15:05:59 -0700 (PDT) (envelope-from bryanc2000@insightbb.com) Received: from insightbb.com ([12.222.162.255]) by sccimhc01.insightbb.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20021016220558.LMGI5019.sccimhc01.insightbb.com@insightbb.com> for ; Wed, 16 Oct 2002 22:05:58 +0000 Date: Wed, 16 Oct 2002 17:09:41 -0500 From: Bryan Cassidy To: freebsd-questions Message-Id: <20021016170941.2c931a06.bryanc2000@insightbb.com> X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.10; i386-portbld-freebsd4.6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I don't know if someone has already asked this but what the hell. I was just wondering about pgp and sylpheed. I was wanting to set this up. I am running FreeBSD 4.6.2 with Sylpheed 0.8.5 which you probable already see that. I want to know how to set this up and put it to use. ----------------------------------------------------------------------- E-Mail: Bryan Cassidy Operating System: FreeBSD 4.6.2 GAIM: bsdsys Yahoo Messenger: bsdsys I have put alot of time in setting up my mail filters so please do not just Reply-To: Reply to the mailing lists. This is very annoying for me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15: 7:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1043937B404 for ; Wed, 16 Oct 2002 15:07:38 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6421E43E3B for ; Wed, 16 Oct 2002 15:07:37 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id PAA07745; Wed, 16 Oct 2002 15:07:35 -0700 Message-ID: <3DADE326.8030006@owt.com> Date: Wed, 16 Oct 2002 15:07:34 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Bryce Newall Cc: FreeBSD Questions List Subject: Re: Buildworld error References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bryce Newall wrote: > Hi all, > > I am running into some difficulty trying to upgrade my system (a > freshly-installed FreeBSD 4.7-RELEASE system) to 4.7-STABLE. About 45 > minutes into the buildworld process, it bombs out with the following: > > ===> share/doc/papers/fsinterface > touch _stamp.extraobjs > (cd /usr/src/share/doc/papers/fsinterface; groff -mtty-char -Tascii -t -ms > -o1- /usr/src/share/doc/papers/fsinterface/fsinterface.ms) | gzip -cn > > fsinterface.ascii.gz > ===> share/doc/papers/jail > touch _stamp.extraobjs > (cd /usr/src/share/doc/papers/jail; groff -mtty-char -Tascii -ms -o1- > /usr/src/share/doc/papers/jail/paper.ms) | gzip -cn > jail.ascii.gz > ===> share/doc/papers/kernmalloc > (cd /usr/src/share/doc/papers/kernmalloc; soelim kernmalloc.t) > > kernmalloc.ms > vgrind -f < /usr/src/share/doc/papers/kernmalloc/appendix.t > appendix.ms > elf_load_section: truncated ELF file > Abort trap > *** Error code 134 > > Stop in /usr/src/share/doc/papers/kernmalloc. > *** Error code 1 > > Stop in /usr/src/share/doc/papers. > *** Error code 1 > > Stop in /usr/src/share/doc. > *** Error code 1 > > Stop in /usr/src/share. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > That "truncated ELF file" is what is concerning me, but I don't know what > to check for. Any help will be greatly appreciated. Thanks!! > FWIW, the kernmalloc.ms line appears 92% of the way into the build. You could have some sort of hardware failure that is dying with the truncation error instead of giving you a signal error and dying. An HD that is overheating or something similar. Did you try the buildworld more than once? I checked on vgrind and only the Makefile has changed in the last year. I wonder if you have corrupted sources for it. You could always cd /usr/src/usr.bin/vgrind and try rebuilding it and see if that helps. Otherwise, I would remove everything in the vgrind directory, re-cvsup 4-stable, and try doing a buildworld again. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15:21:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83F9F37B401 for ; Wed, 16 Oct 2002 15:21:41 -0700 (PDT) Received: from x.org (62-37-163-196.dialup.uni2.es [62.37.163.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9B0C43E97 for ; Wed, 16 Oct 2002 15:21:33 -0700 (PDT) (envelope-from root@x.org.org) Received: from x.org.org (localhost [127.0.0.1]) by x.org (8.12.6/8.12.3) with ESMTP id g9GKKZDN076032 for ; Wed, 16 Oct 2002 22:20:35 +0200 (CEST) (envelope-from root@x.org.org) Received: (from root@localhost) by x.org.org (8.12.6/8.12.3/Submit) id g9GKKV5i076031 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 22:20:31 +0200 (CEST) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 16 Oct 2002 22:20:30 +0200 (CEST) From: xxavi@myrealbox.com To: freebsd-questions@freebsd.org Subject: floppy not mounting Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, an idea for this problem:? [root@x]/root(101): mount /dev/fd0 /drives/fd mount: /dev/fd0: Device not configured thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15:23:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88DF637B401 for ; Wed, 16 Oct 2002 15:23:26 -0700 (PDT) Received: from calico.dreamhaven.org (bdsl.66.12.17.211.gte.net [66.12.17.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E9B343E75 for ; Wed, 16 Oct 2002 15:23:26 -0700 (PDT) (envelope-from data@dreamhaven.org) Received: from data (helo=localhost) by calico.dreamhaven.org with local-esmtp (Exim 4.05) id 181wZZ-0000X2-00; Wed, 16 Oct 2002 15:23:25 -0700 Date: Wed, 16 Oct 2002 15:23:25 -0700 (PDT) From: Bryce Newall To: Kent Stewart Cc: FreeBSD Questions List In-Reply-To: <3DADE326.8030006@owt.com> Message-ID: MIME-Version: 1.0 Subject: Re: Buildworld error Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=-3.4 required=7.5 tests=IN_REP_TO version=2.31 X-Spam-Level: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 16 Oct 2002, Kent Stewart wrote: > FWIW, the kernmalloc.ms line appears 92% of the way into the build. Doh! Hate when it dies so close to the end... > You could have some sort of hardware failure that is dying with the > truncation error instead of giving you a signal error and dying. An HD > that is overheating or something similar. Did you try the buildworld > more than once? 3 times, actually, and it failed in the same place every time. With that in mind, I'm pretty sure it's not a hardware problem (though I've run into those before, too... usually I get a signal 10 or 11 with that). > I checked on vgrind and only the Makefile has changed in the last > year. I wonder if you have corrupted sources for it. You could always > cd /usr/src/usr.bin/vgrind and try rebuilding it and see if that > helps. Otherwise, I would remove everything in the vgrind directory, > re-cvsup 4-stable, and try doing a buildworld again. I'll give that a try and let you know what happens. Thanks! ********************************************************* * Bryce Newall * Email: data@dreamhaven.org * * www.dreamhaven.org/~data * * "Computers make very fast, very accurate mistakes." * ********************************************************* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15:23:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0907D37B401 for ; Wed, 16 Oct 2002 15:23:49 -0700 (PDT) Received: from sccimhc02.insightbb.com (sccimhc02.insightbb.com [63.240.76.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8561C43E77 for ; Wed, 16 Oct 2002 15:23:48 -0700 (PDT) (envelope-from bryanc2000@insightbb.com) Received: from insightbb.com ([12.222.162.255]) by sccimhc02.insightbb.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20021016222348.IJGS1063.sccimhc02.insightbb.com@insightbb.com>; Wed, 16 Oct 2002 22:23:48 +0000 Date: Wed, 16 Oct 2002 17:27:31 -0500 From: Bryan Cassidy To: xxavi@myrealbox.com Cc: freebsd-questions Subject: Re: floppy not mounting Message-Id: <20021016172731.1e1181ed.bryanc2000@insightbb.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.10; i386-portbld-freebsd4.6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 16 Oct 2002 22:20:30 +0200 (CEST) xxavi@myrealbox.com wrote: > Hi, an idea for this problem:? > > [root@x]/root(101): mount /dev/fd0 /drives/fd > mount: /dev/fd0: Device not configured > > thanks Try this as root mount_msdos /dev/fd0 /mnt ----------------------------------------------------------------------- E-Mail: Bryan Cassidy Operating System: FreeBSD 4.6.2 GAIM: bsdsys Yahoo Messenger: bsdsys I have put alot of time in setting up my mail filters so please do not just Reply-To: Reply to the mailing lists. This is very annoying for me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15:24:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D59637B401 for ; Wed, 16 Oct 2002 15:24:27 -0700 (PDT) Received: from janeway.vonbek.dhs.org (bgm-24-94-58-56.stny.rr.com [24.94.58.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50A1343E42 for ; Wed, 16 Oct 2002 15:24:26 -0700 (PDT) (envelope-from syborg@stny.rr.com) Received: by janeway.vonbek.dhs.org (Postfix, from userid 507) id 6BB124FC9F; Wed, 16 Oct 2002 18:20:58 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by janeway.vonbek.dhs.org (Postfix) with ESMTP id 6688E4A0E; Wed, 16 Oct 2002 18:20:58 -0400 (EDT) Date: Wed, 16 Oct 2002 18:20:58 -0400 (EDT) From: John Bleichert X-X-Sender: syborg@janeway.vonbek.dhs.org Reply-To: John Bleichert To: Ms Carlsson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: /usr/libexec/ftpd In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 16 Oct 2002, Ms Carlsson wrote: > Date: Wed, 16 Oct 2002 23:56:10 +0200 > From: Ms Carlsson > To: freebsd-questions@FreeBSD.ORG > Subject: /usr/libexec/ftpd > > How do i set the anonymous homedir? > How do i set maximum of connections. > > Please helt, > > The manual pages does NOT tell me. > > /Miss > If you search the handbook page for ftp, there's an anonymous ftp section at the bottom. Sorry, can't paste it, I'm a green putty user... # John Bleichert # http://vonbek.dhs.org/latest.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15:32:18 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D90CC37B404 for ; Wed, 16 Oct 2002 15:32:16 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E6F243E42 for ; Wed, 16 Oct 2002 15:32:15 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9GMWDKg085243; Wed, 16 Oct 2002 23:32:13 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9GMW8mM085242; Wed, 16 Oct 2002 23:32:08 +0100 (BST) Date: Wed, 16 Oct 2002 23:32:08 +0100 From: Matthew Seaman To: Ms Carlsson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: /usr/libexec/ftpd Message-ID: <20021016223208.GB84463@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , Ms Carlsson , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-10.6 required=5.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_01_02,USER_AGENT, USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Oct 16, 2002 at 11:56:10PM +0200, Ms Carlsson wrote: > How do i set the anonymous homedir? You have to create a 'ftp' user if you're going to support anonymous ftp. Do that using the usual system tools, eg: pw groupadd -n ftp -g 21 pw useradd -n ftp -u 21 -c "Anonymous FTP" -d /home/ftp which sets the anonymouse ftp area to /home/ftp. Read and follow carefully the instructions in the ftpd(8) man page about how to set up that area --- if you don't do it right you can open up a security hole a mile wide. > How do i set maximum of connections. See ftpd.conf(5), ftpchroot(5) and ftpusers(5) man pages, but essentially you need to add: anonymous allow ftp allow to /etc/ftpusers, and add: limit guest 100 to /etc/ftpd.conf, which will limit you to 100 concurrent anonymous ftp users (Create the file if it doesn't exist already). Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH 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 16 15:38:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A7C837B401 for ; Wed, 16 Oct 2002 15:38:32 -0700 (PDT) Received: from web40811.mail.yahoo.com (web40811.mail.yahoo.com [66.218.78.188]) by mx1.FreeBSD.org (Postfix) with SMTP id 4803943E3B for ; Wed, 16 Oct 2002 15:38:32 -0700 (PDT) (envelope-from ejcerejo@yahoo.com) Message-ID: <20021016223832.33622.qmail@web40811.mail.yahoo.com> Received: from [65.129.38.182] by web40811.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 15:38:32 PDT Date: Wed, 16 Oct 2002 15:38:32 -0700 (PDT) From: "E. J. Cerejo" Subject: Re: US Robotics Performance Pro modem won't work To: Stephen Hovey , FreeBSD-questions In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I belive so but what configuration should I use? dmesg I get this for the modem: sio0: <3COM PCI FaxModem> port 0xa000-0xa007 irq 9 at device 4.0 on pci2 sio0: moving to sio4 sio4: type 16550A --- Stephen Hovey wrote: > > cuaa0 is com1, 1 is com2, what you are sayin on com3 > means com1s irq but a > diff port/hardware address.. > > you might haveta adjust your config and recompile > your kernel > > On Wed, 16 Oct 2002, E. J. Cerejo wrote: > > > I just built a pc and bought the above modem for > being > > 100% controller-based hardware modem but I can't > get > > it to work, it doesn't complain when I run the ppp > > -ddial command and it even creates tun0.pid file > but > > it doesn't dial at all and I think it has to do > with > > the com port. In windows shows that, it's using > com3 > > which tells me it has its own com ports in the > card > > and the question is what should I do to make it > work > > in FreeBSD 4.6.2? > > I've tried to change the ppp.conf file from cuaa0 > to > > cuaa1 and so on but nothing happens. I'm still > using > > the generic kernel. Thanks in advance > > > > __________________________________________________ > > Do you Yahoo!? > > Faith Hill - Exclusive Performances, Videos & More > > http://faith.yahoo.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message > > > __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 15:52:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB3C37B401 for ; Wed, 16 Oct 2002 15:52:18 -0700 (PDT) Received: from x.org (62-37-163-196.dialup.uni2.es [62.37.163.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B942543E77 for ; Wed, 16 Oct 2002 15:52:15 -0700 (PDT) (envelope-from root@x.org.org) Received: from x.org.org (localhost [127.0.0.1]) by x.org (8.12.6/8.12.3) with ESMTP id g9GKpJDN099656 for ; Wed, 16 Oct 2002 22:51:19 +0200 (CEST) (envelope-from root@x.org.org) Received: (from root@localhost) by x.org.org (8.12.6/8.12.3/Submit) id g9GKpGwG099654 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 22:51:16 +0200 (CEST) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20021016172731.1e1181ed.bryanc2000@insightbb.com> Date: Wed, 16 Oct 2002 22:51:15 +0200 (CEST) From: xxavi@myrealbox.com To: freebsd-questions@freebsd.org Subject: floppy not mounting Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 16-Oct-2002 Bryan Cassidy wrote: > On Wed, 16 Oct 2002 22:20:30 +0200 (CEST) > xxavi@myrealbox.com wrote: > >> Hi, an idea for this problem:? >> >> [root@x]/root(101): mount /dev/fd0 /drives/fd >> mount: /dev/fd0: Device not configured >> >> thanks > > Try this as root mount_msdos /dev/fd0 /mnt > Hi, it said some error: [root@x]/(105): mount_msdos /dev/fd0 /mnt mount_msdos: /dev/fd0: Device not configured thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 15:55:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC41437B401 for ; Wed, 16 Oct 2002 15:55:22 -0700 (PDT) Received: from web14701.mail.yahoo.com (web14701.mail.yahoo.com [216.136.224.118]) by mx1.FreeBSD.org (Postfix) with SMTP id 77A5443E75 for ; Wed, 16 Oct 2002 15:55:22 -0700 (PDT) (envelope-from wayneclubin@yahoo.com) Message-ID: <20021016225521.23532.qmail@web14701.mail.yahoo.com> Received: from [64.131.161.101] by web14701.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 15:55:21 PDT Date: Wed, 16 Oct 2002 15:55:21 -0700 (PDT) From: Wayne Lubin Subject: Re: floppy not mounting To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Wayne Lubin wrote: > > --- Bryan Cassidy wrote: > > On Wed, 16 Oct 2002 22:20:30 +0200 (CEST) > > xxavi@myrealbox.com wrote: > > > > > Hi, an idea for this problem:? > > > > > > [root@x]/root(101): mount /dev/fd0 /drives/fd > > > mount: /dev/fd0: Device not configured > > > > > > thanks > > > > Try this as root mount_msdos /dev/fd0 /mnt > > > I am having the exact problem as this guy, and I tried your suggestion mount_msdos /dev/fd0 /mnt as root and I still get /dev/fd0: Device not configured As I discussed in an earlier email that the fd0 device is not showing up on dmesg. Can it be that I burnt out the floppy drive and now at boot up the floppy is not being detected? Wayne __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 16: 0:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B9F237B401 for ; Wed, 16 Oct 2002 16:00:09 -0700 (PDT) Received: from x.org (62-37-163-196.dialup.uni2.es [62.37.163.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29CE843E77 for ; Wed, 16 Oct 2002 16:00:07 -0700 (PDT) (envelope-from root@x.org.org) Received: from x.org.org (localhost [127.0.0.1]) by x.org (8.12.6/8.12.3) with ESMTP id g9GKxBDN001652 for ; Wed, 16 Oct 2002 22:59:12 +0200 (CEST) (envelope-from root@x.org.org) Received: (from root@localhost) by x.org.org (8.12.6/8.12.3/Submit) id g9GKxAh5001605 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 22:59:10 +0200 (CEST) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20021016225521.23532.qmail@web14701.mail.yahoo.com> Date: Wed, 16 Oct 2002 22:59:09 +0200 (CEST) From: xxavi@myrealbox.com To: freebsd-questions@freebsd.org Subject: floppy not mounting Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 16-Oct-2002 Wayne Lubin wrote: > > I am having the exact problem as this guy, and I tried > your suggestion > > mount_msdos /dev/fd0 /mnt > > as root and I still get > > /dev/fd0: Device not configured > > As I discussed in an earlier email that the fd0 > device is not showing up on dmesg. Can it be that I > burnt out the floppy drive and now at boot up the > floppy is not being detected? > > Wayne > Hi Wayne, yes my dmesg not showing the fd* device. [root@x]/(108): dmesg | grep fd Using $PIR table, 7 entries at 0xc00fdf00 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold [root@x]/(109): To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16: 6:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FB5C37B401 for ; Wed, 16 Oct 2002 16:06:41 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B2F43E6E for ; Wed, 16 Oct 2002 16:06:41 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain ([12.242.158.67]) by sccrmhc02.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021016230640.LJVA12986.sccrmhc02.attbi.com@localhost.localdomain>; Wed, 16 Oct 2002 23:06:40 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id g9GN9WUW057525; Wed, 16 Oct 2002 16:09:32 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id g9GN9Qog057522; Wed, 16 Oct 2002 16:09:26 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: Jerry McAllister Cc: freebsd-questions@FreeBSD.ORG Subject: Re: using an extended partition for freebsd References: <200210162030.g9GKUia21490@clunix.cl.msu.edu> From: swear@attbi.com (Gary W. Swearingen) Date: 16 Oct 2002 16:09:26 -0700 In-Reply-To: <200210162030.g9GKUia21490@clunix.cl.msu.edu> Message-ID: Lines: 14 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Be careful there. The BSD OSes essentially do the same thing, except > > they allow four "extended" partitions and use different internal formats > > and names: > > primary partition -> slice > > secondary partition -> partition > > Sort of, but not quite. FreeBSD partitions divide up slices in to > nice neat separately mountable (if they are made in to file systems) > independantly addressable units. And IBM-style secondary partitions divide up an extended primary partition in the same way, so they can even be mounted in the Unix way under Linux and FreeBSD. It's the same concept, though FreeBSD's has more restrictions (at least with current software). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16: 7:15 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A01D37B401 for ; Wed, 16 Oct 2002 16:07:14 -0700 (PDT) Received: from sccimhc02.insightbb.com (sccimhc02.insightbb.com [63.240.76.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 102BF43E42 for ; Wed, 16 Oct 2002 16:07:14 -0700 (PDT) (envelope-from bryanc2000@insightbb.com) Received: from insightbb.com ([12.222.162.255]) by sccimhc02.insightbb.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20021016230713.IPGD1063.sccimhc02.insightbb.com@insightbb.com> for ; Wed, 16 Oct 2002 23:07:13 +0000 Date: Wed, 16 Oct 2002 18:10:56 -0500 From: Bryan Cassidy To: freebsd-questions Subject: Re: floppy not mounting Message-Id: <20021016181056.00695947.bryanc2000@insightbb.com> In-Reply-To: <20021016225521.23532.qmail@web14701.mail.yahoo.com> References: <20021016225521.23532.qmail@web14701.mail.yahoo.com> X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.10; i386-portbld-freebsd4.6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 16 Oct 2002 15:55:21 -0700 (PDT) Wayne Lubin wrote: > I am having the exact problem as this guy, and I tried > your suggestion > > mount_msdos /dev/fd0 /mnt > > as root and I still get > > /dev/fd0: Device not configured Try fdisk /dev/fd0 or fdisk fd0 cant remember which one then try mount_msdos /dev/fd0 /mnt ----------------------------------------------------------------------- E-Mail: Bryan Cassidy Operating System: FreeBSD 4.6.2 GAIM: bsdsys Yahoo Messenger: bsdsys I have put alot of time in setting up my mail filters so please do not just Reply-To: Reply to the mailing lists. This is very annoying for me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16: 8:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FAB937B401 for ; Wed, 16 Oct 2002 16:08:11 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 439AE43E42 for ; Wed, 16 Oct 2002 16:08:03 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9GN6Uf57373; Wed, 16 Oct 2002 18:06:30 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021016180628.0136e5e8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 16 Oct 2002 18:06:28 -0500 To: xxavi@myrealbox.com, freebsd-questions@FreeBSD.ORG From: "Jack L. Stone" Subject: Re: floppy not mounting In-Reply-To: References: <20021016172731.1e1181ed.bryanc2000@insightbb.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 10:51 PM 10.16.2002 +0200, xxavi@myrealbox.com wrote: > >On 16-Oct-2002 Bryan Cassidy wrote: >> On Wed, 16 Oct 2002 22:20:30 +0200 (CEST) >> xxavi@myrealbox.com wrote: >> >>> Hi, an idea for this problem:? >>> >>> [root@x]/root(101): mount /dev/fd0 /drives/fd >>> mount: /dev/fd0: Device not configured >>> >>> thanks >> >> Try this as root mount_msdos /dev/fd0 /mnt >> >Hi, it said some error: > >[root@x]/(105): mount_msdos /dev/fd0 /mnt >mount_msdos: /dev/fd0: Device not configured > >thanks. > Here's how mine works: mount -t msdos /dev/fd0 /mnt/floppy Of course, I have a directory "floppy" in /mnt Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 16 16:16:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D160437B401 for ; Wed, 16 Oct 2002 16:16:40 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id D953943E6A for ; Wed, 16 Oct 2002 16:16:39 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9GNGbf57479; Wed, 16 Oct 2002 18:16:37 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021016181635.0136e5e8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 16 Oct 2002 18:16:35 -0500 To: Bryan Cassidy , freebsd-questions From: "Jack L. Stone" Subject: Re: floppy not mounting In-Reply-To: <20021016181056.00695947.bryanc2000@insightbb.com> References: <20021016225521.23532.qmail@web14701.mail.yahoo.com> <20021016225521.23532.qmail@web14701.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 06:10 PM 10.16.2002 -0500, Bryan Cassidy wrote: >On Wed, 16 Oct 2002 15:55:21 -0700 (PDT) >Wayne Lubin wrote: > >> I am having the exact problem as this guy, and I tried >> your suggestion >> >> mount_msdos /dev/fd0 /mnt >> >> as root and I still get >> >> /dev/fd0: Device not configured > >Try fdisk /dev/fd0 or fdisk fd0 cant remember which one then try >mount_msdos /dev/fd0 /mnt > Well, if the fd0 isn't loading up at boot, ya can't mount it.... something wrong with the floppy. Check the usual cables and stuff.... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 16 16:25:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D3F637B401 for ; Wed, 16 Oct 2002 16:25:28 -0700 (PDT) Received: from FreeBSD.electrosoftsolutions.com (tpconnolly60.dsl.frii.net [216.17.144.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2057E43E6E for ; Wed, 16 Oct 2002 16:25:27 -0700 (PDT) (envelope-from tconnolly@electrosoftsolutions.com) Received: from electrosoftsolutions.com (localhost [127.0.0.1]) by FreeBSD.electrosoftsolutions.com (8.12.6/8.12.6) with ESMTP id g9GNaTpP000558 for ; Wed, 16 Oct 2002 17:36:29 -0600 (MDT) (envelope-from tconnolly@electrosoftsolutions.com) Message-ID: <3DADF7FD.F751FE38@electrosoftsolutions.com> Date: Wed, 16 Oct 2002 17:36:29 -0600 From: Thomas Connolly X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Root email name? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG How do I change the name of my email from Charlie Root? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:28:36 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8055637B4E9 for ; Wed, 16 Oct 2002 16:28:35 -0700 (PDT) Received: from server1.mlmspy.com (mlmspy.com [64.49.222.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAE3443E77 for ; Wed, 16 Oct 2002 16:28:34 -0700 (PDT) (envelope-from apache@server1.mlmspy.com) Received: (from apache@localhost) by server1.mlmspy.com (8.11.6/8.11.6) id g9GNSYe00794; Wed, 16 Oct 2002 18:28:34 -0500 Date: Wed, 16 Oct 2002 18:28:34 -0500 Message-Id: <200210162328.g9GNSYe00794@server1.mlmspy.com> To: questions@FreeBSD.org From: questions@FreeBSD.org Subject: Your remove request has been successfully processed! Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG We have processed your remove request successfully. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:28:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A457F37B401 for ; Wed, 16 Oct 2002 16:28:53 -0700 (PDT) Received: from casper.sri.com (casper.SRI.COM [128.18.243.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 0C2F443E4A for ; Wed, 16 Oct 2002 16:28:53 -0700 (PDT) (envelope-from hogsett@csl.sri.com) Received: (qmail 19657 invoked from network); 16 Oct 2002 23:32:39 -0000 Received: from localhost (HELO casper.SRI.COM) (127.0.0.1) by casper.sri.com with SMTP; 16 Oct 2002 23:32:39 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by casper.SRI.COM (NAVGW 2.5.1.18) with SMTP id M2002101616323804931 ; Wed, 16 Oct 2002 16:32:38 -0700 Received: from axp.csl.sri.com (axp.csl.sri.com [130.107.2.30]) by quarter.csl.sri.com (8.12.4/8.12.4) with ESMTP id g9GNSpnr008688; Wed, 16 Oct 2002 16:28:51 -0700 Received: from axp.csl.sri.com (localhost [127.0.0.1]) by axp.csl.sri.com (8.12.6/8.12.3) with ESMTP id g9GNSo1J039009; Wed, 16 Oct 2002 16:28:51 -0700 (PDT) (envelope-from hogsett@axp.csl.sri.com) Message-Id: <200210162328.g9GNSo1J039009@axp.csl.sri.com> To: Thomas Connolly Cc: FreeBSD Questions Subject: Re: Root email name? In-Reply-To: Message from Thomas Connolly of "Wed, 16 Oct 2002 17:36:29 MDT." <3DADF7FD.F751FE38@electrosoftsolutions.com> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Wed, 16 Oct 2002 16:28:50 -0700 From: Mike Hogsett Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Edit the gecos field in the /etc/password file > How do I change the name of my email from Charlie Root? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:33:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEAAD37B404 for ; Wed, 16 Oct 2002 16:33:10 -0700 (PDT) Received: from pintail.mail.pas.earthlink.net (pintail.mail.pas.earthlink.net [207.217.120.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2054643E75 for ; Wed, 16 Oct 2002 16:33:10 -0700 (PDT) (envelope-from jud@myrealbox.com) Received: from dialup-63.214.195.48.dial1.philadelphia1.level3.net ([63.214.195.48] helo=sparky) by pintail.mail.pas.earthlink.net with smtp (Exim 3.33 #1) id 181xer-0001iV-00; Wed, 16 Oct 2002 16:32:59 -0700 From: Jud To: jmd17@columbia.edu, Jerry McAllister Cc: freebsd-questions@FreeBSD.ORG Date: Wed, 16 Oct 2002 19:33:14 -0400 X-Priority: 3 (Normal) In-Reply-To: <200210162052.g9GKq9h21592@clunix.cl.msu.edu> Message-Id: Subject: Re: SYSINSTALL/FDISK MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Mailer: Opera 6.05 build 1140 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 10/16/2002 4:52:09 PM, Jerry McAllister wrote: >> >> Hi: >> >> Please read the whole post before replying. Yes, I know that >> DOS allows 4 PRIMARY Partitions and the history and purpose >> of an EXTENDED Partition. >> >> I am installing 4.7-REL on a PC with one PRIMARY and one >> EXTENDED partition. The PRIMARY partition is FAT and I have >> W98 there. The EXTENDED partition is empty as it was originally >> set up to be a place for FreeBSD. Unfortuneately, I now >> understand that FreeBSD needs to be in a PRIMARY partition. >> (EXTENDED was recommended by the disk's customer >> service rep was was familiar with Linux but not BSD) > >Sounds like you have all the answers. Why the question. > >> Also, SYSINSTALL's FDISK program says that one should put >> FreeBSD in a partition labeled as "unused". However, the >> "Change Type" command lets me change the EXTENDED >> partition to FreeBSD. I tried it and it seemed to work (I could >> even make it "bootable") but I decided not to proceed because >> I don't know what is going on behind the scenes: is it really >> changing the partition to PRIMARY or just making a label >> change (is that the same thing)? I don't want to wind up >> with a disk that is unuseable. And if it is making the >> change from EXTENDED to PRIMARY, is this something that >> the BIOS will be OK with? > >I doubt the BIOS will care. > >It will probably work. But, if you are concerned, get yourself a >copy of Partition Magic by Power Quest. It is available in most >places that sell PC and software, including Best Buy, Circuit City, etc. >Use it to clean up everything and leave the extra space not in your >first slice (DOS primary partition) as unused space. Then let >the fdisk in sysinstall turn that space in to a FreeBSD slice. [snip] A suggestion: Rather than buying Partition Magic for $60 or $70, use BootItNG from http://www.terabyteunlimited.com - shareware, 30-day free trial, $29 if you decide to buy it. Works as well or better than PM, has as many or more capabilities, very well documented, Just Works (tm). Something else you can do with BootItNG is to image your Win98 partition to backup media (got a CD burner?). Then in the vanishingly unlikely event you actually hose Win98, you can fdisk and format with a Win98 startup floppy and use BootItNG to image your Win98 setup right back onto your hard drive - just an extra layer of reassurance. In fact, if you just want to do the image backup, go ahead and use FreeBSD's fdisk, no reason to not to at that point. I'd try "converting" the extended partition first, just because if for any reason that doesn't work, you can then do the delete-extended/create-primary thing. Jud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:34:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 840C037B401 for ; Wed, 16 Oct 2002 16:34:11 -0700 (PDT) Received: from FreeBSD.electrosoftsolutions.com (tpconnolly60.dsl.frii.net [216.17.144.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DA0243E6E for ; Wed, 16 Oct 2002 16:34:10 -0700 (PDT) (envelope-from tconnolly@electrosoftsolutions.com) Received: from electrosoftsolutions.com (localhost [127.0.0.1]) by FreeBSD.electrosoftsolutions.com (8.12.6/8.12.6) with ESMTP id g9GNjDpP000574 for ; Wed, 16 Oct 2002 17:45:13 -0600 (MDT) (envelope-from tconnolly@electrosoftsolutions.com) Message-ID: <3DADFA09.EAF24CCA@electrosoftsolutions.com> Date: Wed, 16 Oct 2002 17:45:13 -0600 From: Thomas Connolly X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: KDevelop & qt23 ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm trying to install KDevelop on my system and it requires qt23. There seems to be an issue with the makefile for that build. I've heard there was a patch. Does anyone know where I can get this patch. I have qt30 already installed, will they work side-byside? Has anyone successfully installed KDevelop on FreeBSD 4.7 that could help me with this? Sorry for all the newbie questions but they say this is the place to ask. Tom C. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:40:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BFEE37B401 for ; Wed, 16 Oct 2002 16:40:40 -0700 (PDT) Received: from web10904.mail.yahoo.com (web10904.mail.yahoo.com [216.136.131.40]) by mx1.FreeBSD.org (Postfix) with SMTP id BD18843E6A for ; Wed, 16 Oct 2002 16:40:39 -0700 (PDT) (envelope-from ranajitray2002@yahoo.com) Message-ID: <20021016234037.759.qmail@web10904.mail.yahoo.com> Received: from [194.117.133.118] by web10904.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 16:40:37 PDT Date: Wed, 16 Oct 2002 16:40:37 -0700 (PDT) From: Ranajit Ray Subject: Question about FreeBSD 4.6.1-RELEASE To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm not very familiar with administering FreeBSD (I am quite familiar with Solaris, Debian and Redhat) but I need to manage a FreeBSD server for a few days, and need some (emergency!) assistance :) I've basically been handed a freshly installed FreeBSD box. This is -- # uname -a FreeBSD yyy.zzz 4.6.1-RELEASE FreeBSD 4.6.1-RELEASE #0: Sun Jul 28 02:04:22 EDT 2002 xxxx@yyyy.zzz /usr/src/sys/compile/www i386 Now, 4.6.1-RELEASE isn't mentioned _anywhere_ on this page: . Is this a private build? Also, this is running some old packages, like apache-1.3.24_7 (which seems to be actually v1.3.26), and OpenSSH_2.9. But since apache has some open holes in versions prior to 1.3.27, would patches for these have been backported to the 1.2.24_7 package (like how Debian backports Potato bugixes)? Or is there a place I can get updated packages for 4.6.1-RELEASE? Finally, would you say this system is ready of being connected to the public internet, or should it be upgraded to something newer? Thanks in advance /Ranajit __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 16:52:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B906837B401 for ; Wed, 16 Oct 2002 16:52:52 -0700 (PDT) Received: from rhymer.cogsci.ed.ac.uk (rhymer.cogsci.ed.ac.uk [129.215.144.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7EC243E7B for ; Wed, 16 Oct 2002 16:52:50 -0700 (PDT) (envelope-from richard@cogsci.ed.ac.uk) Received: from sorley.cogsci.ed.ac.uk (sorley [129.215.144.53]) by rhymer.cogsci.ed.ac.uk (8.9.3/8.9.3) with ESMTP id AAA14594; Thu, 17 Oct 2002 00:52:32 +0100 (BST) Received: (from richard@localhost) by sorley.cogsci.ed.ac.uk (8.9.3+Sun/8.9.3) id AAA11038; Thu, 17 Oct 2002 00:52:32 +0100 (BST) Date: Thu, 17 Oct 2002 00:52:32 +0100 (BST) Message-Id: <200210162352.AAA11038@sorley.cogsci.ed.ac.uk> From: Richard Tobin Subject: Re: How to upgrade from 4.3 to 4.7 To: "Alvaro Rosales R." , freebsd-questions@FreeBSD.ORG In-Reply-To: Alvaro Rosales R.'s message of Wed, 16 Oct 2002 15:31:26 -0500 Organization: just say no Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Hi fellows , can you tell me how can I upgrade my FreeBSD release 4.3 > to 4.7? . Someone else has described how to do it from source, but the easy way is to boot from a 4.7 installation CD and select the "upgrade" option. If you do this I think you'll probably find that sendmail stops working. You will need to copy (or merge) /etc/upgrade/mail to /etc/mail. -- Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:55:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3A8C37B401 for ; Wed, 16 Oct 2002 16:55:23 -0700 (PDT) Received: from ws4-4.us4.outblaze.com (205-158-62-105.outblaze.com [205.158.62.105]) by mx1.FreeBSD.org (Postfix) with SMTP id 2E0DB43E4A for ; Wed, 16 Oct 2002 16:55:23 -0700 (PDT) (envelope-from rafter@linuxmail.org) Received: (qmail 8081 invoked by uid 1001); 16 Oct 2002 23:55:22 -0000 Message-ID: <20021016235522.8080.qmail@linuxmail.org> Content-Type: text/plain; charset="iso-8859-15" Content-Disposition: inline Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Mailer: MIME-tools 5.41 (Entity 5.404) Received: from [213.237.112.252] by ws4-4.us4.outblaze.com with http for rafter@linuxmail.org; Thu, 17 Oct 2002 07:55:22 +0800 From: "Rafter Man" To: freebsd-questions@freebsd.org Date: Thu, 17 Oct 2002 07:55:22 +0800 Subject: Installing XFree and gnome X-Originating-Ip: 213.237.112.252 X-Originating-Server: ws4-4.us4.outblaze.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey Subcribers I have installed FreeBSD 4.7 on my com (mini installation) and now want to install X window and Gnome. So I run /stand/sysinstall and chose: Configure/Desktop/Gnome + sawfish and it starts downloading, but here comes the problem. It downloads alot, things I haven't neven asked for like: Anjuta Glimmer Gimp and so on. Why is it installing all that and how can I stop it? By the way, I am not on the list, so please CC to me. Best regards Rafter -- Get your free email from www.linuxmail.org Powered by Outblaze To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:57:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4664637B401 for ; Wed, 16 Oct 2002 16:57:42 -0700 (PDT) Received: from mail.senets.com (ns2.biltmorecomm.com [216.91.87.249]) by mx1.FreeBSD.org (Postfix) with SMTP id 9C9B943E75 for ; Wed, 16 Oct 2002 16:57:41 -0700 (PDT) (envelope-from tomoki@makainet.net) Received: (qmail 13366 invoked from network); 16 Oct 2002 23:46:27 -0000 Received: from unknown (HELO mail.makainet.net) ([64.243.10.27]) (envelope-sender ) by ns2.biltmorecomm.com (qmail-ldap-1.03) with SMTP for ; 16 Oct 2002 23:46:27 -0000 Received: from rogue.makainet.net ([10.0.0.78]) (AUTH: LOGIN tomoki, ) by mail.makainet.net with esmtp; Wed, 16 Oct 2002 19:51:29 -0400 Content-Type: text/plain; charset="us-ascii" From: Tomoki Taniguchi To: freebsd-questions@freebsd.org Subject: video to animated gif Date: Wed, 16 Oct 2002 19:49:04 -0400 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210161949.04594.tomoki@makainet.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Anyone know of a commandline program(s) to convert video files to animate= d=20 gifs... I am making an picture/video album to website. I upload via cgi= =2E I=20 have it creating thumbnails automatically for images. I want to create=20 animated gifs for thumbnails for videos... =20 TIA, Tomoki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 16:59: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F5CC37B401 for ; Wed, 16 Oct 2002 16:59:03 -0700 (PDT) Received: from web13609.mail.yahoo.com (web13609.mail.yahoo.com [216.136.174.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 51CB843E6A for ; Wed, 16 Oct 2002 16:59:03 -0700 (PDT) (envelope-from rarmente@yahoo.com) Message-ID: <20021016235902.84621.qmail@web13609.mail.yahoo.com> Received: from [155.246.1.106] by web13609.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 16:59:02 PDT Date: Wed, 16 Oct 2002 16:59:02 -0700 (PDT) From: Roberto Armenteros Subject: can anybody send me a sample aide.conf configuration file for reference? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I dont have a lot of time to get this right, since I will be applying it to my company. I would really appreciate if somebody sends me a sample aide.conf file that does the major checking "checksums, permisions, in /etc/; /usr/; /var/ etc... I would really appreciate your help, Rob. __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 16:59:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E7537B401 for ; Wed, 16 Oct 2002 16:59:55 -0700 (PDT) Received: from vectors.cx (manifold.vectors.cx [64.163.147.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD4FE43E88 for ; Wed, 16 Oct 2002 16:59:54 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: from vectors.cx (f54f5b3a4dc44861fc2b8296f8d60db7@localhost [127.0.0.1]) by vectors.cx (8.12.6/8.12.4) with ESMTP id g9H01Fho008176; Wed, 16 Oct 2002 17:01:16 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: (from monkey@localhost) by vectors.cx (8.12.6/8.12.6/Submit) id g9H01F9E008175; Wed, 16 Oct 2002 17:01:15 -0700 (PDT) (envelope-from monkey) Date: Wed, 16 Oct 2002 17:01:15 -0700 From: Adam Weinberger To: Rafter Man Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Installing XFree and gnome Message-ID: <20021017000115.GA8122@vectors.cx> References: <20021016235522.8080.qmail@linuxmail.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <20021016235522.8080.qmail@linuxmail.org> X-Editor: Vim 6.1 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-PGP-Key: http://www.vectors.cx/pgp.key.txt X-URL: http://www.vectors.cx http://www.crackula.com User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Amongst the basic X libs and GNOME support, you're also getting the "gnome-fifth-toe" meta-port, which installs a whole slew of useful apps - depending upon your definition of "useful." If you wish to avoid installing all these, you can go navigate through the package tree and install x11/gnome. that is also a meta-port, but it only installs the basic stuff necessary for a gnome desktop. X will get installed automatically, but you'll need to install sawfish yourself. If you install the x11/gnome2 port, you get sawfish with it no additional charge. Or you could just let it install all the other apps and then delete them when it's finished ::) - -Adam >> (10.16.2002 @ 1655 PST): Rafter Man said, in 0.6K: << > Hey Subcribers > > I have installed FreeBSD 4.7 on my com (mini installation) and now want to install X window and Gnome. So I run /stand/sysinstall and chose: > Configure/Desktop/Gnome + sawfish and it starts downloading, but here comes the problem. It downloads alot, things I haven't neven asked for like: > Anjuta > Glimmer > Gimp > and so on. > Why is it installing all that and how can I stop it? > > By the way, I am not on the list, so please CC to me. > > Best regards > Rafter > -- > Get your free email from www.linuxmail.org > > > Powered by Outblaze > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > >> end of "Installing XFree and gnome" from Rafter Man << - -- Adam Weinberger adam@vectors.cx adamw@freebsd.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE9rf3Lo8KM2ULHQ/0RApmZAJ9IO7HD2+DSEJNd/1qjOy9W7EHVZwCg0jkL J467g0OK9Ppus7kd5lcANzs= =qgqw -----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 Wed Oct 16 17: 1:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3C1937B401 for ; Wed, 16 Oct 2002 17:01:38 -0700 (PDT) Received: from pc146113.hknet.com (pc146113.hknet.com [202.67.146.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B5D43E7B for ; Wed, 16 Oct 2002 17:01:34 -0700 (PDT) (envelope-from ames@hknet.com) Received: from hknet.com (pc146113 [127.0.0.1]) by pc146113.hknet.com (8.11.6/8.11.6) with ESMTP id g9GNoqb20215 for ; Thu, 17 Oct 2002 07:50:52 +0800 Message-ID: <3DADFB5B.7050009@hknet.com> Date: Thu, 17 Oct 2002 07:50:51 +0800 From: ames siu User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2a) Gecko/20020910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Problem on ipnat Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear, May I know where should I ask about ipnat? I've suffer on it for over 2 weeks already..... Thanks & Rgds, ames To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 17: 2: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF89437B401 for ; Wed, 16 Oct 2002 17:02:04 -0700 (PDT) Received: from vectors.cx (manifold.vectors.cx [64.163.147.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6991343E42 for ; Wed, 16 Oct 2002 17:02:04 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: from vectors.cx (992f32b49b37cd742515ea1c0ae2c715@localhost [127.0.0.1]) by vectors.cx (8.12.6/8.12.4) with ESMTP id g9H03Pho008199; Wed, 16 Oct 2002 17:03:25 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: (from monkey@localhost) by vectors.cx (8.12.6/8.12.6/Submit) id g9H03Pwf008198; Wed, 16 Oct 2002 17:03:25 -0700 (PDT) (envelope-from monkey) Date: Wed, 16 Oct 2002 17:03:25 -0700 From: Adam Weinberger To: Tomoki Taniguchi Cc: freebsd-questions@FreeBSD.ORG Subject: Re: video to animated gif Message-ID: <20021017000325.GB8122@vectors.cx> References: <200210161949.04594.tomoki@makainet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <200210161949.04594.tomoki@makainet.net> X-Editor: Vim 6.1 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-PGP-Key: http://www.vectors.cx/pgp.key.txt X-URL: http://www.vectors.cx http://www.crackula.com User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Check out /usr/ports/graphics/mplayer. Mplayer comes with a nifty program called mencoder. Mencoder will convert a file to, among other things, an animated PNG thingy. Which you can either then convert to gif or just leave it as PNG, which is gooder anyhow ::). - -Adam >> (10.16.2002 @ 1649 PST): Tomoki Taniguchi said, in 0.4K: << > Anyone know of a commandline program(s) to convert video files to animated > gifs... I am making an picture/video album to website. I upload via cgi. I > have it creating thumbnails automatically for images. I want to create > animated gifs for thumbnails for videos... > > TIA, > Tomoki > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > >> end of "video to animated gif" from Tomoki Taniguchi << - -- Adam Weinberger adam@vectors.cx adamw@freebsd.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE9rf5No8KM2ULHQ/0RAgV1AJ4pIr95hyA2KYtdoUKnybVEau8zTACfVvVH 3hvSx6GUNTWiYTK1PwzXP1A= =kqpm -----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 Wed Oct 16 17: 7:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13AF637B404 for ; Wed, 16 Oct 2002 17:07:09 -0700 (PDT) Received: from lightning.adam.com.au (lightning.adam.com.au [203.2.124.20]) by mx1.FreeBSD.org (Postfix) with SMTP id AF15E43E88 for ; Wed, 16 Oct 2002 17:07:07 -0700 (PDT) (envelope-from lloy0076@adam.com.au) Received: (qmail 97438 invoked from network); 17 Oct 2002 00:07:05 -0000 Received: from 202-6-128-222.ip.adam.com.au (HELO linux.david.net.au) (202.6.128.222) by eden.adam.com.au with SMTP; 17 Oct 2002 00:07:05 -0000 Date: Thu, 17 Oct 2002 09:52:17 +0930 From: David Lloyd To: questions@FreeBSD.ORG Cc: postmaster@FreeBSD.ORG Subject: Re: Your remove request has been successfully processed! Message-Id: <20021017095217.36a18764.lloy0076@adam.com.au> In-Reply-To: <200210162328.g9GNSYe00794@server1.mlmspy.com> References: <200210162328.g9GNSYe00794@server1.mlmspy.com> X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.9; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, > We have processed your remove request successfully. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Why am I seeing this? -- The Linux C Programming Lists: * http://lists.linux.org.au/listinfo/linuxcprogramming/ The Linux C++ Programming Lists: * http://lists.linux.org.au/listinfo/tuxcpprogramming/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 17:19:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9115E37B401 for ; Wed, 16 Oct 2002 17:19:31 -0700 (PDT) Received: from web14703.mail.yahoo.com (web14703.mail.yahoo.com [216.136.224.120]) by mx1.FreeBSD.org (Postfix) with SMTP id 6185843E42 for ; Wed, 16 Oct 2002 17:19:31 -0700 (PDT) (envelope-from wayneclubin@yahoo.com) Message-ID: <20021017001250.27214.qmail@web14703.mail.yahoo.com> Received: from [64.131.161.101] by web14703.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 17:12:50 PDT Date: Wed, 16 Oct 2002 17:12:50 -0700 (PDT) From: Wayne Lubin Subject: A curious dmesg output entry To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have this line in my dmesg output pci0: (vendor=0x1106, dev=0x3057) at 7.4 but the only cards that I have is one ethernet pci card, and my video card that is in the AGP slot. And they are being properly detected. Can this be some functionality built into the mother bord that wants to access the pci buss? Because all of my pci cards are physicaly plugged into the pci slots are accounted for. Thanks, Wayne __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 17:36:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB24837B401 for ; Wed, 16 Oct 2002 17:36:56 -0700 (PDT) Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8547443E75 for ; Wed, 16 Oct 2002 17:36:55 -0700 (PDT) (envelope-from bastill@sa.apana.org.au) Received: from BAPhD (dialup-8.pasa.apana.org.au [203.14.158.137]) by tierzero.apana.org.au (8.11.1/8.11.1) with ESMTP id g9H0aap00766; Thu, 17 Oct 2002 10:06:36 +0930 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: "Hartmann, O." , Andy Knapp Subject: Re: microuptime() went backwards, FreeBSD 4.7-RELEASE Date: Wed, 16 Oct 2002 16:55:12 +0930 User-Agent: KMail/1.4.3 Cc: "'Tom Snell'" , References: <20021015204904.L77350-100000@klima.physik.uni-mainz.de> In-Reply-To: <20021015204904.L77350-100000@klima.physik.uni-mainz.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200210161655.12179.bastill@sa.apana.org.au> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday 16 October 2002 04:20, Hartmann, O. wrote: > On Tue, 15 Oct 2002, Andy Knapp wrote: > > No, on our servers I disabled APM by default because it triggered trouble > in the past on several SMP machines. And why APM on every-time-up servers? > No, definitely no APM facilities in kernel or BIOS enabled! > > :>are there any references to apm in it? seems the default reference, > :>which says to disable it, doesn't work correctly... This is getting to be a FAQ. Disabled isn't the same as not present. APM must be not present in the kernel if microuptime backwards is to be avoided. ie recompile with the apm lines REMOVED ALTOGETHER in your config. I thought this problem was confined to Athlon CPUs on VIA chipset mobos - apparently not so. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 17:42:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B118E37B401 for ; Wed, 16 Oct 2002 17:42:11 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id C54B743E88 for ; Wed, 16 Oct 2002 17:42:10 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9H0g8f58658; Wed, 16 Oct 2002 19:42:08 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021016194207.0136e5e8@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 16 Oct 2002 19:42:07 -0500 To: Wayne Lubin , freebsd-questions@FreeBSD.ORG From: "Jack L. Stone" Subject: Re: A curious dmesg output entry In-Reply-To: <20021017001250.27214.qmail@web14703.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 05:12 PM 10.16.2002 -0700, Wayne Lubin wrote: >Hi, > >I have this line in my dmesg output > >pci0: (vendor=0x1106, dev=0x3057) at >7.4 > >but the only cards that I have is one ethernet pci >card, and my video card that is in the AGP slot. And >they are being properly detected. > >Can this be some functionality built >into the mother bord that wants to access the pci >buss? Because all of my pci cards are physicaly >plugged into the pci slots are accounted for. > >Thanks, > >Wayne > Most likely it is an onboard card.... consult your BIOS (or your MB manual) and look for an enabled feature, such as audio or video..... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.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 16 17:51:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39CC637B401 for ; Wed, 16 Oct 2002 17:51:38 -0700 (PDT) Received: from adsl-64-174-159-18.dsl.sntc01.pacbell.net (adsl-64-174-159-18.dsl.sntc01.pacbell.net [64.174.159.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id A567743E88 for ; Wed, 16 Oct 2002 17:51:37 -0700 (PDT) (envelope-from bmk@adsl-64-174-159-18.dsl.sntc01.pacbell.net) Received: from adsl-64-174-159-18.dsl.sntc01.pacbell.net (localhost [127.0.0.1]) by adsl-64-174-159-18.dsl.sntc01.pacbell.net (8.12.6/8.12.6) with ESMTP id g9H0pbow000489; Wed, 16 Oct 2002 17:51:37 -0700 (PDT) (envelope-from bmk@adsl-64-174-159-18.dsl.sntc01.pacbell.net) Message-Id: <200210170051.g9H0pbow000489@adsl-64-174-159-18.dsl.sntc01.pacbell.net> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Wayne Lubin Cc: freebsd-questions@FreeBSD.ORG, bmk@adsl-64-174-159-18.dsl.sntc01.pacbell.net Subject: Re: A curious dmesg output entry In-Reply-To: Message from Wayne Lubin of "Wed, 16 Oct 2002 17:12:50 PDT." <20021017001250.27214.qmail@web14703.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 16 Oct 2002 17:51:37 -0700 From: "Brian M. Kincaid" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Have a look at the PCI vendor list at: http://www.yourvote.com/pci/ Your card is made by VIA Technologies Inc 1045 Mission Court Fremont CA 94539 510-683-3300 Chip Number: VT82C686A Description: ACPI Power Management Controller Brian In message <20021017001250.27214.qmail@web14703.mail.yahoo.com>, Wayne Lubin wr ites: >Hi, > >I have this line in my dmesg output > >pci0: (vendor=0x1106, dev=0x3057) at >7.4 > >but the only cards that I have is one ethernet pci >card, and my video card that is in the AGP slot. And >they are being properly detected. > >Can this be some functionality built >into the mother bord that wants to access the pci >buss? Because all of my pci cards are physicaly >plugged into the pci slots are accounted for. > >Thanks, > >Wayne > >__________________________________________________ >Do you Yahoo!? >Faith Hill - Exclusive Performances, Videos & More >http://faith.yahoo.com > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message -- Brian M. Kincaid PGP Key: http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0x33656401 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 17:54:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0607737B401 for ; Wed, 16 Oct 2002 17:54:12 -0700 (PDT) Received: from ns1.centurysolutions.net (csninternational.biz [66.181.168.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AACB43E91 for ; Wed, 16 Oct 2002 17:54:11 -0700 (PDT) (envelope-from scott@codefaction.com) Received: from lappy.com (rozohw@216.187.75.237.novustelecom.net [216.187.75.237]) (authenticated (0 bits)) by ns1.centurysolutions.net (8.12.6/8.11.6) with ESMTP id g9H0rwuC024114 for ; Wed, 16 Oct 2002 20:54:00 -0400 (EDT) (envelope-from scott@codefaction.com) Date: Wed, 16 Oct 2002 17:54:02 -0700 From: Scott McCoy To: freebsd-questions@freebsd.org Subject: Linksys Network Everywhere PCMCIA Message-ID: <20021017005402.GA255@lappy.novustelecom.net> Reply-To: scott@codefaction.com Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.4.1 Lines: 31 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm having trouble with this card card "Network Everywhere" "Fast Ethernet 10/100 PC Card" config auto "ed" ? 0x80000 insert /etc/pccard_ether $device start remove /etc/pccard_ether $device stop The trouble I'm having is not a hard-cold error, but just its performance in FreeBSD. I cant get speeds higher than 400kbit, and rarely even get that. I have win2k on the same machine, and when I boot to Win2k and test the card I get between 6 and 8mbit/s. Theres no errors however I did notice that ukphy0 calls the card Generic, which I am not familiar with as my my old card was neither miibus nor ed*. dmesg info reguarding the card: ed0 at port 0x300-0x31f irq 9 flags 0x80000 slot 0 on pccard0 ed0: address 00:e0:98:77:25:85, type Linksys (16 bit) ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto lappy# uname -a FreeBSD lappy.com 4.7-RELEASE FreeBSD 4.7-RELEASE #8: Wed Oct 16 05:09:14 PDT 2002 tag@lappy.com:/usr/obj/usr/src/sys/lappy i386 Any help would be appriciated, I really cant handle this (I cant even stream 128kb audio at this speed) -Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 18: 6:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C216037B401 for ; Wed, 16 Oct 2002 18:06:22 -0700 (PDT) Received: from web14702.mail.yahoo.com (web14702.mail.yahoo.com [216.136.224.119]) by mx1.FreeBSD.org (Postfix) with SMTP id 3184C43E88 for ; Wed, 16 Oct 2002 18:06:22 -0700 (PDT) (envelope-from wayneclubin@yahoo.com) Message-ID: <20021017010515.87662.qmail@web14702.mail.yahoo.com> Received: from [64.131.161.101] by web14702.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 18:05:15 PDT Date: Wed, 16 Oct 2002 18:05:15 -0700 (PDT) From: Wayne Lubin Subject: Re: A curious dmesg output entry To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG So does that means that this ACPI Power Management Controller is not supported by freebsd? Or does it mean that I need to compile the corresponding device driver into the kernel and then it will be recognized by freebsd? > > > > > --- "Brian M. Kincaid" > > wrote: > > > > > > Hi, > > > > Have a look at the PCI vendor list at: > > > > http://www.yourvote.com/pci/ > > > > Your card is made by > > VIA Technologies Inc > > 1045 Mission Court > > Fremont CA 94539 > > 510-683-3300 > > > > Chip Number: VT82C686A > > Description: ACPI Power Management Controller > > > > > > Brian > > > > > > > > > > In message > > > <20021017001250.27214.qmail@web14703.mail.yahoo.com>, > > Wayne Lubin wr > > ites: > > >Hi, > > > > > >I have this line in my dmesg output > > > > > >pci0: (vendor=0x1106, dev=0x3057) > at > > >7.4 > > > > > >but the only cards that I have is one ethernet > pci > > >card, and my video card that is in the AGP slot. > > And > > >they are being properly detected. > > > > > >Can this be some functionality > built > > >into the mother bord that wants to access the pci > > >buss? Because all of my pci cards are physicaly > > >plugged into the pci slots are accounted for. > > > > > >Thanks, > > > > > >Wayne > > > > > > >__________________________________________________ > > >Do you Yahoo!? > > >Faith Hill - Exclusive Performances, Videos & > More > > >http://faith.yahoo.com > > > > > >To Unsubscribe: send mail to > majordomo@FreeBSD.org > > >with "unsubscribe freebsd-questions" in the body > of > > the message > > > > -- > > Brian M. Kincaid > > PGP Key: > > > http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0x33656401 > > > > > > > __________________________________________________ > Do you Yahoo!? > Faith Hill - Exclusive Performances, Videos & More > http://faith.yahoo.com > __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 18: 9:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72C8E37B401; Wed, 16 Oct 2002 18:09:11 -0700 (PDT) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id B82D043E8A; Wed, 16 Oct 2002 18:09:10 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.6/8.12.6) with ESMTP id g9H18e01049450; Wed, 16 Oct 2002 21:08:40 -0400 (EDT) (envelope-from marcus@marcuscom.com) Subject: Re: Installing XFree and gnome From: Joe Marcus Clarke To: Adam Weinberger Cc: Rafter Man , FreeBSD User Questions List In-Reply-To: <20021017000115.GA8122@vectors.cx> References: <20021016235522.8080.qmail@linuxmail.org> <20021017000115.GA8122@vectors.cx> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-aTIqVfva0yfJ+61MS8bF" X-Mailer: Ximian Evolution 1.0.8 Date: 16 Oct 2002 21:09:59 -0400 Message-Id: <1034816999.41268.8.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Spam-Status: No, hits=-8.2 required=5.0 tests=AWL,IN_REP_TO,PGP_SIGNATURE_2,QUOTED_EMAIL_TEXT,REFERENCES, SPAM_PHRASE_02_03 version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-aTIqVfva0yfJ+61MS8bF Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2002-10-16 at 20:01, Adam Weinberger wrote: > If you wish to avoid installing all these, you can go navigate through > the package tree and install x11/gnome. that is also a meta-port, but it > only installs the basic stuff necessary for a gnome desktop. X will get > installed automatically, but you'll need to install sawfish yourself. Actually, sawfish is installed as part of x11/gnome. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-aTIqVfva0yfJ+61MS8bF Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQA9rg3nb2iPiv4Uz4cRAi1yAJwIcl+Urd+5pafQOQQHq4rdyRfQ2gCeIV0O 7jKxdle5lKHajo//ID1Y5q0= =u0Vf -----END PGP SIGNATURE----- --=-aTIqVfva0yfJ+61MS8bF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 18:15:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2770337B401 for ; Wed, 16 Oct 2002 18:15:22 -0700 (PDT) Received: from email.franklin.edu (vannevar.franklin.edu [199.218.4.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8298843E6A for ; Wed, 16 Oct 2002 18:15:21 -0700 (PDT) (envelope-from haney01@email.franklin.edu) Received: from email.franklin.edu ([199.218.4.132]) by email.franklin.edu ; Wed, 16 Oct 2002 21:15:18 -0400 From: "Mark Haney" Reply-To: haney01@email.franklin.edu To: ejcerejo@yahoo.com, FreeBSD-questions@freebsd.org X-CC-Sender: haney01@email.franklin.edu Date: Wed, 16 Oct 2002 21:15:18 -0400 Subject: Re: US Robotics Performance Pro modem won't work X-Mailer: CWMail Web to Mail Gateway 2.7p, http://netwinsite.com/top_mail.htm Message-id: <3dae0f26.570e.0@email.franklin.edu> X-User-Info: 63.113.39.105 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have the exact same modem, and it worked with the generic kernel when I changed my device in ppp.conf to /dev/cuaa4. Mark >I just built a pc and bought the above modem for being >100% controller-based hardware modem but I can't get >it to work, it doesn't complain when I run the ppp >-ddial command and it even creates tun0.pid file but >it doesn't dial at all and I think it has to do with >the com port. In windows shows that, it's using com3 >which tells me it has its own com ports in the card >and the question is what should I do to make it work >in FreeBSD 4.6.2? >I've tried to change the ppp.conf file from cuaa0 to >cuaa1 and so on but nothing happens. I'm still using >the generic kernel. Thanks in advance > >__________________________________________________ >Do you Yahoo!? >Faith Hill - Exclusive Performances, Videos & More >http://faith.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 16 18:20:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EA3C37B401 for ; Wed, 16 Oct 2002 18:20:36 -0700 (PDT) Received: from dns2.digitalglobe.com (dns2.digitalglobe.com [205.166.175.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD7F243E8A for ; Wed, 16 Oct 2002 18:20:32 -0700 (PDT) (envelope-from noreply@nterprise.net) Received: from taliacyn.digitalglobe.com (taliacyn.digitalglobe.com [10.10.11.19]) by dns2.digitalglobe.com (8.12.5/8.12.5) with ESMTP id g9H1KQVs057115; Wed, 16 Oct 2002 19:20:27 -0600 (MDT) (envelope-from noreply@nterprise.net) Subject: Re: OpenSSH 3.5 in ports yet? From: John-David Childs To: Lord Raiden Cc: questions@FreeBSD.ORG In-Reply-To: <4.2.0.58.20021016021342.00a40220@pop.voyager.net> References: <200210160220.g9G2Kqj49096@mail6.mx.voyager.net> <200210160220.g9G2Kqj49096@mail6.mx.voyager.net> <4.2.0.58.20021016021342.00a40220@pop.voyager.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 17 Oct 2002 01:20:26 +0000 Message-Id: <1034817627.4068.157.camel@taliacyn.digitalglobe.com> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 2002-10-16 at 06:15, Lord Raiden wrote: > > >The ink on the announcement isn't dry yet and you're already asking > >why the world hasn't caught up yet. > > Ok. So I take it that this is a "If you want to" type > upgrade. Sorry for not being in the loop. I've been so busy lately that I > haven't had time to research much of anything. Sorry. > > >You should know this if you're so worried about it. > > Again. too busy. > > >Last time there was a must-have upgrade they announced it as a > >must-have upgrade. > > Ok. Just curious cause I didn't see the "must have" side of it, > so I wasn't sure if it was something I missed or it just wasn't an issue. Obviously, you heard about OpenSSH 3.5 from somewhere...a Google search would bring up the home page (if you didn't already know it), and 30 seconds later you would have found the release announcement in the openssh-unix-announce mailing list archive which detailed the changes between 3.4 and 3.5. It really SUCKS, however, that they don't have a CHANGES or Release Notes file in the distribution, or a link to the announcement available directly from the home page. -- John-David Childs (JC612) Enterprise Internet Solutions Systems Administration http://www.nterprise.net & Network Engineering 9616 Pecos St Thornton CO 80260 Replies to this address are /dev/nulled. Whois is your friend. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 18:22:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E9B937B401 for ; Wed, 16 Oct 2002 18:22:23 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE98443E7B for ; Wed, 16 Oct 2002 18:22:22 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id SAA18498; Wed, 16 Oct 2002 18:22:18 -0700 Message-ID: <3DAE10C9.3070908@owt.com> Date: Wed, 16 Oct 2002 18:22:17 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Thomas Connolly Cc: FreeBSD Questions Subject: Re: KDevelop & qt23 ? References: <3DADFA09.EAF24CCA@electrosoftsolutions.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thomas Connolly wrote: > I'm trying to install KDevelop on my system and it requires qt23. There > seems to be an issue with the makefile for that build. I've heard there > was a patch. Does anyone know where I can get this patch. I have qt30 > already installed, will they work side-byside? Has anyone successfully > installed KDevelop on FreeBSD 4.7 that could help me with this? If you have KDE-3.0.4, qt-3.0.5, kdevelop-2.1.3, and XFree86-4.2.x installed, they will all work together. It sounds like you have a lot of no longer supported stuff installed. Kent > > Sorry for all the newbie questions but they say this is the place to > ask. > > Tom C. -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 18:29:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F11937B401 for ; Wed, 16 Oct 2002 18:29:25 -0700 (PDT) Received: from 1nova.com (heorot.1nova.com [63.105.24.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9ADD43E9C for ; Wed, 16 Oct 2002 18:29:24 -0700 (PDT) (envelope-from hamellr@heorot.1nova.com) Received: by 1nova.com (Postfix, from userid 1000) id 0729018FA; Wed, 16 Oct 2002 19:32:20 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by 1nova.com (Postfix) with ESMTP id DF8C718F8 for ; Wed, 16 Oct 2002 19:32:20 -0700 (PDT) Date: Wed, 16 Oct 2002 19:32:20 -0700 (PDT) From: Rick Hamell To: FreeBSD-questions Subject: PCCard Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Can any one tell me the flag to force PCcard (when called in rc.conf,) to run at half-duplex? Or... which man page I'm missing? Thanks much! Rick ******************************************************************* New home page: http://1nova.com Ace Logan's Hardware Guide @ http://www.markeedragon.com 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 16 18:42:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7726B37B401 for ; Wed, 16 Oct 2002 18:42:11 -0700 (PDT) Received: from mta04bw.bigpond.com (mta04bw.bigpond.com [139.134.6.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44A3043E65 for ; Wed, 16 Oct 2002 18:42:10 -0700 (PDT) (envelope-from michael@roq.com) Received: from michael ([144.135.24.84]) by mta04bw.bigpond.com (Netscape Messaging Server 4.15 mta04bw Jul 16 2002 22:47:55) with SMTP id H43RDS00.50N; Thu, 17 Oct 2002 11:41:52 +1000 Received: from CPE-144-132-83-135.vic.bigpond.net.au ([144.132.83.135]) by bwmam06.mailsvc.email.bigpond.com(MailRouter V3.0n 53/2646953); 17 Oct 2002 11:41:50 Message-ID: <013601c2757e$6661cdd0$2d01a8c0@michael> From: "Michael Vince" To: "Alvaro Rosales R." , References: <3DAD864E.31367.1448E0F@localhost> Subject: Re: How to upgrade from 4.3 to 4.7 Date: Thu, 17 Oct 2002 11:42:06 +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 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG A cvsup and "make buildworld", "make installworld" will NOT work in 4.3 its simply to old a version. I had the same problem my self, and its in one of the errata's and mailing lists that its not possible. What I did was do buildworld on another machine (A fbsd v4.6 server) and then tared up the /usr/src and /usr/obj and transferred it to the other machine which was far away on the internet. If its LAN you just do NFS export of the /usr/src and /usr/obj dirs and mount them on the 4.3 server. Then just extract the tarball to /usr/src and /usr/obj and do a make installworld there from that. Also I am pretty sure the last ISO for FreeBSD is a fix iso, that has a prebuild setup on the iso where you can just do a "make installworld" from the mounted CD onto your 4.3 server. Don't let any tell you that you can buildworld to 4.7 from 4.3, my situation was actually from 4.3 to 4.5 or 4.6 actually and that still didn't work, Like I said its in the errata somewhere. Also don't skip the "mergemaster" after installworld, your gonna need it :) Good luck ----- Original Message ----- From: "Alvaro Rosales R." To: Sent: Thursday, October 17, 2002 6:31 AM Subject: How to upgrade from 4.3 to 4.7 > Hi fellows , can you tell me how can I upgrade my FreeBSD release 4.3 > to 4.7? . > Thanks for your help > > > > > > > > > > > > Alvaro A. Rosales Rojas. ---------------- a.k.a. RAZA > Proud user of Pegasus Mail > Soporte Tecnico de Sistemas > Procacao S.A > 3368113 ext 260 > > "You'll never know how far you can go until you break the chains that > tie your soul " > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 16 19:12: 6 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91F9037B401 for ; Wed, 16 Oct 2002 19:12:05 -0700 (PDT) Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB83D43E8A for ; Wed, 16 Oct 2002 19:12:03 -0700 (PDT) (envelope-from Alex.Wilkinson@dsto.defence.gov.au) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id g9H2AFe12839 for ; Thu, 17 Oct 2002 11:40:15 +0930 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.2.10) with ESMTP id for ; Thu, 17 Oct 2002 11:41:39 +0930 Received: from salex001.dsto.defence.gov.au (salex001.dsto.defence.gov.au [131.185.2.9]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id LAA17215 for ; Thu, 17 Oct 2002 11:37:25 +0930 (CST) Received: from squirm.dsto.defence.gov.au ([131.185.75.211]) by salex001.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id VAAXP1A3; Thu, 17 Oct 2002 11:37:25 +0930 Date: Thu, 17 Oct 2002 11:24:25 +0930 (CST) From: "Wilkinson,Alex" X-X-Sender: wilkinsa@squirm.dsto.defence.gov.au Reply-To: Alex.Wilkinson@dsto.defence.gov.au To: freebsd-questions@freebsd.org Subject: PPP Message-ID: <20021017112407.A44296-100000@squirm.dsto.defence.gov.au> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I have a question related to PPP. I have a FreeBSD -STABLE box set up as a gateway to a dial up account with Internode. I have also 2 Windows boxes with the default gateway set to the FreeBSD box. Question: Is there anyway to set up an Icon on a Windows box that will dial up the modem that's hanging off of the FreeBSD gateway. [ssh'ing in and running ppp manually is to much of an ask for people that want to use a computer to actually do work ;-)]. Has anyone done this before. I know software has been written for Linux: http://cpwright.com/mserver/ Thanks - aW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 19:16:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 869A737B401 for ; Wed, 16 Oct 2002 19:16:58 -0700 (PDT) Received: from smtp010.tiscali.dk (smtp010.tiscali.dk [212.54.64.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B61843E65 for ; Wed, 16 Oct 2002 19:16:57 -0700 (PDT) (envelope-from db@traceroute.dk) Received: from cpmail.dk.tiscali.com (mail.tiscali.dk [212.54.64.159]) by smtp010.tiscali.dk (8.12.5/8.12.5) with ESMTP id g9GJjQRR025892 for ; Wed, 16 Oct 2002 21:45:33 +0200 (MEST) Received: from rafter (213.237.112.252) by cpmail.dk.tiscali.com (6.0.053) id 3D9C2202001D9EB8 for freebsd-questions@freebsd.org; Wed, 16 Oct 2002 21:45:33 +0200 Date: Wed, 16 Oct 2002 21:51:11 +0200 From: Socketd To: freebsd-questions@freebsd.org Subject: Hardware limits Message-ID: <20021016195111.GE290@rafter> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.3.6 Lines: 14 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi FreeBSD'ers I am not a hardware expert, so I will ask here about the limits before buying a new server. How many processors can FreeBSD run with? When will FreeBSD be able to run on ia64? How many ram (DDR-ram? or what should I use?) How many hard-disks (not using RAID and with RAID)? (not SCSI disks) Any recommendations on gigabit NIC's? br socketd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 19:25:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1505E37B401 for ; Wed, 16 Oct 2002 19:25:48 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91BC343E77 for ; Wed, 16 Oct 2002 19:25:47 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E60A566E06; Wed, 16 Oct 2002 19:25:46 -0700 (PDT) Date: Wed, 16 Oct 2002 19:25:46 -0700 From: Kris Kennaway To: Socketd Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Hardware limits Message-ID: <20021017022546.GA23436@xor.obsecurity.org> References: <20021016195111.GE290@rafter> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="azLHFNyN32YCQGCU" Content-Disposition: inline In-Reply-To: <20021016195111.GE290@rafter> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --azLHFNyN32YCQGCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 16, 2002 at 09:51:11PM +0200, Socketd wrote: > Hi FreeBSD'ers >=20 > I am not a hardware expert, so I will ask here about the limits before=20 > buying a new server. >=20 > How many processors can FreeBSD run with? SMP support in 4.x will use as many as you have, but FreeBSD 4.x does not make optimal use of extra CPUs and you hit diminishing returns with more than about 4 CPUs (the SMP support in 4.x has limitations: only one CPU can execute in the kernel at once). SMP support is being dramatically improved in 5.0-CURRENT and will end up being highly scalable (it's not quite there yet). > When will FreeBSD be able to run on ia64? Now (5.0-CURRENT runs on ia64). > How many ram (DDR-ram? or what should I use?) You can't use more than 4GB on ia32. > How many hard-disks (not using RAID and with RAID)? (not SCSI disks) As many as you want. > Any recommendations on gigabit NIC's? Not from me. Kris --azLHFNyN32YCQGCU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9rh+qWry0BWjoQKURAtJWAKCJtO0NpBxjY6Qimkx9Tb0hlGfntQCeIYaz 9236F9jdcBseWxb4TSFaSso= =xYdb -----END PGP SIGNATURE----- --azLHFNyN32YCQGCU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 19:54:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E96837B401 for ; Wed, 16 Oct 2002 19:54:10 -0700 (PDT) Received: from web14703.mail.yahoo.com (web14703.mail.yahoo.com [216.136.224.120]) by mx1.FreeBSD.org (Postfix) with SMTP id C4FF643E9C for ; Wed, 16 Oct 2002 19:54:09 -0700 (PDT) (envelope-from wayneclubin@yahoo.com) Message-ID: <20021017025409.56668.qmail@web14703.mail.yahoo.com> Received: from [64.131.161.101] by web14703.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 19:54:09 PDT Date: Wed, 16 Oct 2002 19:54:09 -0700 (PDT) From: Wayne Lubin Subject: Re: A curious dmesg output entry To: "Brian M. Kincaid" Cc: freebsd-questions@freebsd.org In-Reply-To: <200210170200.g9H20LG4000500@adsl-64-174-159-18.dsl.sntc01.pacbell.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yeah I do have that driver compiled into my kernel.I guess that explains why my computer is alway on full throdle. It will probably blow out in about six months at this rate. Well since freebsd does not recognize my built in power management card, I wonder if someone makea power management cards separately that are not integrated on a mother board that freebsd would recognize. I think the power management stuff is important because if I am not mistaken it handles all the standby mode stuff which not only safes power, but also saves wear and tear. Wayne --- "Brian M. Kincaid" wrote: > > Hi Wayne, > > I'm not an expert on the power management stuff, but > here is what I have in my > kernel definitions about power management. If you > have these lines and have > built a kernel with the apm0 device driver and > things still don't work, I'm > out of ideas. > > # Power management support (see LINT for more > options) > device apm0 at nexus? disable flags 0x20 # > Advanced Power Management > > Some time ago I decided to track down all the > messages I had > been getting. That's how I found the > www.yourvote.com/pci site. At the moment > I have all pci devices accounted for and have no > messages. > > FreeBSD is frequently not completely up-to-date in > supporting the latest > hardware, hey it's FREE. One particularly annoying > area is X11 support for the > latest graphics cards. I have been careful to buy > machines that have hardware > supported by FreeBSD, but it's always a bit of a > gamble when buying a new > system. > > I have had good luck with the new Dell systems, by > the way, as long as you > don't pick a graphics card that is too new for > XFree86. > > I hope this is of some help, > > Brian > > -------------------- > > > > In message > <20021017010344.35873.qmail@web14703.mail.yahoo.com>, > Wayne Lubin wr > ites: > >So does that means that this ACPI Power Management > >Controller is not supported by freebsd? Or does it > >mean that I need to compile the corresponding > device > >driver into the kernel and then it will be > recognized > >by freebsd? > > > > > > > > > >--- "Brian M. Kincaid" > > > wrote: > >> > >> > >> Hi, > >> > >> Have a look at the PCI vendor list at: > >> > >> http://www.yourvote.com/pci/ > >> > >> Your card is made by > >> VIA Technologies Inc > >> 1045 Mission Court > >> Fremont CA 94539 > >> 510-683-3300 > >> > >> Chip Number: VT82C686A > >> Description: ACPI Power Management Controller > >> > >> > >> Brian > >> > >> > >> > >> > >> In message > >> > ><20021017001250.27214.qmail@web14703.mail.yahoo.com>, > >> Wayne Lubin wr > >> ites: > >> >Hi, > >> > > >> >I have this line in my dmesg output > >> > > >> >pci0: (vendor=0x1106, dev=0x3057) > at > >> >7.4 > >> > > >> >but the only cards that I have is one ethernet > pci > >> >card, and my video card that is in the AGP slot. > >> And > >> >they are being properly detected. > >> > > >> >Can this be some functionality > built > >> >into the mother bord that wants to access the > pci > >> >buss? Because all of my pci cards are physicaly > >> >plugged into the pci slots are accounted for. > >> > > >> >Thanks, > >> > > >> >Wayne > >> > > >> > >__________________________________________________ > >> >Do you Yahoo!? > >> >Faith Hill - Exclusive Performances, Videos & > More > >> >http://faith.yahoo.com > >> > > >> >To Unsubscribe: send mail to > majordomo@FreeBSD.org > >> >with "unsubscribe freebsd-questions" in the body > of > >> the message > >> > >> -- > >> Brian M. Kincaid > >> PGP Key: > >> > >http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0x33656401 > >> > >> > > > > > >__________________________________________________ > >Do you Yahoo!? > >Faith Hill - Exclusive Performances, Videos & More > >http://faith.yahoo.com > > -- > Brian M. Kincaid > PGP Key: > http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0x33656401 > > __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.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 16 20:23: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C65A537B401 for ; Wed, 16 Oct 2002 20:23:01 -0700 (PDT) Received: from pakastelohi.cypherpunks.to (pakastelohi.cypherpunks.to [213.130.163.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C41843E3B for ; Wed, 16 Oct 2002 20:23:01 -0700 (PDT) (envelope-from shamrock@cypherpunks.to) Received: from VAIO650 (d160.nas2.sr2.sonic.net [208.201.229.160]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by pakastelohi.cypherpunks.to (Postfix) with ESMTP id 76AED36400 for ; Thu, 17 Oct 2002 05:22:58 +0200 (CEST) From: "Lucky Green" To: Subject: Dual NICs, can only connect to one at time Date: Wed, 16 Oct 2002 20:22:58 -0700 Message-ID: <002e01c2758c$7f8cf290$6501a8c0@VAIO650> 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, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a box with both an external and internal NIC. The external NIC is connected to an ADSL adapter serving a block of globally routable static IP addresses while the internal NIC is connected to a hub served by a NAT/DHCP server. The idea here is that this way the box can offer different services on the outside vs. the inside. The machine should not route packets and is not configured as a router. Unfortunately, with the external NIC enabled, the internal NIC cannot be pinged from the inside. A similar setup worked perfectly fine when an USB Ethernet adapter was used as the internal NIC. Only after switching to a PCI card as the internal NIC did this problem manifest. (The new card has been tested and works fine when used by itself). I am using FreeBSD 4.6.2. From rc.conf: # External static IP via 3COM card ifconfig_xl0="inet 208.201.229.161 netmask 255.255.255.0" hostname="cheesy.dhs.org" defaultrouter="208.201.229.1" # Internal IP reserved from DHCP pool via D-Link card ifconfig_rl0="inet 192.168.0.103 netmask 255.255.255.0" The above gives an ifconfig of: 2# ifconfig rl0: flags=8843 mtu 1500 inet 192.168.0.103 netmask 0xffffff00 broadcast 192.168.0.255 inet6 fe80::205:5dff:fe34:8133%rl0 prefixlen 64 scopeid 0x1 ether 00:05:5d:34:81:33 media: Ethernet autoselect (100baseTX ) status: active xl0: flags=8843 mtu 1500 options=3 inet 208.201.229.161 netmask 0xffffff00 broadcast 208.201.229.255 inet6 fe80::250:4ff:fed1:8a4a%xl0 prefixlen 64 scopeid 0x2 ether 00:50:04:d1:8a:4a media: Ethernet autoselect (100baseTX ) status: active [...] Even though both interfaces are up, 208.201.229.161 cannot be accessed from the outside. Though 208.201.229.161 can be accessed from the inside. Removing xl0 from rc.conf and changing the rl0 config to ifconfig_rl0="DHCP" allows the internal NIC to be pinged. Just removing xl0 while leaving rl0 in the static configuration caused both interface to not respond to pings. For completeness, here is the ifconfig when rl0 is using DHCP: rl0: flags=8843 mtu 1500 inet6 fe80::205:5dff:fe34:8133%rl0 prefixlen 64 scopeid 0x1 inet 192.168.1.103 netmask 0xffffff00 broadcast 192.168.1.255 ether 00:05:5d:34:81:33 media: Ethernet autoselect (100baseTX ) status: active What am I missing? Thanks, --Lucky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 20:25:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF8E737B401 for ; Wed, 16 Oct 2002 20:25:48 -0700 (PDT) Received: from eurus.primus.ca (mail.tor.primus.ca [216.254.136.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A2B243EAF for ; Wed, 16 Oct 2002 20:25:48 -0700 (PDT) (envelope-from leth@primus.ca) Received: from dialin-152-135.tor.primus.ca ([216.254.152.135]) by eurus.primus.ca with esmtp (Exim 3.33 #16) id 1821IB-0007vm-0A; Wed, 16 Oct 2002 23:25:47 -0400 Date: Wed, 16 Oct 2002 23:25:46 -0400 (EDT) From: Jason Hunt X-X-Sender: leth@lethargic.dyndns.org To: freebsd-questions@FreeBSD.ORG Cc: "Wilkinson,Alex" Subject: Re: PPP In-Reply-To: <20021017112407.A44296-100000@squirm.dsto.defence.gov.au> Message-ID: <20021016231644.Q85480-100000@lethargic.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 17 Oct 2002, Wilkinson,Alex wrote: > Question: Is there anyway to set up an Icon on a Windows box that will > dial up the > modem that's hanging off of the FreeBSD gateway. > [ssh'ing in and running ppp manually is to much of an ask for > people that want to use > a computer to actually do work ;-)]. > > Has anyone done this before. > > I know software has been written for Linux: > > http://cpwright.com/mserver/ > I don't know about your specific question, but you can tell (userland) PPP to dial only when there is traffic. This can be accomplished with the -ddial flag. That may or may not be what you want to do though. One other solution ... I know of a guy who had a modem that was always re-dialing, so he attached a light switch on his phone line, and would switch it on when he wanted his modem to connect :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 20:39:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CDD037B401 for ; Wed, 16 Oct 2002 20:39:47 -0700 (PDT) Received: from smtp2.san.rr.com (smtp2.san.rr.com [24.25.195.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2724743E91 for ; Wed, 16 Oct 2002 20:39:47 -0700 (PDT) (envelope-from Hostmaster@Video2Video.Com) Received: from 24-161-168-112.san.rr.com (24-161-168-112.san.rr.com [24.161.168.112]) by smtp2.san.rr.com (8.11.4/8.11.4) with ESMTP id g9H3dkl03484 for ; Wed, 16 Oct 2002 20:39:46 -0700 (PDT) Date: Wed, 16 Oct 2002 20:40:34 -0700 (PDT) From: Peter Leftwich X-X-Sender: root@dhcp-407-32.san.rr.com To: FreeBSD Questions LIST Subject: Gnome URL Launcher captions? Message-ID: <20021016203622.U1470-100000@dhcp-407-32.san.rr.com> Organization: Video2Video Services - http://Www.Video2Video.Com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Does anyone know where the "URL Launchers" on my desktop store the caption text? I have some ~/.gnome-desktop/urlwINmpc (for example) files but they only have a URL in them, whereas if you right-click and view the properties there is a lot of stuff in there. Where is this "extended" information stored? In what path, files?? Thanks! -- Peter Leftwich President & Founder Video2Video Services Box 13692, La Jolla, CA, 92039 USA +1-413-403-9555 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 20:40: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E13637B404 for ; Wed, 16 Oct 2002 20:40:06 -0700 (PDT) Received: from janeway.vonbek.dhs.org (bgm-24-94-58-56.stny.rr.com [24.94.58.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3311D43EA9 for ; Wed, 16 Oct 2002 20:40:04 -0700 (PDT) (envelope-from syborg@stny.rr.com) Received: by janeway.vonbek.dhs.org (Postfix, from userid 507) id 976C64FC9F; Wed, 16 Oct 2002 23:36:34 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by janeway.vonbek.dhs.org (Postfix) with ESMTP id 9239A4A0E; Wed, 16 Oct 2002 23:36:34 -0400 (EDT) Date: Wed, 16 Oct 2002 23:36:34 -0400 (EDT) From: John Bleichert X-X-Sender: syborg@janeway.vonbek.dhs.org Reply-To: John Bleichert To: freebsd-questions@freebsd.org Cc: wayneclubin@yahoo.com Subject: Re: A curious dmesg output entry Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wayne Lubin writes: >Hi, > >I have this line in my dmesg output > >pci0: (vendor=0x1106, dev=0x3057)at 7.4 > >but the only cards that I have is one ethernet pci >card, and my video card that is in the AGP slot. >And they are being properly detected. > >Can this be some functionality built >into the mother bord that wants to access the pci >buss? Because all of my pci cards are physicaly >plugged into the pci slots are accounted for. > >Thanks, > >Wayne > then "Brian M. Kincaid" wrote: > Hi, > > Have a look at the PCI vendor list at: > > http://www.yourvote.com/pci/ > > Your card is made by > VIA Technologies Inc > 1045 Mission Court > Fremont CA 94539 > 510-683-3300 > > Chip Number: VT82C686A > Description: ACPI Power Management Controller then Wayne Lubin wrote: >So does that means that this ACPI Power Management >Controller is not supported by freebsd? Or does it >mean that I need to compile the corresponding >device driver into the kernel and then it will be >recognized by freebsd? > According to this: http://www.freebsd.org/releases/5.0R/todo.html ACPI devices will be supported in 5.0 - I get the same 'unknown card' - it will be interesting to see how well it works ... maybe I'll hafta go -CURRENT hehe. JB # John Bleichert # http://vonbek.dhs.org/latest.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 20:50: 1 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B70437B401 for ; Wed, 16 Oct 2002 20:50:00 -0700 (PDT) Received: from funksucker.kulish.com (12-216-148-55.client.mchsi.com [12.216.148.55]) by mx1.FreeBSD.org (Postfix) with SMTP id 2F9EA43E7B for ; Wed, 16 Oct 2002 20:49:59 -0700 (PDT) (envelope-from noc@kulish.com) Received: (qmail 19347 invoked from network); 17 Oct 2002 03:43:17 -0000 Received: from unknown (HELO superbeast) (10.1.1.1) by 10.1.1.253 with SMTP; 17 Oct 2002 03:43:17 -0000 From: "NOC - KP^2" To: Subject: openoffice 1.0.1 Date: Wed, 16 Oct 2002 22:43:17 -0500 Message-ID: <000201c2758f$545d02b0$0101010a@superbeast> 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, Build 10.0.3416 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Has anyone gotten this to compile from ports? I can getting an error 139: something about not being able to copy some .zip file because it doesn't exist or permissions are not correct. Sorry I don't have the exact error (running through another compile after make clean). If anyone has seen something like this before, any help would be appreciated! C Kulish To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 20:55:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D95C537B401 for ; Wed, 16 Oct 2002 20:55:33 -0700 (PDT) Received: from funksucker.kulish.com (12-216-148-55.client.mchsi.com [12.216.148.55]) by mx1.FreeBSD.org (Postfix) with SMTP id 11DBF43E91 for ; Wed, 16 Oct 2002 20:55:33 -0700 (PDT) (envelope-from lists@tekengine.net) Received: (qmail 19449 invoked from network); 17 Oct 2002 03:55:32 -0000 Received: from unknown (HELO superbeast) (10.1.1.1) by 10.1.1.253 with SMTP; 17 Oct 2002 03:55:32 -0000 From: "Chris Kulish" To: "'Larry Rosenman'" Cc: Subject: RE: openoffice 1.0.1 Date: Wed, 16 Oct 2002 22:55:32 -0500 Message-ID: <000301c27591$0a693550$0101010a@superbeast> 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, Build 10.0.3416 In-Reply-To: <1034826688.1816.2.camel@lerlaptop.lerctr.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is this the same package I would be getting from the ports system? Thanks! C Kulish -----Original Message----- From: Larry Rosenman [mailto:ler@lerctr.org] Sent: Wednesday, October 16, 2002 10:51 PM To: NOC - KP^2 Cc: freebsd-questions@FreeBSD.ORG Subject: Re: openoffice 1.0.1 On Wed, 2002-10-16 at 22:43, NOC - KP^2 wrote: > Has anyone gotten this to compile from ports? I can getting an error > 139: something about not being able to copy some .zip file because it > doesn't exist or permissions are not correct. Sorry I don't have the > exact error (running through another compile after make clean). If > anyone has seen something like this before, any help would be > appreciated! I've been using the packages from projects.imp.ch/openoffice with good success. > > C Kulish > > > 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 E-Mail: 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 16 21: 4: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A213A37B401 for ; Wed, 16 Oct 2002 21:04:01 -0700 (PDT) Received: from lerlaptop.lerctr.org (lerlaptop.lerctr.org [207.158.72.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1714A43E65 for ; Wed, 16 Oct 2002 21:04:01 -0700 (PDT) (envelope-from ler@lerctr.org) Received: from localhost (localhost [127.0.0.1]) by lerlaptop.lerctr.org (8.12.6/8.12.5) with ESMTP id g9H440LU021010; Wed, 16 Oct 2002 23:04:00 -0500 (CDT) (envelope-from ler@lerctr.org) Subject: RE: openoffice 1.0.1 From: Larry Rosenman To: Chris Kulish Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <000301c27591$0a693550$0101010a@superbeast> References: <000301c27591$0a693550$0101010a@superbeast> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 16 Oct 2002 23:04:00 -0500 Message-Id: <1034827440.1816.4.camel@lerlaptop.lerctr.org> Mime-Version: 1.0 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 2002-10-16 at 22:55, Chris Kulish wrote: > Is this the same package I would be getting from the ports system? YES. built by the port maintainer. the 1.0.1_4 is current as of today. > > Thanks! > C Kulish > > -----Original Message----- > From: Larry Rosenman [mailto:ler@lerctr.org] > Sent: Wednesday, October 16, 2002 10:51 PM > To: NOC - KP^2 > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: openoffice 1.0.1 > > On Wed, 2002-10-16 at 22:43, NOC - KP^2 wrote: > > Has anyone gotten this to compile from ports? I can getting an error > > 139: something about not being able to copy some .zip file because it > > doesn't exist or permissions are not correct. Sorry I don't have the > > exact error (running through another compile after make clean). If > > anyone has seen something like this before, any help would be > > appreciated! > > I've been using the packages from projects.imp.ch/openoffice with good > success. > > > > > > C Kulish > > > > > > 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 E-Mail: ler@lerctr.org > US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 > -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: 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 16 21: 5:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3689E37B401 for ; Wed, 16 Oct 2002 21:05:13 -0700 (PDT) Received: from ariel.ucs.unimelb.edu.au (ariel.ucs.unimelb.edu.au [128.250.20.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 181EA43E9C for ; Wed, 16 Oct 2002 21:05:12 -0700 (PDT) (envelope-from jrhoden@unimelb.edu.au) Received: from elkanah.its.unimelb.edu.au (elkanah.its.unimelb.edu.au [128.250.18.41]) by ariel.ucs.unimelb.edu.au (8.12.3/8.12.3) with ESMTP id g9H456iB018454 for ; Thu, 17 Oct 2002 14:05:06 +1000 (EST) Content-Type: text/plain; charset="iso-8859-1" From: Jacob Rhoden Organization: University of Melbourne To: freebsd-questions@freebsd.org Subject: Re: PPP Date: Thu, 17 Oct 2002 14:05:06 +1000 X-Mailer: KMail [version 1.4] References: <20021016231644.Q85480-100000@lethargic.dyndns.org> In-Reply-To: <20021016231644.Q85480-100000@lethargic.dyndns.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210171405.06634.jrhoden@unimelb.edu.au> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 17 Oct 2002 13:25, Jason Hunt wrote: > > Question: Is there anyway to set up an Icon on a Windows box that wil= l > > dial up the > One other solution ... I know of a guy who had a modem that was always > re-dialing, so he attached a light switch on his phone line, and would > switch it on when he wanted his modem to connect :) You can setup windows to make the freebsd box dial/hangup... But by far t= he=20 best optoin is to use a switch, I just turn the modem on to use it, and o= ff=20 to disconnect (: Another really clever idea however is to have a web page on the FreeBSD b= ox,=20 which allows the user to start or stop ppp. So then your default home pag= e=20 can have a connect/disconnect icon! (Or even extra functions like shutdow= n=20 and whathaveyou). Regards, Jacob Jacob Rhoden Phone: +61 3 9844 6102 ITS Division Email: jrhoden@unimelb.edu.au Melbourne University Mobile: +61 403 788 386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 21:12:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A697C37B401 for ; Wed, 16 Oct 2002 21:12:42 -0700 (PDT) Received: from lerlaptop.lerctr.org (lerlaptop.lerctr.org [207.158.72.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2677343E8A for ; Wed, 16 Oct 2002 21:12:42 -0700 (PDT) (envelope-from ler@lerctr.org) Received: from localhost (localhost [127.0.0.1]) by lerlaptop.lerctr.org (8.12.6/8.12.5) with ESMTP id g9H3pSLU017973; Wed, 16 Oct 2002 22:51:28 -0500 (CDT) (envelope-from ler@lerctr.org) Subject: Re: openoffice 1.0.1 From: Larry Rosenman To: NOC - KP^2 Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <000201c2758f$545d02b0$0101010a@superbeast> References: <000201c2758f$545d02b0$0101010a@superbeast> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 Date: 16 Oct 2002 22:51:28 -0500 Message-Id: <1034826688.1816.2.camel@lerlaptop.lerctr.org> Mime-Version: 1.0 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 2002-10-16 at 22:43, NOC - KP^2 wrote: > Has anyone gotten this to compile from ports? I can getting an error > 139: something about not being able to copy some .zip file because it > doesn't exist or permissions are not correct. Sorry I don't have the > exact error (running through another compile after make clean). If > anyone has seen something like this before, any help would be > appreciated! I've been using the packages from projects.imp.ch/openoffice with good success. > > C Kulish > > > 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 E-Mail: 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 16 21:18: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B3E737B401 for ; Wed, 16 Oct 2002 21:18:01 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAE1443E6E for ; Wed, 16 Oct 2002 21:18:00 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: from blues.seekingfire.prv (blues.seekingfire.prv [192.168.23.211]) by mail.seekingfire.com (Postfix) with ESMTP id E47855E for ; Wed, 16 Oct 2002 21:44:54 -0600 (CST) Received: (from tillman@localhost) by blues.seekingfire.prv (8.11.6/8.11.6) id g9H3fiD10507 for freebsd-questions@FreeBSD.ORG; Wed, 16 Oct 2002 21:41:44 -0600 Date: Wed, 16 Oct 2002 21:41:44 -0600 From: Tillman To: FreeBSD-Questions Subject: Re: make installworld failing with permission denied Message-ID: <20021016214144.A10502@seekingfire.com> References: <20021015222849.C5727@seekingfire.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20021015222849.C5727@seekingfire.com>; from tillman@seekingfire.com on Tue, Oct 15, 2002 at 10:28:49PM -0600 X-Urban-Legend: There is lots of hidden information in headers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Oct 15, 2002 at 10:28:49PM -0600, Tillman wrote: > Howdy, > > When I attempt to "make install world" from a read-only NFS mount I'm > getting a permission error: > > [root@coyote src]# make installworld > mkdir -p /tmp/install.66566 > for prog in [ awk cat chflags chmod chown date echo egrep find grep ln > make makewhatis mtree mv perl pwd_mkdb rm sed sh sysctl test true uname > wc zic; do cp `which $prog` /tmp/install.66566; done > cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=i386 MACHINE=i386 > OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec > PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503 > GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin > GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font > GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac > PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/tmp/install.66566 > make -f Makefile.inc1 reinstall > make: permission denied Replying to my own post for the archives: It turns out that mounting /tmp 'noexec', while possibly a good idea for security, is not good for the portion of 'make installworld' that copies some vital programs to /tmp/install.##### and then tries to run the 'make' contained therein. Live and learn :-) - Tillman -- Enlightenment is: do what you want, eat what there is Jack Kerouac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 21:26:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B65537B401 for ; Wed, 16 Oct 2002 21:26:18 -0700 (PDT) Received: from funksucker.kulish.com (12-216-148-55.client.mchsi.com [12.216.148.55]) by mx1.FreeBSD.org (Postfix) with SMTP id A907343EA3 for ; Wed, 16 Oct 2002 21:26:17 -0700 (PDT) (envelope-from lists@tekengine.net) Received: (qmail 19660 invoked from network); 17 Oct 2002 04:26:17 -0000 Received: from unknown (HELO superbeast) (10.1.1.1) by 10.1.1.253 with SMTP; 17 Oct 2002 04:26:17 -0000 From: "Chris Kulish" To: Subject: RE: openoffice 1.0.1 Date: Wed, 16 Oct 2002 23:26:16 -0500 Message-ID: <000401c27595$55e71660$0101010a@superbeast> 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, Build 10.0.3416 In-Reply-To: <000301c27591$0a693550$0101010a@superbeast> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Finally got back to the error I am getting during compile. Building on a P4 1.6G Dell Laptop with a 30gb drive and 256MB of memory. Gnome2 is already installed, as well as Mozilla. Any help is appreciated! Thanks! Error follows: ============= Building project udkapi ============= /usr/ports/editors/openoffice/work/oo_1.0.1_src/udkapi/com/sun/star/scri pt mkout -- version: 1.3 idlc @/var/tmp/mk23mxnU idlc: compile 'AllEventObject.idl' ... Segmentation fault (core dumped) dmake: Error code 139, while making '../../../../unxfbsd.pro/misc/urd_cssscript.don' ---* TG_SLO.MK *--- ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice/work/oo_1.0.1_src/udkapi/com/sun/star/scri pt dmake: Error code 1, while making 'build_all' ---* TG_SLO.MK *--- *** Error code 255 Stop in /usr/ports/editors/openoffice. Hopefully someone has seen that and has a work around :) Thanks much!!! C Kulish -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of Chris Kulish Sent: Wednesday, October 16, 2002 10:56 PM To: 'Larry Rosenman' Cc: freebsd-questions@FreeBSD.ORG Subject: RE: openoffice 1.0.1 Is this the same package I would be getting from the ports system? Thanks! C Kulish -----Original Message----- From: Larry Rosenman [mailto:ler@lerctr.org] Sent: Wednesday, October 16, 2002 10:51 PM To: NOC - KP^2 Cc: freebsd-questions@FreeBSD.ORG Subject: Re: openoffice 1.0.1 On Wed, 2002-10-16 at 22:43, NOC - KP^2 wrote: > Has anyone gotten this to compile from ports? I can getting an error > 139: something about not being able to copy some .zip file because it > doesn't exist or permissions are not correct. Sorry I don't have the > exact error (running through another compile after make clean). If > anyone has seen something like this before, any help would be > appreciated! I've been using the packages from projects.imp.ch/openoffice with good success. > > C Kulish > > > 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 E-Mail: 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 21:33:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C326237B401 for ; Wed, 16 Oct 2002 21:33:54 -0700 (PDT) Received: from mail.johnrshannon.com (mail.johnrshannon.com [208.141.183.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id C34BA43EAF for ; Wed, 16 Oct 2002 21:33:53 -0700 (PDT) (envelope-from john@johnrshannon.com) Received: from pablo.johnrshannon.com (pablo.johnrshannon.com [192.168.1.3]) by mail.johnrshannon.com (Postfix) with ESMTP id 6C1CBE8B4 for ; Mon, 14 Oct 2002 07:15:27 -0600 (MDT) Received: from pablo.johnrshannon.com (localhost [127.0.0.1]) by pablo.johnrshannon.com (8.12.6/8.12.6) with ESMTP id g9EDFQ4Z000557 for ; Mon, 14 Oct 2002 07:15:26 -0600 (MDT) (envelope-from john@pablo.johnrshannon.com) Received: (from john@localhost) by pablo.johnrshannon.com (8.12.6/8.12.6/Submit) id g9EDFQNm000554 for freebsd-questions@freebsd.org; Mon, 14 Oct 2002 07:15:26 -0600 (MDT) (envelope-from john) Content-Type: text/plain; charset="us-ascii" From: "John R. Shannon" Reply-To: john@johnrshannon.com To: freebsd-questions@freebsd.org Subject: Use as serial terminal Date: Mon, 14 Oct 2002 07:15:25 -0600 User-Agent: KMail/1.4.3 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210140715.26713.john@johnrshannon.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm trying to use my i386 based FreeBSD machine as a console on a Sun Net= ra X1. I've built a cable with the pinout specified in the Sun manual and connected it to COM1. When I tip: tip -v cuaa0c connected I get no output. /etc/remote has cuaa0c|cua0c:dv=3D/dev/cuaa0:br#9600:pa=3Dnone: which should be correct. Any suggestions for debugging the problem? - --=20 John R. Shannon john@johnrshannon.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iEYEARECAAYFAj2qw20ACgkQOKbCxya4HYsKtwCdFcsDEUwvxNAJiyt3IEpBZC1d DEsAnipdmTOBGdqgEOY/p5fD5ToBCLrW =3Dfch+ -----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 Wed Oct 16 21:42:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DB4337B401 for ; Wed, 16 Oct 2002 21:42:56 -0700 (PDT) Received: from serv1.wallnet.com (server1.wallnet.com [208.225.162.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id CADA843E91 for ; Wed, 16 Oct 2002 21:42:55 -0700 (PDT) (envelope-from timothyk@serv1.wallnet.com) Received: (from root@localhost) by serv1.wallnet.com (8.11.5/8.11.5) id g9H4gtG13659; Thu, 17 Oct 2002 00:42:55 -0400 (EDT) (envelope-from timothyk@serv1.wallnet.com) Received: from localhost (timothyk@localhost) by serv1.wallnet.com (8.11.5/8.11.5av) with ESMTP id g9H4grs13650; Thu, 17 Oct 2002 00:42:53 -0400 (EDT) (envelope-from timothyk@serv1.wallnet.com) X-Authentication-Warning: serv1.wallnet.com: timothyk owned process doing -bs Date: Thu, 17 Oct 2002 00:42:53 -0400 (EDT) From: Tim Kellers To: Chris Kulish Cc: "'Larry Rosenman'" , Subject: RE: openoffice 1.0.1 In-Reply-To: <000301c27591$0a693550$0101010a@superbeast> Message-ID: <20021017004041.K12568-100000@serv1.wallnet.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG After having spent many many hours trying to coax FreeBSD OpenOffice 1.0.1 to run, I dropped back, punted, and installed the linux binary. It works just deucky, although you have to remember to have the4 linux procfs mounted, and you need a current linux base 7 ABI installed. Tim Kellers CPE/NJIT On Wed, 16 Oct 2002, Chris Kulish wrote: > Is this the same package I would be getting from the ports system? > > Thanks! > C Kulish > > -----Original Message----- > From: Larry Rosenman [mailto:ler@lerctr.org] > Sent: Wednesday, October 16, 2002 10:51 PM > To: NOC - KP^2 > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: openoffice 1.0.1 > > On Wed, 2002-10-16 at 22:43, NOC - KP^2 wrote: > > Has anyone gotten this to compile from ports? I can getting an error > > 139: something about not being able to copy some .zip file because it > > doesn't exist or permissions are not correct. Sorry I don't have the > > exact error (running through another compile after make clean). If > > anyone has seen something like this before, any help would be > > appreciated! > > I've been using the packages from projects.imp.ch/openoffice with good > success. > > > > > > C Kulish > > > > > > 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 E-Mail: 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Oct 16 22:16:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB54837B404 for ; Wed, 16 Oct 2002 22:16:39 -0700 (PDT) Received: from web40802.mail.yahoo.com (web40802.mail.yahoo.com [66.218.78.179]) by mx1.FreeBSD.org (Postfix) with SMTP id 0831243E8A for ; Wed, 16 Oct 2002 22:15:52 -0700 (PDT) (envelope-from ejcerejo@yahoo.com) Message-ID: <20021017051542.66279.qmail@web40802.mail.yahoo.com> Received: from [65.129.40.15] by web40802.mail.yahoo.com via HTTP; Wed, 16 Oct 2002 22:15:42 PDT Date: Wed, 16 Oct 2002 22:15:42 -0700 (PDT) From: "E. J. Cerejo" Subject: Re: US Robotics Performance Pro modem won't work To: haney01@email.franklin.edu, FreeBSD-questions@freebsd.org In-Reply-To: <3dae0f26.570e.0@email.franklin.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've tried that and it still doesn't dial and if you look at my dmesg it's being recognized. Copyright (c) 1992-2002 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.6.2-RELEASE #0: Wed Aug 14 21:23:26 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium 4 (2019.90-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febfbff,ACC> real memory = 536805376 (524224K bytes) config> di sn0 config> di lnc0 config> di ie0 config> di fe0 config> di ed0 config> di cs0 config> di bt0 config> di aic0 config> di aha0 config> di adv0 config> q avail memory = 517378048 (505252K bytes) Preloaded elf kernel "kernel" at 0xc04d0000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc04d009c. md0: Malloc disk Using $PIR table, 12 entries at 0xc00fdea0 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 sio0: <3COM PCI FaxModem> port 0xa000-0xa007 irq 9 at device 4.0 on pci2 sio0: moving to sio4 sio4: type 16550A ohci0: mem 0xee000000-0xee000fff irq 10 at device 7.0 on pci2 usb0: OHCI version 1.0 usb0: on ohci0 usb0: USB revision 1.0 uhub0: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 3 ports with 3 removable, self powered ohci1: mem 0xee001000-0xee001fff irq 9 at device 7.1 on pci2 ohci1: Could not allocate irq device_probe_and_attach: ohci1 attach returned 6 pci2: at 7.2 irq 5 fxp0: port 0xa400-0xa43f mem 0xee003000-0xee003fff irq 11 at device 8.0 on pci2 fxp0: Ethernet address 00:20:ed:ab:7a:c9 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci2: (vendor=0x1274, dev=0x5880) at 10.0 irq 5 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xb000-0xb01f irq 10 at device 31.2 on pci0 usb1: on uhci0 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pci0: (vendor=0x8086, dev=0x2443) at 31.3 irq 9 uhci1: port 0xb800-0xb81f irq 11 at device 31.4 on pci0 usb2: on uhci1 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered orm0: Adult Listings!


These ladies only represent a small sample of our actual listings!

7666BXcM5-896KTEj3119qiCK3-792SLCD5089KwqQ2-132OpXV1779pgl54 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 17:26:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED7A437B401 for ; Fri, 18 Oct 2002 17:26:40 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58B2243EB1 for ; Fri, 18 Oct 2002 17:26:40 -0700 (PDT) (envelope-from daleco@daleco.biz) Received: from DaleCoportable [12.145.236.129] by mail.gbronline.com (SMTPD32-7.13) id A663129B027C; Fri, 18 Oct 2002 19:25:07 -0500 Message-ID: <018201c27705$bfd69c50$fa00a8c0@DaleCoportable> From: "DaleCo, S.P.---'the solutions people'" To: "Karen LaPaugh" , References: Subject: Re: UNIX operating system Date: Fri, 18 Oct 2002 19:23:28 -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 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "Karen LaPaugh" To: Sent: Friday, October 18, 2002 7:18 PM Subject: UNIX operating system > > Are there any limitations to this system? How much does it usually cost an > individual? > Hi, Karen .... last is first, first is last. FreeBSD is free. And, as the engineers say, "Do it with software." Yes, there are limitations to the system. As of this date, it has not yet solved world hunger or brought peace to the Middle East (or anywhere else AFAIK). It's a great (perhaps the best?) server operating system. And it has advantages over Linux as a desktop system in the opinion of many. One "cost" that should be mentioned, however, is a time-consuming, though perhaps not "difficult", learning curve. Want to ask some more specific questions? Feel free, then I could try to answer more specifically. Cheers, Kevin Kinsey DaleCo, S.P. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 17:47: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EFCF37B404 for ; Fri, 18 Oct 2002 17:47:08 -0700 (PDT) Received: from srv.flncs.com (srv.flncs.com [12.27.148.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id A025243E6E for ; Fri, 18 Oct 2002 17:47:07 -0700 (PDT) (envelope-from moti@flncs.com) Received: from windows (cable [12.164.45.65]) by srv.flncs.com (Postfix) with ESMTP id 1033810672; Fri, 18 Oct 2002 20:48:22 -0400 (EDT) Message-ID: <023901c27709$3af6f7b0$f901a8c0@windows> From: "Moti Levy" To: "Redmond Militante" , References: <20021018234041.GA28868@darkpossum> Subject: Re: favorite security software Date: Fri, 18 Oct 2002 20:48:24 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG on public server i run: portsentry tripwire swatch arpwatch ----- Original Message ----- From: "Redmond Militante" To: Sent: Friday, October 18, 2002 7:40 PM Subject: favorite security software To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 17:47:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89D9A37B401 for ; Fri, 18 Oct 2002 17:47:27 -0700 (PDT) Received: from mail.dubium.com (h24-78-225-134.vn.shawcable.net [24.78.225.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80A8C43E65 for ; Fri, 18 Oct 2002 17:47:25 -0700 (PDT) (envelope-from joe-dated-1035420567.6ba3af@dubium.com) Received: (qmail 68641 invoked from network); 19 Oct 2002 00:49:27 -0000 Received: from localhost (HELO fafner.dubium.com) ([127.0.0.1]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 19 Oct 2002 00:49:27 -0000 Content-Type: text/plain; charset="us-ascii" To: freebsd-questions@FreeBSD.ORG Subject: Trying to write a crash dump -> Trying to debug a kernel panic Date: Fri, 18 Oct 2002 17:48:04 -0700 X-Mailer: KMail [version 1.4] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200210181748.04434.joe@dubium.com> From: Joe Sotham X-Delivery-Agent: TMDA/0.62 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am trying to debug a boot time kernel panic. This is completely new territory for me and I need some help. I'm taking this one step at a time, the first step is to get a crash dump. This is a repeateable panic which occurs when I boot from my windows partition to my FreeBSD partition. Once the panic occurs, booting again clears the problem. Following the documentation in -http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug.html has gotten me so far, but I am stuck. I can trap and get dumped into the debugger (I think it's the debugger, the prompt is "db>"). However I am trying to get a core dump written and that's where I am having no success. 1) I've added the kernel debugging options -- options DDB #Debug Support makeoptions DEBUG=-g options KTRACE ---------------- 2) made and installed the kernel, 3) added the following params to the rc.conf file -- dumpdir="/var/crash" dumpdev="/dev/ad0s2b" ------------- where dumpdev corresponds to the swap device the fstab entry corresponds below. ---- /dev/ad0s2b none swap sw 0 0 ------------ 4) executed the command "dumpon -v /dev/ad0s2b" 5) rebooted to wwindows 6) rebooted to freeBSD -> panic -> "db> prompt" 7) At this point I examined a few commands, (e.g. trace, show reg) and finished with the "panic" command which according to the documentation at http://www.freebsd.org/doc/en_US.ISO8859-1/ \ books/developers-handbook/x9854.html "This will cause your kernel to dump core and reboot, so you can later analyze the core on a higher level with gdb. " 8) At which the system rebooted and came up, but with no core file -------------------------------------------------------- Joe Sotham -------------------------------------------------------- Christianity got over the difficulty of furious opposites by keeping them both and keeping them furious. - G.K. Chesterton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 18:38:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9872537B401 for ; Fri, 18 Oct 2002 18:38:56 -0700 (PDT) Received: from janeway.vonbek.dhs.org (bgm-24-94-58-56.stny.rr.com [24.94.58.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3B4343E7B for ; Fri, 18 Oct 2002 18:38:55 -0700 (PDT) (envelope-from syborg@stny.rr.com) Received: by janeway.vonbek.dhs.org (Postfix, from userid 507) id 3CBC04FC9F; Fri, 18 Oct 2002 21:35:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by janeway.vonbek.dhs.org (Postfix) with ESMTP id 3765A4A0E; Fri, 18 Oct 2002 21:35:07 -0400 (EDT) Date: Fri, 18 Oct 2002 21:35:07 -0400 (EDT) From: John Bleichert X-X-Sender: syborg@janeway.vonbek.dhs.org Reply-To: John Bleichert To: Karen LaPaugh Cc: freebsd-questions@FreeBSD.ORG Subject: Re: UNIX operating system In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 19 Oct 2002, Karen LaPaugh wrote: > Date: Sat, 19 Oct 2002 00:18:12 +0000 > From: Karen LaPaugh > To: freebsd-questions@FreeBSD.ORG > Subject: UNIX operating system > > > Are there any limitations to this system? How much does it usually cost an > individual? > FreeBSD is free for everyone. What exactly a 'limitation' is depends upon what your 'expectations' are. It's a great server opsys, but I use it as a desktop system and haven't found myself limited at all. Maybe some specific questions? Also, check this out: http://www.freebsd.org/projects/newbies.html and come back with any questions. JB # John Bleichert # http://vonbek.dhs.org/latest.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 18:59:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC69A37B401 for ; Fri, 18 Oct 2002 18:59:43 -0700 (PDT) Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1EF843E8A for ; Fri, 18 Oct 2002 18:59:42 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from opal (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.11.6/8.11.6) with ESMTP id g9J1xdH13488 for ; Fri, 18 Oct 2002 21:59:39 -0400 (EDT) Date: Fri, 18 Oct 2002 21:59:37 -0400 (EDT) From: Zhihui Zhang X-Sender: zzhang@opal To: freebsd-questions@freebsd.org Subject: Connect two machines via plip0 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I tried to connect two machines with a parallel cable. Some configuration files are as follows: In file /etc/rc.conf, add following lines: inetd_enable="YES" hostname="pc1.myhome.org" ifconfig_lp0="inet 192.168.1.1 192.168.1.2 netmask 255.255.255.0" In file /etc/hosts, add the following line: 192.168.1.1 pc1.myhome.org pc1 192.168.1.2 pc2.myhome.org pc2 Of course, I do this on both machines (with necessary changes). But ping won't work. I have done this with the same machines and cable many times before. Only this time, I am using 4.6-release. Anything changes in 4.6-release or am i missing something? Do I have to explicitly enable ICMP or what? Thanks for any suggestions. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 19: 3:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7F6237B401 for ; Fri, 18 Oct 2002 19:03:37 -0700 (PDT) Received: from aji.wilshire.net (worm.wilshire.net [64.161.77.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CF543E97 for ; Fri, 18 Oct 2002 19:03:37 -0700 (PDT) (envelope-from rileyjmc@pacbell.net) Received: from emilyd (emilyd.wilshire.net [10.100.123.20]) by aji.wilshire.net (8.12.3/8.12.3) with SMTP id g9J21Zt2009053 for ; Fri, 18 Oct 2002 19:01:35 -0700 (PDT) (envelope-from rileyjmc@pacbell.net) From: "Riley" To: "FreeBSD Questions" Subject: Buildworld fails Date: Fri, 18 Oct 2002 19:03:35 -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 V6.00.2800.1106 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I've tried to buildworld for 4.7-R on two different 4.6.2-R-p2 machines. Both fail as follows. Source was downloaded separately for each machine 10/18/20 using release=cvs tag=RELENG_4_7 Am I missing something? Any suggestions? Thanks, Riley Always do right. This will gratify some people and astonish the rest. -- Mark Twain sh /usr/src/tools/install.sh -C -o root -g wheel -m 444 /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/encoding.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/hash.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/objc-api.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/objc-list.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/objc.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/runtime.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/sarray.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/thr.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/typedstream.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/NXConstStr.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/Object.h /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/Protocol.h /usr/obj/usr/src/i386/usr/include/objc ===> gnu/lib/libg2c sh /usr/src/tools/install.sh -C -o root -g wheel -m 444 libg2c.a /usr/obj/usr/src/i386/usr/lib sh /usr/src/tools/install.sh -s -o root -g wheel -m 444 libg2c.so.1 /usr/obj/usr/src/i386/usr/lib ln -fs libg2c.so.1 /usr/obj/usr/src/i386/usr/lib/libg2c.so sh /usr/src/tools/install.sh -C -o root -g wheel -m 444 /usr/src/gnu/lib/libg2c/g2c.h /usr/obj/usr/src/i386/usr/include 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 19:16:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DDBB37B401 for ; Fri, 18 Oct 2002 19:16:53 -0700 (PDT) Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0253B43E7B for ; Fri, 18 Oct 2002 19:16:52 -0700 (PDT) (envelope-from bastill@sa.apana.org.au) Received: from BAPhD (dialup-8.pasa.apana.org.au [203.14.158.137]) by tierzero.apana.org.au (8.11.1/8.11.1) with ESMTP id g9J2Gbp53280; Sat, 19 Oct 2002 11:46:39 +0930 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: Matthew Seaman , freebsd-questions@FreeBSD.ORG Subject: Re: CPU Temperature Date: Sat, 19 Oct 2002 11:48:31 +0930 User-Agent: KMail/1.4.3 References: <1034878060.2e2b2920jud@myrealbox.com> <20021017192143.GA92333@happy-idiot-talk.infracaninophi> In-Reply-To: <20021017192143.GA92333@happy-idiot-talk.infracaninophi> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200210191148.31586.bastill@sa.apana.org.au> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 18 Oct 2002 04:51 am, Matthew Seaman wrote: > > The author also has FVCool, a CPU cooling utility. It > > reduces my CPU temp by 14 or 15 degrees C (from 46 to > > 32 or 31). Again, it's native and easy to install. > > (BTW, yes I do have CPU_SUSP_HLT in my kernel options. > > This utility is obviously doing something the kernel > > option isn't. The author says the same thing the > > utility does can be accomplished with pciconf, but I > > don't know how.) The port for fvcool seems to be broken - the only source of the tar.gz file produces a 154byte file with a bad checksum. Any advice you can offer? -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 19:18:31 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F2AC37B401 for ; Fri, 18 Oct 2002 19:18:30 -0700 (PDT) Received: from alpha.yumyumyum.org (dsl092-171-091.wdc1.dsl.speakeasy.net [66.92.171.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7C6C43E91 for ; Fri, 18 Oct 2002 19:18:24 -0700 (PDT) (envelope-from culverk@yumyumyum.org) Received: from alpha.yumyumyum.org (localhost [127.0.0.1]) by alpha.yumyumyum.org (8.12.6/8.12.5) with ESMTP id g9J2I1ue013206; Fri, 18 Oct 2002 22:18:02 -0400 (EDT) (envelope-from culverk@yumyumyum.org) Received: from localhost (culverk@localhost) by alpha.yumyumyum.org (8.12.6/8.12.5/Submit) with ESMTP id g9J2I1gk013203; Fri, 18 Oct 2002 22:18:01 -0400 (EDT) (envelope-from culverk@yumyumyum.org) X-Authentication-Warning: alpha.yumyumyum.org: culverk owned process doing -bs Date: Fri, 18 Oct 2002 22:18:01 -0400 (EDT) From: Kenneth Culver To: Simon1 Cc: questions@FreeBSD.ORG Subject: Re: ABIT KX7-333R In-Reply-To: <4.2.0.58.20021018193239.00aac8f8@192.168.5.1> Message-ID: <20021018221736.X13197-100000@alpha.yumyumyum.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=-1.7 required=5.0 tests=IN_REP_TO,X_AUTH_WARNING,TO_LOCALPART_EQ_REAL, NO_MX_FOR_FROM,AWL version=2.31 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have this motherboard and have not seen any problems. If you are seeing problems I'd suggest tweaking your bios a bit... That always helps me... Ken On Fri, 18 Oct 2002, Simon1 wrote: > As a follow up to my initial post: > > A brand new board, with new memory, and a new processor failed to fix the > problem. This newest board comes from a different supplier & etc & etc. I'm > currently installing Win2k on the system to see if it has the same problems. > > I'm still seeing that the cards are not working properly, I haven't tried > the RAID yet on the new board. Setting the speed down to 10Mb seems to > greatly help the Intel card out (as in, it actually works). But, any faster > than that... I went ahead and made two new cables, it'll light up the link > at 100Mbit, but transfers on this card max out at 100k/sec down, and more > like 1 or 2 k/sec upload. > > The only difference I can see between this board and the past ones that > have worked flawlessly is the VIA KT333 chipset. Does FreeBSD have any > known problems with this chipset? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 18 19:23:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B3AF37B401 for ; Fri, 18 Oct 2002 19:23:23 -0700 (PDT) Received: from smtp1.san.rr.com (smtp1.san.rr.com [24.25.195.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id E881F43E42 for ; Fri, 18 Oct 2002 19:23:22 -0700 (PDT) (envelope-from Hostmaster@Video2Video.Com) Received: from 24-161-168-112.san.rr.com (24-161-168-112.san.rr.com [24.161.168.112]) by smtp1.san.rr.com (8.11.4/8.11.4) with ESMTP id g9J2NMR25977 for ; Fri, 18 Oct 2002 19:23:22 -0700 (PDT) Date: Fri, 18 Oct 2002 19:24:12 -0700 (PDT) From: Peter Leftwich X-X-Sender: root@dhcp-407-32.san.rr.com To: FreeBSD Questions LIST Subject: learning about ./configure and pkg-config Message-ID: <20021018191820.Y6234-100000@dhcp-407-32.san.rr.com> Organization: Video2Video Services - http://Www.Video2Video.Com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I downloaded the following from gnome.org "bonobo-activation-1.0.3.tgz" and gunzipped then untarred it and changed to the resulting directory. When I ran `./configure` it got through most checks fine, except for the pkg-config ones near the end. Here is the output: "... checking for pkg-config... /usr/local/bin/pkg-config checking for gmodule-2.0 >= 2.0.1 ORBit-2.0 >= 2.4.0 linc >= 0.5.1... Requested 'ORBit-2.0 >= 2.4.0' but version of ORBit-2.0 is 2.3.109 configure: error: Library requirements ( gmodule-2.0 >= 2.0.1 ORBit-2.0 >= 2.4.0 linc >= 0.5.1) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." Once this happened, I went searching simply for a download of the latest gmodule file but couldn't find anything pertinent! Since the error above said to consider adjusting PKG_CONFIG_PATH (currently not set), I read the manpage for pkg-config: "pkg-config retrieves information about packages from special metadata files. These files are named after the package, with the extension .pc. By default, pkg-config looks in the directory prefix/lib/pkgconfig for these files; it will also look in the colon-separated (on Windows, semicolon- separated) list of directories specified by the PKG_CONFIG_PATH environment variable." I couldn't find my ..../lib/pkgconfig directory or locate sample PKG_CONFIG_PATH statements on the web. Can someone clue me in please? -- Peter Leftwich President & Founder Video2Video Services Box 13692, La Jolla, CA, 92039 USA +1-413-403-9555 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 19:31:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DE1537B401 for ; Fri, 18 Oct 2002 19:31:22 -0700 (PDT) Received: from calico.dreamhaven.org (bdsl.66.12.17.211.gte.net [66.12.17.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B71D43EAF for ; Fri, 18 Oct 2002 19:31:19 -0700 (PDT) (envelope-from data@dreamhaven.org) Received: from data (helo=localhost) by calico.dreamhaven.org with local-esmtp (Exim 4.05) id 182jOL-000FFu-00 for freebsd-questions@freebsd.org; Fri, 18 Oct 2002 19:31:05 -0700 Date: Fri, 18 Oct 2002 19:31:05 -0700 (PDT) From: Bryce Newall To: FreeBSD Questions List Message-ID: MIME-Version: 1.0 Subject: FreeBSD 4.7 on Dell Latitude - interesitng problems Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=0.0 required=7.5 tests=none version=2.31 X-Spam-Level: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all, I'm running FreeBSD 4.7-STABLE on my Dell Latitude C600. I've run into a couple of interesting problems that I'm wondering if anyone else has had experience with, and may be able to help me: 1) I compiled a custom kernel, and like clockwork, every OTHER time I boot the machine, it hangs after detecting the parallel port. It hangs up between: ppi0: on ppbus0 and ata1-slave: ATA identify retries exceeded ad0: 19077MB [38760/16/63] at ata0-master UDMA33 The rest coming from a good boot, obviously. (The above is interesting, too -- I did not compile support for ata1 into my kernel, only ata0.) Kernel config file available upon request. As far as I've been able to tell, this did not happen with the Generic kernel. 2) Along with my C600, I have a C/Port II port replicator. When the laptop is docked, when I fire up X, it turns on the laptop's LCD display (even thought he lid is closed) and turns off my external monitor. When I shut down X (which I have to do using Ctrl-Alt-Backspace, because I can't see the screen), the display returns to the external monitor. Any ideas on either of the above? Thanks in advance! ********************************************************* * Bryce Newall * Email: data@dreamhaven.org * * www.dreamhaven.org/~data * * "Computers make very fast, very accurate mistakes." * ********************************************************* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 19:59:41 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41CAF37B401 for ; Fri, 18 Oct 2002 19:59:40 -0700 (PDT) Received: from field.videotron.net (field.videotron.net [205.151.222.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC30843E9C for ; Fri, 18 Oct 2002 19:59:39 -0700 (PDT) (envelope-from dinz@videotron.ca) Received: from pantagruel ([24.200.100.119]) by field.videotron.net (Sun Internet Mail Server sims.3.5.1999.12.14.10.29.p8) with SMTP id <0H47008A8KBD65@field.videotron.net> for freebsd-questions@FreeBSD.ORG; Fri, 18 Oct 2002 22:59:37 -0400 (EDT) Date: Fri, 18 Oct 2002 22:59:07 -0400 From: Daniel Inzirillo Subject: Can't get to Internet - Tinker with /etc/hosts? To: Freebsd-Questions Message-id: MIME-version: 1.0 X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit Importance: Normal X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Priority: 3 (Normal) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have two machines connected to a router using DHCP. One is a freshly installed FreeBSD 4.7, the other one runs Linux. They can ping each other. I can access the Internet from the Linux machine, but not from FreeBSD. On starting up, Gnome gave me a message to the effect that it couldn't resolve the host name, and may be to go edit /etc/hosts. Is it likely that I need to add anything to /etc/hosts to fix my problem? What? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 20:12:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A15237B401 for ; Fri, 18 Oct 2002 20:12:50 -0700 (PDT) Received: from axon.CS.McGill.CA (axon.CS.McGill.CA [132.206.3.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54F0A43EA3 for ; Fri, 18 Oct 2002 20:12:49 -0700 (PDT) (envelope-from carlton@cs.mcgill.ca) Received: from localhost (carlton@localhost) by axon.CS.McGill.CA (8.11.3/8.11.3) with ESMTP id g9J3CmR26473 for ; Fri, 18 Oct 2002 23:12:48 -0400 (EDT) (envelope-from carlton@cs.mcgill.ca) X-Authentication-Warning: axon.CS.McGill.CA: carlton owned process doing -bs Date: Fri, 18 Oct 2002 23:12:48 -0400 (EDT) From: Carlton Roy DAVIS To: freebsd-questions@FreeBSD.ORG Subject: Unable to input French characters Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have unable to configure my FreeBSD 4.4-RELEASE machine so that I can enter French characters; for example to be able to use pine to write a French email (with the necessary French accents). I install the french port and followed the instruction at http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/using-localization.html; however, I am still not able to. I am using KDE 3.3. When I switch to French keyboard setup in KDE and try to enter a French character, the system just beeps and nothing is displayed. On my Linux box, things work find: I get all the French characters but I just can't seems to make it happen on my FreeBSD box. Any idea as to what I can do to resolve this issue? Thanks much in advance. -Carlton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 20:24:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 038F137B401 for ; Fri, 18 Oct 2002 20:24:11 -0700 (PDT) Received: from domestos.yandex.ru (domestos.yandex.ru [213.180.193.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86C2F43E8A for ; Fri, 18 Oct 2002 20:24:10 -0700 (PDT) (envelope-from max@freecall.ru) Received: from [202.104.189.20] ([202.104.189.20]:61851 "EHLO Sender" ident: "NO-IDENT-SERVICE[2]" whoson: "-unregistered-" smtp-auth: "sock3sock" TLS-CIPHER: TLS-PEER: ) by mail.yandex.ru with ESMTP id ; Sat, 19 Oct 2002 07:23:54 +0400 From: "freecall" Subject: =?ISO-8859-1?Q?=D2=EE=EB=FC=EA=EE?= =?ISO-8859-1?Q?=E4=EB=FF?= =?ISO-8859-1?Q?=EF=EE=EB=FC=E7=EE=E2=E0=F2=E5=EB=E5=E9?= GSM Reply-To: max@freecall.ru X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Date: Sat, 19 Oct 2002 07:23:55 +0400 Message-Id: <20021019032404Z982366-16454+193@mail.yandex.ru> To: unlisted-recipients: ;(no To-header on input) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Çäðàâñòâóéòå! Ïðîñèì èçâèíèòü åñëè ýòî ïèñüìî Âàì íå èíòåðåñíî Âàø àäðåñ âçÿò èç îòêðûòûõ èñòî÷íèêîâ Íå ìíîãî ëè ìû ïëàòèì çà ðàçãîâîðû ïî ñîòîâîìó òåëåôîíó???? Ïðåäëàãàåì îçíàêîìèòüñÿ ñ òåì, ÷òî ìû ïðåäëàãàåì, ÷òîáû ïëàòèòü çíà÷èòåëüíî ìåíüøå Åñëè Âàì ýòî èíòåðåñíî-íàïèøèòå íà àäðåñ freecall@myrealbox.com è ìû ïðèøëåì Âàì ïîëíóþ èíôîðìàöèþ î ïðîãðàììå (â òåìå ïèñüìà íàïèøèòå: çàïðîñ) Íàøà ïðîãðàììà â òå÷åíèè äâóõ ëåò î÷åíü õîðîøî ñåáÿ çàðåêîìåíäîâàëà Ñ óâàæåíèåì FREECALL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 20:39:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E269C37B401 for ; Fri, 18 Oct 2002 20:39:42 -0700 (PDT) Received: from wonkity.com (wonkity.com [63.93.4.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57CBC43E3B for ; Fri, 18 Oct 2002 20:39:42 -0700 (PDT) (envelope-from wblock@wonkity.com) Received: from wonkity.com (localhost.wonkity.com [127.0.0.1]) by wonkity.com (8.12.1/8.11.6) with ESMTP id g9J3dfuF068618; Fri, 18 Oct 2002 21:39:41 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.12.1/8.12.1/Submit) with ESMTP id g9J3dfwB068615; Fri, 18 Oct 2002 21:39:41 -0600 (MDT)?g (envelope-from wblock@wonkity.com) Date: Fri, 18 Oct 2002 21:39:41 -0600 (MDT) From: Warren Block To: TheGlenMann Cc: freebsd-questions@FreeBSD.ORG Subject: Re: LPD protocol screwup and ctl_renametf error In-Reply-To: <4403.12.151.4.177.1034961129.squirrel@webmail.suscom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 18 Oct 2002, TheGlenMann wrote: > In windows I have a printer HP LaserJet 6L, with the correct driver, using > standard TCP/IP port 192.168.1.205 (where I have FreeBSD/LPD). The port is > set as LPR and the Queue name is hp6LServ. The windows machine does > communicate with LPD, but... > > On FreeBSD I run lpd -c -l -W, and `cat textfile | lpr -P hp6LServ' works > fine. When I send the test page from Windows, though, I get these errors: > > Oct 18 12:45:33 ux-01 lpd[578]: lt_gmann.domain.com requests recvjob > hp6LServ > Oct 18 12:45:38 ux-01 lpd[578]: Error receiving job from > lt_gmann.domain.com: > Oct 18 12:45:38 ux-01 lpd[578]: protocol screwup: ^[%-12345X@PJL SET > PAGEPROTECT=AUTO Please show your /etc/printcap entry for this printer. Just as a side thought, do you have the Windows machine's IP address in /etc/hosts.lpd? -Warren Block * Rapid City, South Dakota USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 20:49:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C83137B401 for ; Fri, 18 Oct 2002 20:49:27 -0700 (PDT) Received: from serv1.wallnet.com (server1.wallnet.com [208.225.162.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C4E843E88 for ; Fri, 18 Oct 2002 20:49:26 -0700 (PDT) (envelope-from timothyk@serv1.wallnet.com) Received: (from root@localhost) by serv1.wallnet.com (8.11.5/8.11.5) id g9J3nOw49396 for questions@freebsd.org; Fri, 18 Oct 2002 23:49:24 -0400 (EDT) (envelope-from timothyk@serv1.wallnet.com) Received: from localhost (timothyk@localhost) by serv1.wallnet.com (8.11.5/8.11.5av) with ESMTP id g9J3nNQ49388 for ; Fri, 18 Oct 2002 23:49:23 -0400 (EDT) (envelope-from timothyk@serv1.wallnet.com) X-Authentication-Warning: serv1.wallnet.com: timothyk owned process doing -bs Date: Fri, 18 Oct 2002 23:49:23 -0400 (EDT) From: Tim Kellers To: Subject: USB/Ethernet oddity (kue driver) Message-ID: <20021018232254.Q47169-100000@serv1.wallnet.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ADS Technologies USB --> Ethernet driver P/N: UBS-10BT OS tested on: 4.6.2-RELEASE, 4.7-STABLE (as of 10/17/2002) Platform: Toshiba Satellite 4100, Dell Latitude C600 I've been driving myself crazy (off and on) the past 2 weeks trying to get the USB/Ethernet adapter (using the kue device) working on 2 different laptops. When I plugged the USB/Ethernet adapter in and booted the computer, the boot process went smoothly, configuring (static IP) the USB/Ethernet apadter using /stand/sysinstall went smoothly --although I had to use an /etc/netstart to actually bring the interface up and active. But, on reboot, the kernel loading just stopped before loading the kue driver: From dmesg uhci0: port 0xdce0-0xdcff irq 11 at d usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered And there the boot process just stopped. When I powered the laptop(s) off and rebooted, dmesg said: usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered kue0: ADS Tech USB-Ethernet, rev 1.00/0.08, addr 2 kue0: Ethernet address: 00:50:c5:00:1e:1c bpf: kue0 attached and booting continued. After a LOT of screwing around with /etc/rc.conf, changing adapters, reading groups.google.com, etcetera: I accidentally discovered that "shutdown -p now" now allowed the adapter and configuration to load just fine, but that "reboot" (which I Always used) hung the kernel at the kue load prompt. I have never run into a situation where a cold boot rather than a warm boot (reboot) was required in FreeBSD. I don't think I've ever run into it in Windows Whatever or MacOS, either. I guess my questions are: Have I run into something new, here, that no one else has? Have I run into something here that everyone (but me) knows about and is just undocumented? (or) Have I run into something here that is well-documented but I just failed to find in the mailing list archives or the handbook? or Did I trip a bug, somehow? This thing drove me nuts for a long enough time that I'd appreciate any answers or opinions anyone might have. Thanks, Tim Kellers CPE/NJIT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 20:53:27 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EE9337B401 for ; Fri, 18 Oct 2002 20:53:26 -0700 (PDT) Received: from ns1.webwarrior.net (overlord-host99.dsl.visi.com [209.98.86.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A8E143E42 for ; Fri, 18 Oct 2002 20:53:25 -0700 (PDT) (envelope-from friar_josh@webwarrior.net) Received: by ns1.webwarrior.net (Postfix, from userid 1003) id DBE4E25304; Sat, 19 Oct 2002 04:57:27 -0500 (CDT) Date: Sat, 19 Oct 2002 04:57:27 -0500 From: Josh Paetzel To: David Loszewski Cc: freebsd-questions@freebsd.org Subject: Re: problem with network cards in server, plz help! Message-ID: <20021019095727.GA14918@ns1.webwarrior.net> References: <3DB1544C.7060708@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3DB1544C.7060708@attbi.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 07:47:08AM -0500, David Loszewski wrote: > I have two different cards on my Netfinity 5000 server, a pci Netgear > FA311 (showing up as a NatSemi (sis0), and the onboard network card > which seems to have an AMD chipset (pcn0). If I have the onboard > ethernet card enabled at all and have an active cable connected to it > and restart the computer it comes up on ukphy0, turns the pci error > light on and I get no internet access which it later makes the computer > reboot automatically without any warning. If I disable that card and > put in a PCI Netgear card, have also tried other cards such as Intel or > IBM cards, once in a while it will boot normally but every once in a > while it will get hung up on the ukphy0 as well, giving me the same > problem as the onboard network and reboot itself. At first I thought it > was an IRQ problem but all of my devices now have individual IRQ's set > in the bios and I'm still having this problem. I'm afraid to reboot > this thing because I'm afraid it won't be coming back up. Below are > from my dmesg, the first is when I have my onboard ethernet enabled and > the second is when I have the netgear installed. Any help would be much > appreciated on what to do with this problem. By the way....I'm running > on FreeBSD 4.6.2 but also have this problem running 4.7, I it also > usually hangs on the driver initialization during installation of the os. > > Dave > > Oct 4 21:11:36 hermes /kernel: pcn0: port > 0x2180-0 > x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0 > Oct 4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9 > Oct 4 21:11:36 hermes /kernel: miibus0: on pcn0 > Oct 4 21:11:36 hermes /kernel: ukphy0: interface> on > miibus0 > Oct 4 21:11:36 hermes /kernel: ukphy0: 10baseT, 10baseT-FDX, > 100baseTX, 100bas > eTX-FDX, auto > > > pcib1: on motherboard > pci1: on pcib1 > sis0: port 0x4b00-0x4bff mem > 0xc0fdf000-0xc0fdffff irq 5 at device 4.0 on pci1 > sis0: Ethernet address: 00:a0:cc:76:d9:f1 > miibus0: on sis0 > ukphy0: on miibus0 > ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > Do you have the Plug N Play OS option in the BIOS turned off? If it isn't, set it to NO or OFF as the case may be and try again. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 20:55:52 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72E6F37B401 for ; Fri, 18 Oct 2002 20:55:51 -0700 (PDT) Received: from ns1.webwarrior.net (overlord-host99.dsl.visi.com [209.98.86.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B7743E8A for ; Fri, 18 Oct 2002 20:55:51 -0700 (PDT) (envelope-from friar_josh@webwarrior.net) Received: by ns1.webwarrior.net (Postfix, from userid 1003) id E725A25304; Sat, 19 Oct 2002 04:59:53 -0500 (CDT) Date: Sat, 19 Oct 2002 04:59:53 -0500 From: Josh Paetzel To: Daniel Inzirillo Cc: Freebsd-Questions Subject: Re: Can't get to Internet - Tinker with /etc/hosts? Message-ID: <20021019095953.GB14918@ns1.webwarrior.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Oct 18, 2002 at 10:59:07PM -0400, Daniel Inzirillo wrote: > I have two machines connected to a router using DHCP. > One is a freshly installed FreeBSD 4.7, the other one runs Linux. > They can ping each other. > I can access the Internet from the Linux machine, but not from FreeBSD. > On starting up, Gnome gave me a message to the effect that it couldn't > resolve the host name, and may be to go edit /etc/hosts. > > Is it likely that I need to add anything to /etc/hosts to fix my problem? > What? > netstat -nr should show the IP of the router as the default route. You might also check ifconfig and make sure your network card is picking up an ip. Try to ping an internet host by ip as well (209.98.98.98 will work) to ensure it's not just a name resolution issue. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 21:16:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DB2A37B401 for ; Fri, 18 Oct 2002 21:16:56 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90E6343EE1 for ; Fri, 18 Oct 2002 21:16:55 -0700 (PDT) (envelope-from daleco@daleco.biz) Received: from DaleCoportable [12.145.226.106] by mail.gbronline.com (SMTPD32-7.13) id A623A9B6024C; Fri, 18 Oct 2002 22:48:51 -0500 Message-ID: <043f01c27722$2adf0ed0$fa00a8c0@DaleCoportable> From: "DaleCo, S.P.---'the solutions people'" To: "Daniel Inzirillo" , "Freebsd-Questions" References: Subject: Re: Can't get to Internet - Tinker with /etc/hosts? Date: Fri, 18 Oct 2002 22:46:53 -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 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "Daniel Inzirillo" To: "Freebsd-Questions" Sent: Friday, October 18, 2002 9:59 PM Subject: Can't get to Internet - Tinker with /etc/hosts? > I have two machines connected to a router using DHCP. > One is a freshly installed FreeBSD 4.7, the other one runs Linux. > They can ping each other. > I can access the Internet from the Linux machine, but not from FreeBSD. > On starting up, Gnome gave me a message to the effect that it couldn't > resolve the host name, and may be to go edit /etc/hosts. > > Is it likely that I need to add anything to /etc/hosts to fix my problem? > What? Not as likely as some others, I think. What happens when you attempt to ping the router from the FBSD box? What was Gnome message, exactly? FBSD needs to have an interface with an configured IP, a gateway route, and name service to access the Internet. Here's a bit from one of my boxes: contents of /etc/resolv.conf: domain daleco.biz nameserver 192.168.11.1 <-----that's the IP of the router, which queries nameservers and gives the DNS info to the box partial contents of /etc/rc.conf: defaultrouter="192.168.11.1" hostname="ezekiel.daleco.biz" ifconfig_dc0="inet xxx.xxx.xxx.xxx netmask 255.255.255.0" As long as the router is connected and serves DNS info, and does NAT, you should be able to connect. If the router does DHCP, replace the quoted material after "ifconfig" with "DHCP" and watch it go. HTH, Kevin Kinsey DaleCo, S.P. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 21:42:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AA737B401; Fri, 18 Oct 2002 21:42:20 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FBF643E91; Fri, 18 Oct 2002 21:42:19 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.3/8.12.3) with ESMTP id g9J4gCpk052997; Fri, 18 Oct 2002 22:42:18 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 18 Oct 2002 22:41:50 -0600 (MDT) Message-Id: <20021018.224150.11622783.imp@bsdimp.com> To: kutulu@kutulu.org Cc: freebsd-questions@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: Missing vendor info for generic Realtek clone (FBSD4.6) From: "M. Warner Losh" In-Reply-To: <004601c276df$12e75410$29330f0a@lcapps.educate.com> References: <004601c276df$12e75410$29330f0a@lcapps.educate.com> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <004601c276df$12e75410$29330f0a@lcapps.educate.com> "Kutulu" writes: : What steps can I take to locate the correct pccard configuration to use this : card? The rl driver is a cardbus driver, which is only supported in -current. 5.0 will be released soon, and that will solve your problems. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 21:53:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C11A37B401 for ; Fri, 18 Oct 2002 21:53:50 -0700 (PDT) Received: from yam.com (sw59-226-213.adsl.seed.net.tw [61.59.226.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABC5143E8A for ; Fri, 18 Oct 2002 21:53:48 -0700 (PDT) (envelope-from gotomyvcd@yam.com) From: "MyDVD" Subject: =?Big5?B?obShaadBu3ussERWRLx2pPmr3LZRttyhag==?= To: freebsd-questions@FreeBSD.ORG Content-Type: text/plain;charset="BIG5" Reply-To: gotomyvcd@yam.com Date: Sat, 19 Oct 2002 12:53:24 +0800 X-Priority: 3 X-Mailer: Microsoft Outlook Express 5.00.2615.200 Message-Id: <20021019045348.ABC5143E8A@mx1.FreeBSD.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ¡´¡i§A»{¬°DVD¼v¤ù«Ü¶Q¶Ü¡j DVD¼vºÐ¤ù¦Ñ¦r¸¹... ºô§} http://gotomydvd.moviespage.com/ ¬P»Ú¤j¦û¤G³¡¦±...¦Bªe¾úÀI°O..«i¤h­Ì..¥þ¥x³Ì§C»ù...²{¦b¶R¤­®M°e¤@®M³á ¡´ÂàÅý©Î¦X§@¤Qµó©@°ØÀ](·|ÁÈ¿ú³á) ¦ì©ó¡iªF²ðªø¦wÂíÀA·H·s§øÀA·H¼v¼@°|¥¿¹ï­±¡j ¥Ø«e¡i«ù¥­Àç·~¤¤¡j... ¦]§Ú¦b¥xÆW-¤j³°¨Æ°ÈÁc¦£µLªk¨â©¤­ÝÅU... ¬G½â»ù·GÅý©Î¤@°_¦X§@¥´«÷ªº¦³½t¤H ©Ò¦³§Þ³N»P¹q¸£¸ê®ÆÂಾ..¥]¬ACIS¥ø·~ÃѧO¨t²Î ¥»¤H¨C¤ë¥i¥HÀ°¦£¨ó§U§A10~15¤Ñ¦]¬°¦bªø¦wÁÙ¦³¨Æ°È­n¿ì ¡i­ì©lÁ`§ë¸ê46rmb(¦³³æ¾Ú) ²{¦b½â»ù18¸Urmb¥XÅý100%ªÑÅv¡j ½Ð³t»P§ÚÁpô±Í©Ê¼B (¦]¬°¤j³°¤H¤w¦b¬¢½Í¤¤¥u¬O§Ú¤£¤jÄ@·N©ñ§Ú§Æ±æµ¹¥xÆW¤H) ¥xÆW0949-243-815 0955-355-133 ¤¤°ê 13825789734 (10/27¸¹¥H«á·|³q) mail: child@vot.url.com.tw ¤Qµóºô­¶ http://10streetcafe.2282.net/ http://gotomydvd.xxking.com/10streetcaf'e.htm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 21:54:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D5AE37B401 for ; Fri, 18 Oct 2002 21:54:22 -0700 (PDT) Received: from falla.videotron.net (falla.videotron.net [205.151.222.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8621F43E65 for ; Fri, 18 Oct 2002 21:54:21 -0700 (PDT) (envelope-from dinz@videotron.ca) Received: from there ([24.200.100.119]) by falla.videotron.net (Sun Internet Mail Server sims.3.5.1999.12.14.10.29.p8) with SMTP id <0H470052CPMF2J@falla.videotron.net> for freebsd-questions@FreeBSD.ORG; Sat, 19 Oct 2002 00:54:16 -0400 (EDT) Date: Sat, 19 Oct 2002 00:50:40 -0400 From: "Daniel A. Inzirillo" Subject: Re: Can't get to Internet - Tinker with /etc/hosts? In-reply-to: <043f01c27722$2adf0ed0$fa00a8c0@DaleCoportable> To: "DaleCo, S.P.---'the solutions people'" , Freebsd-Questions Cc: dinz@videotron.ca Message-id: <0H470052DPMF2J@falla.videotron.net> MIME-version: 1.0 X-Mailer: KMail [version 1.3.1] Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8bit References: <043f01c27722$2adf0ed0$fa00a8c0@DaleCoportable> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 18 October 2002 11:46 pm, DaleCo, S.P.---'the solutions people' wrote: > ... What happens when you attempt > to ping the router from the FBSD box? No problem, pinged it gets. It can also ping beyond the router, like 209.98.98.98 (as was suggested by Josh). Also, ifconfig shows that the IP address is the correct one (as from the router's table) > > What was Gnome message, exactly? (The machine is named Pantagruel) "Could not look up internet address for Pantagruel. This will prevent GNOME from operating correctly. It may be possible to correct the problem by adding Pantagruel to the file /etc/conf" > FBSD needs to have an interface > with an configured IP, a gateway route, and name service to access > the > Internet. > > Here's a bit from one of my boxes: > > contents of /etc/resolv.conf: I do not have an /etc/resolv.conf file. Should I? My router is serving DHCP (and of course, doing NAT) > > domain daleco.biz > nameserver 192.168.11.1 <-----that's the IP of the router, > which queries > nameservers and > gives the DNS info to the box > > partial contents of /etc/rc.conf: > > defaultrouter="192.168.11.1" > hostname="ezekiel.daleco.biz" > ifconfig_dc0="inet xxx.xxx.xxx.xxx netmask 255.255.255.0" > > As long as the router is connected and serves DNS info, and > does NAT, you should be able to connect. If the router > does DHCP, replace the quoted material after "ifconfig" with > "DHCP" and watch it go. > > HTH, > > Kevin Kinsey > DaleCo, S.P. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 22:22:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC5CD37B401 for ; Fri, 18 Oct 2002 22:22:30 -0700 (PDT) Received: from mail.gbronline.com (mail.gbronline.com [12.145.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A94C43E8A for ; Fri, 18 Oct 2002 22:22:30 -0700 (PDT) (envelope-from daleco@daleco.biz) Received: from DaleCoportable [12.145.226.106] by mail.gbronline.com (SMTPD32-7.13) id ABBAC410062; Sat, 19 Oct 2002 00:20:58 -0500 Message-ID: <051901c2772e$f8aa8180$fa00a8c0@DaleCoportable> From: "DaleCo, S.P.---'the solutions people'" To: "Daniel A. Inzirillo" , "Freebsd-Questions" Cc: References: <043f01c27722$2adf0ed0$fa00a8c0@DaleCoportable> <0H470052DPMF2J@falla.videotron.net> Subject: Re: Can't get to Internet - Tinker with /etc/hosts? Date: Sat, 19 Oct 2002 00:18:32 -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 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "Daniel A. Inzirillo" To: "DaleCo, S.P.---'the solutions people'" ; "Freebsd-Questions" Cc: Sent: Friday, October 18, 2002 11:50 PM Subject: Re: Can't get to Internet - Tinker with /etc/hosts? > On Friday 18 October 2002 11:46 pm, DaleCo, S.P.---'the solutions people' > wrote: > > ... What happens when you attempt > > to ping the router from the FBSD box? > > No problem, pinged it gets. It can also ping beyond the router, like > 209.98.98.98 (as was suggested by Josh). Also, ifconfig shows that the IP > address is the correct one (as from the router's table) > > > > > What was Gnome message, exactly? > > (The machine is named Pantagruel) > "Could not look up internet address for Pantagruel. > This will prevent GNOME from operating correctly. > It may be possible to correct the problem by adding > Pantagruel to the file /etc/conf" > Well that would look something like this: $more /etc/hosts # In case you want to be able to connect to the Internet, you need # real official assigned numbers. Do not try to invent your own network # numbers but instead get one from your network provider (if any). # 192.168.11.1 gateway 192.168.11.3 pantagruel.domain.tld pantagruel > > FBSD needs to have an interface > > with an configured IP, a gateway route, and name service to access > > the > > Internet. > > > > Here's a bit from one of my boxes: > > > > contents of /etc/resolv.conf: > > I do not have an /etc/resolv.conf file. Should I? My router is serving DHCP > (and of course, doing NAT) > > > > > domain daleco.biz > > nameserver 192.168.11.1 <-----that's the IP of the router, > > which queries > > nameservers and > > gives the DNS info to the box > > Yeah, I think it'd fix the issue. FBSD needs to know whom to query for names. Stick your router addy in there as above, if it will do DNS, if not, use your ISP's DNS server's IP. G'luck, KDK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 22:25:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D83EE37B401; Fri, 18 Oct 2002 22:25:49 -0700 (PDT) Received: from mailsvr1.eastern-tele.com (mail.imperialscan.com.ph [203.167.127.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 346A843E9E; Fri, 18 Oct 2002 22:25:49 -0700 (PDT) (envelope-from m-trade@hotpop.com) Received: from my.ezshell.net (unknown [206.142.244.15]) by mailsvr1.eastern-tele.com (Postfix) with ESMTP id 8B556340ED; Sat, 19 Oct 2002 13:25:43 +0800 (PHT) Content-Type: text/plain; charset="us-ascii" From: M-Trade Reply-To: m-trade@hotpop.com To: freebsd-multimedia@freebsd.org Subject: XVideo problem Date: Sat, 19 Oct 2002 13:25:46 +0800 User-Agent: KMail/1.4.3 Cc: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210191325.46261.m-trade@hotpop.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, When trying to run 'xine -V Xv', I get this error message: Xv extension is present but I couldn't find a usable yuv12 port xvinfo reports 'no adapter present' but it should be there, right? I'm using Nvidia TNT2 and XFree86-4.2.0_1,1. Xine works using=20 XShm. Need help. Thanks. David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 22:41:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 738D337B401 for ; Fri, 18 Oct 2002 22:41:54 -0700 (PDT) Received: from flamingo.mail.pas.earthlink.net (flamingo.mail.pas.earthlink.net [207.217.120.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D64C43E91 for ; Fri, 18 Oct 2002 22:41:54 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from sdn-ap-003dcwashp0483.dialsprint.net ([63.188.17.229] helo=moo.holy.cow) by flamingo.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 182mMw-0007Bb-00; Fri, 18 Oct 2002 22:41:51 -0700 Received: by moo.holy.cow (Postfix, from userid 1001) id 14602B995; Sat, 19 Oct 2002 01:44:34 -0400 (EDT) Date: Sat, 19 Oct 2002 01:44:33 -0400 From: parv To: freebsd-reply@akruijff.dds.nl Cc: Redmond Militante , freebsd-questions@freebsd.org Subject: Re: favorite security software Message-ID: <20021019054433.GA80785@moo.holy.cow> Mail-Followup-To: freebsd-reply@akruijff.dds.nl, Redmond Militante , freebsd-questions@freebsd.org References: <20021018234041.GA28868@darkpossum> <18415058332.20021019020210@dds.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18415058332.20021019020210@dds.nl> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG in message <18415058332.20021019020210@dds.nl>, wrote Alex thusly... > > I beleave it [ipfilter] also has a bit more options for a normal > firewall but no extra's like ipfw does. The later reason is way i > also run ipfw. I use it for the traffic shaping and traffic policy > only. i have been faithful to ipfilter for about last 2-4 years, mainly due to its stateful inspection. now ipfw does have it too. one thing that's most lustful going for ipfw is the new/improved syntax for specifying ports & such. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Oct 18 23: 1:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F4C337B401 for ; Fri, 18 Oct 2002 23:01:38 -0700 (PDT) Received: from webmail.vsnl.com (webmail.vsnl.com [202.54.1.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4A8643E97 for ; Fri, 18 Oct 2002 23:01:35 -0700 (PDT) (envelope-from info.pvi@vsnl.com) Received: by webmail.vsnl.com (Postfix, from userid 60001) id EEA01114965; Sat, 19 Oct 2002 11:30:56 +0530 (IST) Mime-Version: 1.0 X-Mailer: MIME-tools 4.102 (Entity 4.114) From: info.pvi@vsnl.com To: zxkg@fm365.com Subject: cotton yarn X-Mailer: VSNL, Web based email X-Sender-Ip: 61.1.111.108 Cc: Content-Type: multipart/mixed; boundary="----------=_1035007253-9726-0" Message-Id: <20021019060056.EEA01114965@webmail.vsnl.com> Date: Sat, 19 Oct 2002 11:30:56 +0530 (IST) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format... ------------=_1035007253-9726-0 Content-Type: text/plain Content-Disposition: inline Dear Sir, We, at P&V International, India, are international yarn sourcing agents dealing in 100% grey cotton yarns for weaving and knitting. We are a professionally managed group of people having different departments for inspection, online quality checking and timely delivery. We are basically raw cotton merchants and we are supplying cotton to many spinners of India. This gives us some special previlege to have better control over the quality of yarn and negotiations of prices. We can offer you ring spun yarn in carded and combed quality for knitting/weaving. We are authorised export agents of several spinning mills having latest machineries and who have been changing their machineries from time to time. All the mills to whom we represent are having siro clearers so the contamination in the yarn will go to minimum level. In short, we ensure committed quality of yarn and timely delivery and we know that we are worth for the service which we are providing. Kindly let us know your requiremetns of yarns and we assure you to give you prompt reply with our competitive prices. Your promt reply will be highly appreciated. Kindly note our standard parameters of yarn as per the attachment. Best Regards, Piyush Samani Partner CONTACT DETAILS : P&V INTERNATIONAL, TEL : 0091 233 622562 - 63 FAX : 0091 233 620805 CELL : 0091 98220 62077 URL : www.pandvinternational.com EMAIL : info.pvi@vsnl.com ------------=_1035007253-9726-0 Content-Type: application/vnd.ms-excel; name="COMBED HOSIERY SPECS.xls" Content-Disposition: inline; filename="COMBED HOSIERY SPECS.xls" Content-Transfer-Encoding: base64 0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAAB AAAAHgAAAAAAAAAAEAAA/v///wAAAAD+////AAAAAB0AAAD///////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////8JCBAAAAYFALsNzAdJAAAABgAAAOEAAgCwBMEA AgAAAOIAAABcAHAADQAAUGl5dXNoIFNhbWFuaSAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEIAAgCwBGEBAgAA AD0BBgABAAIAAwCcAAIADgAZAAIAAAASAAIAAAATAAIAAACvAQIAAAC8AQIA AAA9ABIAaAEPAEwsjBk4AAAAAAABAFgCQAACAAAAjQACAAAAIgACAAAADgAC AAEAtwECAAAA2gACAAAAMQAaAMgAAAD/f5ABAAAAAAAABQFBAHIAaQBhAGwA MQAaAMgAAAD/f5ABAAAAAAAABQFBAHIAaQBhAGwAMQAaAMgAAAD/f5ABAAAA AAAABQFBAHIAaQBhAGwAMQAaAMgAAAD/f5ABAAAAAAAABQFBAHIAaQBhAGwA MQAaAMgAAQD/f7wCAAAAAgAABQFBAHIAaQBhAGwAHgQcAAUAFwAAIiQiIywj IzBfKTtcKCIkIiMsIyMwXCkeBCEABgAcAAAiJCIjLCMjMF8pO1tSZWRdXCgi JCIjLCMjMFwpHgQiAAcAHQAAIiQiIywjIzAuMDBfKTtcKCIkIiMsIyMwLjAw XCkeBCcACAAiAAAiJCIjLCMjMC4wMF8pO1tSZWRdXCgiJCIjLCMjMC4wMFwp HgQ3ACoAMgAAXygiJCIqICMsIyMwXyk7XygiJCIqIFwoIywjIzBcKTtfKCIk IiogIi0iXyk7XyhAXykeBC4AKQApAABfKCogIywjIzBfKTtfKCogXCgjLCMj MFwpO18oKiAiLSJfKTtfKEBfKR4EPwAsADoAAF8oIiQiKiAjLCMjMC4wMF8p O18oIiQiKiBcKCMsIyMwLjAwXCk7XygiJCIqICItIj8/Xyk7XyhAXykeBDYA KwAxAABfKCogIywjIzAuMDBfKTtfKCogXCgjLCMjMC4wMFwpO18oKiAiLSI/ P18pO18oQF8p4AAUAAAAAAD1/yAAAAAAAAAAAAAAAMAg4AAUAAEAAAD1/yAA APQAAAAAAAAAAMAg4AAUAAEAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAIAAAD1 /yAAAPQAAAAAAAAAAMAg4AAUAAIAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAA AAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAU AAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg 4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAA AMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAA AAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQA AAAAAAAAAMAg4AAUAAAAAAABACAAAAAAAAAAAAAAAMAg4AAUAAEAKwD1/yAA APgAAAAAAAAAAMAg4AAUAAEAKQD1/yAAAPgAAAAAAAAAAMAg4AAUAAEALAD1 /yAAAPgAAAAAAAAAAMAg4AAUAAEAKgD1/yAAAPgAAAAAAAAAAMAg4AAUAAEA CQD1/yAAAPgAAAAAAAAAAMAg4AAUAAAAAAABACMAABAAAAAAAAAAAMAg4AAU AAUAAAABACAAAAgAAAAAAAAAAMAgkwIEABCAA/+TAgQAEYAG/5MCBAASgAT/ kwIEABOAB/+TAgQAAIAA/5MCBAAUgAX/YAECAAEAhQAOADYLAAAAAAYAU2hl ZXQxhQAOACsWAAAAAAYAU2hlZXQyhQAOACgXAAAAAAYAU2hlZXQzjAAEAAEA AQD8AFIBSgAAAB4AAAAFAABDT1VOVAkAAE5FMTYvMSBDSAkAAE5FMjAvMSBD SAkAAE5FMjQvMSBDSAkAAE5FMzAvMSBDSAkAAE5FMzIvMSBDSAkAAE5FMzQv MSBDSAkAAE5FMzYvMSBDSAkAAE5FNDAvMSBDSAkAAE5FNTAvMSBDSAkAAE5F NTYvMSBDSAkAAE5FNjAvMSBDSAoAAEFWRy4gQ09VTlQJAABDT1VOVCBDViUD AABDU1AHAABDU1AgQ1YlAgAAVSUOAABUSElOL0tNICgtNTAlKQ8AAFRISUNL L0tNICgrNTAlKQ8AAE5FUFMvS00gKCsyMDAlKQ0AAFRPVEFMIElNUC4vS00J AABIQUlSSU5FU1MEAABULk0uAwAAVFBJBAAAPDEuNQQAADw0LjAEAAA8Ny4w CQAATkUyNi8xIENIBwAAVFBJIENWJQQAADw1LjD/ABoECADKBQAADADkBiYG AABoAESIfwYAAMEAAADiBgAAJAEAAAAAAADuAIMd8r////9EAAAAAP9EZwEM lUCGAAADAP6lAzCdnv8XAAAAAM9AAAAMACAHZwEAAAdDAAAHFyVX9xcAAAAA z0AEAAAABAAAAAkEAAABAAAAXgexAAa4YgAAAAAAAAAAAJcBAAD3G/W/wLZi AA1jcjAAAAAAwLZiACcAAAAIAIcAJwAAAPEb9b8AMGIAJwAAAAgAhwAnAAAA 8K+dMAIAAAAAAQAAAQAAACOUAzAIAIcAJLhiABQAAABuuGIAwLhiACPJAjAg BwAACACHAE0AaQBjAHIAbwBzAG8AZgB0ACAARQB4AGMAZQBsACAALQAgAEMA TwBNAEIAAAAAAEnJcjBWB7EABAAAAP63YgAEAAAAAQAAAAQAAAD+t2IAVgex AAQAAAAGu2IAArliAAAAAAAAAAAA/wAAAAgAhwBEt2IAtIcAAJC3YgABAAAA 7h/SVgAAsIdwB7EAhOZTMKy3YgB0AAAAAAAAAAIAxzAAAMUwAADQhwKKAQDs Qvm/focMTQEAzCvrXm4wDgDHMNEAAADut2IA/AAAAAkAAACCsQMwAADFMNSi xzDRAAAA7rdiAP0AAADut2IA8LliAO7gAjDut2IAcAexAAAAAADwuWIAdAAA AAAAAABikhAwAAAAAOy3YgAHAAAA/////+wGsQAsumIAAAAAAAcAUABlAHIA YwBlAG4AdAAAAAAAAAAwAF0AAAC2FgAAyQAAAHBtPwS2FgAAZMRiAMQm979z HfK/ADBiAMkAAACaGwAwIAAAALUgAAAOuWIAXACHAAEAAABlEAAwXACHABZa VDACAAAAiRAAMBZaVDDSX1QwPWwQMLUaiQBUAIcAZRAAMFQAhwC1GokAAgAA ALGLEDC1GokAVACHAAEAAAB8GokAAAAAAAgAhwD8AYcAAAAAAAAAAADDGokA AAAAAAAAAAAAAAAAPwAAAAAAAAAAuWIADYkQMAYAAAB8GokAKQAAAAcAAAAG AocALrpiACy6YgAIAIcABwAAAEAAAABOSlQwAAAAAGUQADDwWVQw7ASJAEwA AACJEAAw7ASJAPBZVDBMAAAATkpUMAq6YgAQumIAAAAAAAAAAAAAAAAAHWsQ MAkEAAAAAAAAAAAAACQAAABM2mIAyIYQMJy5YgABAAAA4CwHAQAAAAAAAAAA ELpiAAAAAADgLAcBAAAAAES5YgBDhhAwAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAA8AWxACy6YgAUAAAA4AAAAPi5YgBM2mIAAAAAAIwG BwEUumIAY6cDMIwGBwFHkxAw4CwHAQAAAAAUumIAJAOuAAoAhwAAAAAA8rVi AP//CgAAAAkIEAAABhAAuw3MB0kAAAAGAAAACwIUAAAAAAAAAAAADgAAAAwN AADaFQAADQACAAEADAACAGQADwACAAEAEQACAAAAEAAIAPyp8dJNYlA/XwAC AAEAKgACAAAAKwACAAAAggACAAEAgAAIAAAAAAAAAAAAJQIEAAAA/wCBAAIA wQQUAAAAFQAAAIMAAgAAAIQAAgAAAE0AFgEAAEgAUAAgAEQAZQBzAGsASgBl AHQAIAA2ADkANABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAABAEE1ABAAANugAcBAAEA/gD+AAAAAQAHACwBAgABACwBAQAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAAB AAAABQAAAAAAAAAAAAAAAQBAAE1TVUQkA0hQIERlc2tKZXQgNjk0QwAAAAAA AAAAAAAAAAAAAAAAhAAAAAAAAAAQAQAAAAAAAGQAAAAAAKEAIgABAGQAAQAB AAEAAgAsASwBAAAAAAAA4D8AAAAAAADgPwAAVQACAAgAfQAMAAAAAABJFw8A AgACAH0ADAABAAIA2woPAAIAAgB9AAwAAwAEAG0KDwACAAIAfQAMAAUABQDb Cg8AAgACAH0ADAAGAAYAAAsPAAIAAgB9AAwABwAHAEkKDwACAAIAfQAMAAgA CACSCg8AAgACAH0ADAAJAAkAAAsPAAIAAgB9AAwACgAKAAAKDwACAAIAfQAM AAsACwAkCg8AAgACAH0ADAAMAAwAkgoPAAIAAgAAAg4AAAAAAA4AAAAAAA0A AAAIAhAAAAAAAA0A/wAAAFQwAAESAAgCEAABAAAADQD/AAAAYgAAAQMACAIQ AAIAAAANAP8AAAAAAAABYgAIAhAAAwAAAA0A/wAAAAAAAAEAAAgCEAAEAAAA DQD/AAAAqYEAAQJHCAIQAAUAAAANAP8AAAAAAAABAAAIAhAABgAAAA0A/wAA AAAAAAEAAAgCEAAHAAAADQD/AAAAYgAAAQIACAIQAAgAAAANAP8AAAAAAAAB YgAIAhAACQAAAA0A/wAAAAAAAAH1jwgCEAAKAAAADQD/AAAAhwAAAQAACAIQ AAsAAAANAP8AAAAAAAABAAAIAhAADAAAAA0A/wAAAGIAAAEAAAgCEAANAAAA DQD/AAAAAjAAAQAA/QAKAAAAAAAWAAAAAAD9AAoAAAABABYAAQAAAP0ACgAA AAIAFgACAAAA/QAKAAAAAwAWAAMAAAD9AAoAAAAEABYAGwAAAP0ACgAAAAUA FgAEAAAA/QAKAAAABgAWAAUAAAD9AAoAAAAHABYABgAAAP0ACgAAAAgAFgAH AAAA/QAKAAAACQAWAAgAAAD9AAoAAAAKABYACQAAAP0ACgAAAAsAFgAKAAAA /QAKAAAADAAWAAsAAAD9AAoAAQAAABYADAAAAL0ATgABAAEAFQABKJlAFQAB aJ9AFQAB1KJAFQABZKRAFQABhKdAFQABFKlAFQABpKpAFQABNKxAFQABVK9A FQABkrNAFQAB6rVAFQABerdADAD9AAoAAgAAABYADQAAAP0ACgACAAEAFQAY AAAA/QAKAAIAAgAVABgAAAD9AAoAAgADABUAGAAAAP0ACgACAAQAFQAYAAAA /QAKAAIABQAVABgAAAD9AAoAAgAGABUAGAAAAP0ACgACAAcAFQAYAAAA/QAK AAIACAAVABgAAAD9AAoAAgAJABUAGAAAAP0ACgACAAoAFQAYAAAA/QAKAAIA CwAVABgAAAD9AAoAAgAMABUAGAAAAP0ACgADAAAAFgAOAAAAvQBOAAMAAQAV AADAokAVAADAokAVAADAokAVAADAokAVAADAokAVAADAokAVAADAokAVAADA okAVAACIo0AVAACIo0AVAACIo0AVAACIo0AMAP0ACgAEAAAAFgAPAAAA/QAK AAQAAQAVABkAAAD9AAoABAACABUAGQAAAP0ACgAEAAMAFQAZAAAA/QAKAAQA BAAVABkAAAD9AAoABAAFABUAGQAAAP0ACgAEAAYAFQAZAAAA/QAKAAQABwAV ABkAAAD9AAoABAAIABUAGQAAAP0ACgAEAAkAFQAZAAAA/QAKAAQACgAVABkA AAD9AAoABAALABUAGQAAAP0ACgAEAAwAFQAZAAAA/QAKAAUAAAAWABAAAAC9 AE4ABQABABUAAaCJQBUAAAAhQBUAAYCLQBUAAAAiQBUAARCNQBUAAWCNQBUA AQCOQBUAAZCPQBUAAUCQQBUAAViRQBUAAAAnQBUAAXCSQAwA/QAKAAYAAAAW ABEAAAC9AE4ABgABABUAAAAAABUAAAAAABUAAAAAABUAAAAAABUAAAAAABUA AAAAABUAAAAAABUAAADwPxUAAAAAQBUAAAAkQBUAAAAuQBUAAAAyQAwA/QAK AAcAAAAWABIAAAC9AE4ABwABABUAAAAgQBUAAAAkQBUAAAAqQBUAAAAoQBUA AAAsQBUAAAAuQBUAAAAxQBUAAAAuQBUAAAA+QBUAAABEQBUAAIBLQBUAAABO QAwA/QAKAAgAAAAWABMAAAC9AE4ACAABABUAAAAyQBUAAAA0QBUAAAA2QBUA AABDQBUAAIBJQBUAAABNQBUAAABPQBUAAABRQBUAAABOQBUAAMBSQBUAAIBW QBUAAABeQAwA/QAKAAkAAAAWABQAAAC9AE4ACQABABUAAAA6QBUAAAA+QBUA AIBBQBUAAABJQBUAAEBQQBUAAEBSQBUAAMBTQBUAAABVQBUAAABXQBUAAEBf QBUAAABkQBUAAMBoQAwA/QAKAAoAAAAWABUAAAD9AAoACgABABUAGgAAAP0A CgAKAAIAFQAaAAAA/QAKAAoAAwAVABoAAAD9AAoACgAEABUAGgAAAP0ACgAK AAUAFQAaAAAA/QAKAAoABgAVABoAAAD9AAoACgAHABUAGgAAAP0ACgAKAAgA FQAaAAAA/QAKAAoACQAVABoAAAD9AAoACgAKABUAGgAAAP0ACgAKAAsAFQAa AAAA/QAKAAoADAAVABoAAAD9AAoACwAAABYAFgAAAL0ATgALAAEAFQABgHZA FQABgHZAFQABgHZAFQABgHZAFQABgHZAFQABgHZAFQABgHZAFQABgHZAFQAB gHZAFQABgHZAFQABgHZAFQABgHZADAD9AAoADAAAABYAFwAAAL0ATgAMAAEA FQAAAC1AFQABKJlAFQABlJtAFQABrJxAFQAB0J5AFQAB0J9AFQAAADVAFQAB 4KBAFQAAwDZAFQAB4qNAFQABCqVAFQAByKVADAD9AAoADQAAABYAHAAAAP0A CgANAAEAFQAdAAAA/QAKAA0AAgAVAB0AAAD9AAoADQADABUAHQAAAP0ACgAN AAQAFQAdAAAA/QAKAA0ABQAVAB0AAAD9AAoADQAGABUAHQAAAP0ACgANAAcA FQAdAAAA/QAKAA0ACAAVAB0AAAD9AAoADQAJABUAHQAAAP0ACgANAAoAFQAd AAAA/QAKAA0ACwAVAB0AAAD9AAoADQAMABUAHQAAANcAIAAGCAAABAG2AGAA tgBgALYAYABgAGAAYABgALYAYABgAD4CEgC2BgAAAABAAAAAAAAAAAAAAAAd AA8AAw0AAAAAAAEADQANAAAMCgAAAAkIEAAABhAAuw3MB0kAAAAGAAAACwIQ AAAAAAAAAAAAAAAAAOMWAAANAAIAAQAMAAIAZAAPAAIAAQARAAIAAAAQAAgA /Knx0k1iUD9fAAIAAQAqAAIAAAArAAIAAACCAAIAAQCAAAgAAAAAAAAAAAAl AgQAAAD/AIEAAgDBBBQAAAAVAAAAgwACAAAAhAACAAAAoQAiAAAA/wABAAEA AQAEAQAADAwAAAAAAADgPwAAAAAAAOA/FQBVAAIACAAAAg4AAAAAAAAAAAAA AAAAAAA+AhIAtgAAAAAAQAAAAAAAAAAAAAAAHQAPAAMAAAAAAAABAAAAAAAA AAoAAAAJCBAAAAYQALsNzAdJAAAABgAAAAsCEAAAAAAAAAAAAAAAAADgFwAA DQACAAEADAACAGQADwACAAEAEQACAAAAEAAIAPyp8dJNYlA/XwACAAEAKgAC AAAAKwACAAAAggACAAEAgAAIAAAAAAAAAAAAJQIEAAAA/wCBAAIAwQQUAAAA FQAAAIMAAgAAAIQAAgAAAKEAIgAAAP8AAQABAAEABAAAAAAAAAAAAAAA4D8A AAAAAADgPxUAVQACAAgAAAIOAAAAAAAAAAAAAAAAAAAAPgISALYAAAAAAEAA AAAAAAAAAAAAAB0ADwADAAAAAAAAAQAAAAAAAAAKAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAP7/AAAECgIAAAAAAAAAAAAAAAAAAAAAAAEAAADghZ/y +U9oEKuRCAArJ7PZMAAAAJwAAAAGAAAAAQAAADgAAAAEAAAAQAAAAAgAAABY AAAAEgAAAHAAAAAMAAAAiAAAABMAAACUAAAAAgAAAOQEAAAeAAAADgAAAFBp eXVzaCBTYW1hbmkAeAAeAAAADgAAAFBpeXVzaCBTYW1hbmkAeAAeAAAAEAAA AE1pY3Jvc29mdCBFeGNlbABAAAAAAOwr9oo0wgEDAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAD+/wAABAoCAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN 1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuHAEAANgAAAAJAAAA AQAAAFAAAAAPAAAAWAAAABcAAABkAAAACwAAAGwAAAAQAAAAdAAAABMAAAB8 AAAAFgAAAIQAAAANAAAAjAAAAAwAAAC1AAAAAgAAAOQEAAAeAAAAAQAAAAAA MwADAAAAsw0IAAsAAAAAAAAACwAAAAAAAAALAAAAAAAAAAsAAAAAAAAAHhAA AAMAAAAHAAAAU2hlZXQxAAcAAABTaGVldDIABwAAAFNoZWV0MwAMEAAAAgAA AB4AAAALAAAAV29ya3NoZWV0cwADAAAAAwAAAJgAAAADAAAAAAAAACAAAAAB AAAANgAAAAIAAAA+AAAAAQAAAAIAAAAKAAAAX1BJRF9HVUlEAAIAAADkBAAA QQAAAE4AAAB7ADIAOQBBADMANQAwADgAMAAtAEEAMABCADIALQAxADEARAA2 AC0AOQA0ADAAOQAtADQANAA0ADUANQAzADUANAAwADAAMAAwAH0AAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgA AAAJAAAACgAAAAsAAAAMAAAA/v///w4AAAAPAAAAEAAAABEAAAASAAAAEwAA ABQAAAD+////FgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAP7////9//// /v////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////9SAG8AbwB0ACAARQBu AHQAcgB5AAAAAAAAAPAAAAAAAAAA8AAAAAAAAADwAP8fBAAAAPAAAAAAAAAA 8AAAAAAAFgAFAf//////////AgAAACAIAgAAAAAAwAAAAAAAAEYAAAAAAAAA AAAA8AAAg6kpiHbCAf7///8AAAAAAAAAAFcAbwByAGsAYgBvAG8AawAAAPAA AAAAAAAA8AD/HwQAAADwAAAAAAAAAPAAAAAAAAAA8AAAAAAAAADwAAAAAAAS AAIB////////////////AADwAAAAAAAAAPAAAAAAAAAA8AAAAAAAAADwAAAA AAAAAPAAAAAAACUYAAAAAAAABQBTAHUAbQBtAGEAcgB5AEkAbgBmAG8AcgBt AGEAdABpAG8AbgAAAAAA8AAAAAAAAADwAAAAAAAAAPAAAAAAACgAAgEBAAAA AwAAAP////8AAPAAAAAAAAAA8AAAAAAAAADwAAAAAAAAAPAAAAAAAAAA8AAN AAAAABAAAP8fBAAFAEQAbwBjAHUAbQBlAG4AdABTAHUAbQBtAGEAcgB5AEkA bgBmAG8AcgBtAGEAdABpAG8AbgAAAAAA8AAAAAAAOAACAf////////////// /wAA8AAAAAAAAADwAAAAAAAAAPAAAAAAAAAA8AD/HwQAAADwABUAAAAAEAAA AAAAAA== ------------=_1035007253-9726-0 Content-Type: application/vnd.ms-excel; name="COMBED WEAVING SPECS.xls" Content-Disposition: inline; filename="COMBED WEAVING SPECS.xls" Content-Transfer-Encoding: base64 0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAAB AAAAHQAAAAAAAAAAEAAA/v///wAAAAD+////AAAAABwAAAD///////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////8JCBAAAAYFALsNzAdBAAAABgAAAOEAAgCwBMEA AgAAAOIAAABcAHAADQAAUGl5dXNoIFNhbWFuaSAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEIAAgCwBGEBAgAA AD0BBgABAAIAAwCcAAIADgAZAAIAAAASAAIAAAATAAIAAACvAQIAAAC8AQIA AAA9ABIAWALSAFwryRg4AAAAAAABAFgCQAACAAAAjQACAAAAIgACAAAADgAC AAEAtwECAAAA2gACAAAAMQAaAMgAAAD/f5ABAAAAAAAABQFBAHIAaQBhAGwA MQAaAMgAAAD/f5ABAAAAAAAABQFBAHIAaQBhAGwAMQAaAMgAAAD/f5ABAAAA AAAABQFBAHIAaQBhAGwAMQAaAMgAAAD/f5ABAAAAAAAABQFBAHIAaQBhAGwA MQAaAMgAAQD/f7wCAAAAAgAABQFBAHIAaQBhAGwAHgQcAAUAFwAAIiQiIywj IzBfKTtcKCIkIiMsIyMwXCkeBCEABgAcAAAiJCIjLCMjMF8pO1tSZWRdXCgi JCIjLCMjMFwpHgQiAAcAHQAAIiQiIywjIzAuMDBfKTtcKCIkIiMsIyMwLjAw XCkeBCcACAAiAAAiJCIjLCMjMC4wMF8pO1tSZWRdXCgiJCIjLCMjMC4wMFwp HgQ3ACoAMgAAXygiJCIqICMsIyMwXyk7XygiJCIqIFwoIywjIzBcKTtfKCIk IiogIi0iXyk7XyhAXykeBC4AKQApAABfKCogIywjIzBfKTtfKCogXCgjLCMj MFwpO18oKiAiLSJfKTtfKEBfKR4EPwAsADoAAF8oIiQiKiAjLCMjMC4wMF8p O18oIiQiKiBcKCMsIyMwLjAwXCk7XygiJCIqICItIj8/Xyk7XyhAXykeBDYA KwAxAABfKCogIywjIzAuMDBfKTtfKCogXCgjLCMjMC4wMFwpO18oKiAiLSI/ P18pO18oQF8p4AAUAAAAAAD1/yAAAAAAAAAAAAAAAMAg4AAUAAEAAAD1/yAA APQAAAAAAAAAAMAg4AAUAAEAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAIAAAD1 /yAAAPQAAAAAAAAAAMAg4AAUAAIAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAA AAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAU AAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg 4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAA AMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAA AAAAAMAg4AAUAAAAAAD1/yAAAPQAAAAAAAAAAMAg4AAUAAAAAAD1/yAAAPQA AAAAAAAAAMAg4AAUAAAAAAABACAAAAAAAAAAAAAAAMAg4AAUAAEAKwD1/yAA APgAAAAAAAAAAMAg4AAUAAEAKQD1/yAAAPgAAAAAAAAAAMAg4AAUAAEALAD1 /yAAAPgAAAAAAAAAAMAg4AAUAAEAKgD1/yAAAPgAAAAAAAAAAMAg4AAUAAEA CQD1/yAAAPgAAAAAAAAAAMAg4AAUAAUAAAABACAAAAgAAAAAAAAAAMAg4AAU AAAAAAABACMAABAAAAAAAAAAAMAgkwIEABCAA/+TAgQAEYAG/5MCBAASgAT/ kwIEABOAB/+TAgQAAIAA/5MCBAAUgAX/YAECAAEAhQAOADYLAAAAAAYAU2hl ZXQxhQAOACEVAAAAAAYAU2hlZXQyhQAOAB4WAAAAAAYAU2hlZXQzjAAEAAEA AQD8AFIBSgAAAB4AAAAFAABDT1VOVAoAAEFWRy4gQ09VTlQJAABDT1VOVCBD ViUDAABDU1AHAABDU1AgQ1YlAgAAVSUOAABUSElOL0tNICgtNTAlKQ8AAFRI SUNLL0tNICgrNTAlKQ8AAE5FUFMvS00gKCsyMDAlKQ0AAFRPVEFMIElNUC4v S00JAABIQUlSSU5FU1MEAABULk0uAwAAVFBJCQAATkUxNi8xIENXCQAATkUy MC8xIENXCQAATkUyNC8xIENXCQAATkUyNi8xIENXCQAATkUzMC8xIENXCQAA TkUzMi8xIENXCQAATkUzNC8xIENXCQAATkUzNi8xIENXCQAATkU0MC8xIENX CQAATkU1MC8xIENXCQAATkU1Ni8xIENXCQAATkU2MC8xIENXBAAAPDEuNQQA ADw0LjAEAAA8Ny41BwAAVFBJIENWJQQAADw1LjD/ABoECADKBQAADABDACMG AABlAAAAggYAAMQAQwDiBgAAJAFQ/J0wAgAAACC4YgDuInEwAgAAAAAAAADw vmIAHitxMPC+YgAJAAAAOgAAAAAAAADwvmIA3LxiADAyQ1YoAAAAbdGAMDy2 YgAEAAAABAAAAAkEAAABAAAArgOuAPq3YgAAAAAAAAAAAABgZAABAAAAKAAA AAAAAACUuGIAWu6AMABgZACIuGIAjLhiAJy4YgAAYGQAAGBkAAAAAAAAAAAA 8K+dMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAEnJcjCmA64ABAAAAPK3YgAEAAAAAQAAAAQAAADyt2IApgOu AAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAABAAAA rLhiAP8DAAC4Jq4AhOZTMKC3YgB0AAAAAAAAAAIAxzAAAMUwAAAAAAAAAAAA AAAAnLhiAAEAAADrXm4wDgDHMNEAAADit2IA/AAAAAkAAACCsQMwAADFMNSi xzDRAAAA4rdiAP0AAADit2IA5LliAO7gAjDit2IAuCauAAAAAADkuWIAdAAA AAAAAABikhAwAAAAAOC3YgAHAAAA/////7AmrgAgumIAAAAAAAcAUABlAHIA YwBlAG4AdAAAAAAAAAAwAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXACHAAEAAABlEAAwXACHABZa VDACAAAAiRAAMBZaVDDSX1QwPWwQMLUaiQBUAIcAZRAAMFQAhwC1GokAAgAA ALGLEDC1GokAVACHAAEAAAB8GokAAAAAAAgAhwD8AYcAAAAAAAAAAADDGokA AAAAAAAAAAAAAAAAPwAAAAAAAAD0uGIADYkQMAYAAAB8GokAKQAAAAcAAAAG AocAIrpiACC6YgAIAIcABwAAAEAAAABOSlQwAAAAAGUQADDwWVQw7ASJAEwA AACJEAAw7ASJAPBZVDBMAAAATkpUMP65YgAEumIAAAAAAAAAAAAAAAAAHWsQ MAkEAAAAAAAAAAAAACQAAABA2mIAyIYQMJC5YgABAAAArAYHAQAAAAAAAAAA BLpiAAAAAACsBgcBAAAAADi5YgBDhhAwAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAtCWuACC6YgAUAAAA4AAAAOy5YgBA2mIAAAAAAGAF BwEIumIAY6cDMGAFBwFHkxAwrAYHAQAAAAAIumIAJAOxAAoAhwAAAAAA5rVi AP//CgAAAAkIEAAABhAAuw3MB0EAAAAGAAAACwIUAAAAAAAAAAAADgAAAPIL AADQFAAADQACAAEADAACAGQADwACAAEAEQACAAAAEAAIAPyp8dJNYlA/XwAC AAEAKgACAAAAKwACAAAAggACAAEAgAAIAAAAAAAAAAAAJQIEAAAA/wCBAAIA wQQUAAAAFQAAAIMAAgAAAIQAAgAAAKEAIgAAAP8AAQABAAEABgAiumIAAAAA AAAA4D8AAAAAAADgP05KVQACAAgAfQAMAAAAAABJEg8AAgAGAH0ADAABAAEA 2woPAAIABgB9AAwAAgACAG0LDwACAAYAfQAMAAMAAwBtCg8AAgAGAH0ADAAE AAQAAAsPAAIABgB9AAwABQAFAJIKDwACAAYAfQAMAAYABgDbCg8AAgAGAH0A DAAHAAcAkgoPAAIABgB9AAwACAAIAAALDwACAAYAfQAMAAkACQAkCw8AAgAG AH0ADAAKAAoAkgoPAAIABgB9AAwACwAMALYKDwACAAYAAAIOAAAAAAAOAAAA AAANAAAACAIQAAAAAAANAP8AAABUMAABEgAIAhAAAQAAAA0A/wAAAGIAAAED AAgCEAACAAAADQD/AAAAAAAAAWIACAIQAAMAAAANAP8AAAAAAAABAAAIAhAA BAAAAA0A/wAAAKmBAAECAAgCEAAFAAAADQD/AAAAAAAAAQAACAIQAAYAAAAN AP8AAAAAAAABAAAIAhAABwAAAA0A/wAAAGIAAAECAAgCEAAIAAAADQD/AAAA AAAAAWIACAIQAAkAAAANAP8AAAAAAAABYgAIAhAACgAAAA0A/wAAAAAAAAEA AAgCEAALAAAADQD/AAAAAAAAAQAACAIQAAwAAAANAP8AAAAAAAABAAAIAhAA DQAAAA0A/wAAAAAAAAEAAP0ACgAAAAAAFQAAAAAA/QAKAAAAAQAVAA0AAAD9 AAoAAAACABUADgAAAP0ACgAAAAMAFQAPAAAA/QAKAAAABAAVABAAAAD9AAoA AAAFABUAEQAAAP0ACgAAAAYAFQASAAAA/QAKAAAABwAVABMAAAD9AAoAAAAI ABUAFAAAAP0ACgAAAAkAFQAVAAAA/QAKAAAACgAVABYAAAD9AAoAAAALABUA FwAAAP0ACgAAAAwAFQAYAAAA/QAKAAEAAAAVAAEAAAC9AE4AAQABAA8AASiZ QA8AAWifQA8AAdSiQA8AAWSkQA8AAYSnQA8AARSpQA8AAaSqQA8AATSsQA8A AVSvQA8AAZKzQA8AAeq1QA8AAXq3QAwA/QAKAAIAAAAVAAIAAAD9AAoAAgAB ABYAGQAAAP0ACgACAAIAFgAZAAAA/QAKAAIAAwAWABkAAAD9AAoAAgAEABYA GQAAAP0ACgACAAUAFgAZAAAA/QAKAAIABgAWABkAAAD9AAoAAgAHABYAGQAA AP0ACgACAAgAFgAZAAAA/QAKAAIACQAWABkAAAD9AAoAAgAKABYAGQAAAP0A CgACAAsAFgAZAAAA/QAKAAIADAAWABkAAAD9AAoAAwAAABUAAwAAAL0ATgAD AAEADwAAqKZADwAA4KVADwAAfKVADwAAfKVADwAAfKVADwAAGKVADwAAGKVA DwAAGKVADwAAfKVADwAAcKdADwAAqKZADwAAqKZADAD9AAoABAAAABUABAAA AP0ACgAEAAEAFgAaAAAA/QAKAAQAAgAWABoAAAD9AAoABAADABYAGgAAAP0A CgAEAAQAFgAaAAAA/QAKAAQABQAWABoAAAD9AAoABAAGABYAGgAAAP0ACgAE AAcAFgAaAAAA/QAKAAQACAAWABoAAAD9AAoABAAJABYAGgAAAP0ACgAEAAoA FgAaAAAA/QAKAAQACwAWABoAAAD9AAoABAAMABYAGgAAAP0ACgAFAAAAFQAF AAAAvQBOAAUAAQAPAAGgiUAPAAAAIUAPAAHQi0APAAHAjEAPAAFgjUAPAAGg jkAPAAGQj0APAAHgj0APAAAAJUAPAAHgkEAPAAFYkUAPAAGokUAMAP0ACgAG AAAAFQAGAAAAvQBOAAYAAQAPAAAA8D8PAAAA8D8PAAAA8D8PAAAA8D8PAAAA AEAPAAAAAEAPAAAAAEAPAAAACEAPAAAACEAPAAAAEEAPAAAAFEAPAAAAHEAM AP0ACgAHAAAAFQAHAAAAvQBOAAcAAQAPAAAAJEAPAAAAKEAPAAAALkAPAAAA NkAPAAAAOUAPAAAAOkAPAAAAPkAPAAAAQEAPAACAQEAPAABAUEAPAAAAUkAP AAAAVEAMAP0ACgAIAAAAFQAIAAAAvQBOAAgAAQAPAAAAKkAPAAAAMUAPAAAA OEAPAAAAQEAPAAAASEAPAACASkAPAACASkAPAACAS0APAAAAUEAPAADAUUAP AADAVEAPAAAAVkAMAP0ACgAJAAAAFQAJAAAAvQBOAAkAAQAPAAAAOEAPAAAA PkAPAAAAREAPAACAS0APAADAUkAPAABAVEAPAABAVUAPAACAVkAPAAAAWUAP AACAYUAPAAAAZEAPAADgZUAMAP0ACgAKAAAAFQAKAAAA/QAKAAoAAQAWABsA AAD9AAoACgACABYAGwAAAP0ACgAKAAMAFgAbAAAA/QAKAAoABAAWABsAAAD9 AAoACgAFABYAGwAAAP0ACgAKAAYAFgAbAAAA/QAKAAoABwAWABsAAAD9AAoA CgAIABYAGwAAAP0ACgAKAAkAFgAbAAAA/QAKAAoACgAWABsAAAD9AAoACgAL ABYAGwAAAP0ACgAKAAwAFgAbAAAA/QAKAAsAAAAVAAsAAAC9AE4ACwABAA8A AUB6QA8AAUB6QA8AAUB6QA8AAUB6QA8AAUB6QA8AAUB6QA8AAUB6QA8AAUB6 QA8AAUB6QA8AAUB6QA8AAUB6QA8AAUB6QAwA/QAKAAwAAAAVAAwAAAC9AE4A DAABAA8AAUCaQA8AAWCdQA8AARigQA8AAcKgQA8AAQyiQA8AAMA3QA8AAIA4 QA8AAbCjQA8AAcCkQA8AATSnQA8AAY6oQA8AAEBAQAwA/QAKAA0AAAAVABwA AAD9AAoADQABABYAHQAAAP0ACgANAAIAFgAdAAAA/QAKAA0AAwAWAB0AAAD9 AAoADQAEABYAHQAAAP0ACgANAAUAFgAdAAAA/QAKAA0ABgAWAB0AAAD9AAoA DQAHABYAHQAAAP0ACgANAAgAFgAdAAAA/QAKAA0ACQAWAB0AAAD9AAoADQAK ABYAHQAAAP0ACgANAAsAFgAdAAAA/QAKAA0ADAAWAB0AAADXACAABggAAAQB tgBgALYAYAC2AGAAYABgAGAAYAC2AGAAYAA+AhIAtgYAAAAAQAAAAAAAAAAA AAAAHQAPAAMNAAAAAAABAA0ADQAADAoAAAAJCBAAAAYQALsNzAdBAAAABgAA AAsCEAAAAAAAAAAAAAAAAADZFQAADQACAAEADAACAGQADwACAAEAEQACAAAA EAAIAPyp8dJNYlA/XwACAAEAKgACAAAAKwACAAAAggACAAEAgAAIAAAAAAAA AAAAJQIEAAAA/wCBAAIAwQQUAAAAFQAAAIMAAgAAAIQAAgAAAKEAIgAAAP8A AQABAAEABAEAAAwMAAAAAAAA4D8AAAAAAADgPw8AVQACAAgAAAIOAAAAAAAA AAAAAAAAAAAAPgISALYAAAAAAEAAAAAAAAAAAAAAAB0ADwADAAAAAAAAAQAA AAAAAAAKAAAACQgQAAAGEAC7DcwHQQAAAAYAAAALAhAAAAAAAAAAAAAAAAAA 1hYAAA0AAgABAAwAAgBkAA8AAgABABEAAgAAABAACAD8qfHSTWJQP18AAgAB ACoAAgAAACsAAgAAAIIAAgABAIAACAAAAAAAAAAAACUCBAAAAP8AgQACAMEE FAAAABUAAACDAAIAAACEAAIAAAChACIAAAD/AAEAAQABAAQAAAAAAAAAAAAA AOA/AAAAAAAA4D8PAFUAAgAIAAACDgAAAAAAAAAAAAAAAAAAAD4CEgC2AAAA AABAAAAAAAAAAAAAAAAdAA8AAwAAAAAAAAEAAAAAAAAACgAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAA BAoCAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAACc AAAABgAAAAEAAAA4AAAABAAAAEAAAAAIAAAAWAAAABIAAABwAAAADAAAAIgA AAATAAAAlAAAAAIAAADkBAAAHgAAAA4AAABQaXl1c2ggU2FtYW5pAHgAHgAA AA4AAABQaXl1c2ggU2FtYW5pAHgAHgAAABAAAABNaWNyb3NvZnQgRXhjZWwA QAAAAID8w62RNMIBAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v8A AAQKAgAAAAAAAAAAAAAAAAAAAAAAAgAAAALVzdWcLhsQk5cIACss+a5EAAAA BdXN1ZwuGxCTlwgAKyz5rhwBAADYAAAACQAAAAEAAABQAAAADwAAAFgAAAAX AAAAZAAAAAsAAABsAAAAEAAAAHQAAAATAAAAfAAAABYAAACEAAAADQAAAIwA AAAMAAAAtQAAAAIAAADkBAAAHgAAAAEAAAAAADMAAwAAALMNCAALAAAAAAAA AAsAAAAAAAAACwAAAAAAAAALAAAAAAAAAB4QAAADAAAABwAAAFNoZWV0MQAH AAAAU2hlZXQyAAcAAABTaGVldDMADBAAAAIAAAAeAAAACwAAAFdvcmtzaGVl dHMAAwAAAAMAAACYAAAAAwAAAAAAAAAgAAAAAQAAADYAAAACAAAAPgAAAAEA AAACAAAACgAAAF9QSURfR1VJRAACAAAA5AQAAEEAAABOAAAAewAyADkAQQAz ADUAMAA4ADEALQBBADAAQgAyAC0AMQAxAEQANgAtADkANAAwADkALQA0ADQA NAA1ADUAMwA1ADQAMAAwADAAMAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEA AAACAAAAAwAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAAAAoAAAALAAAA/v// /w0AAAAOAAAADwAAABAAAAARAAAAEgAAABMAAAD+////FQAAABYAAAAXAAAA GAAAABkAAAAaAAAAGwAAAP7////9/////v////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// ////////////////////UgBvAG8AdAAgAEUAbgB0AHIAeQAAAAAAkL9AAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYABQH///////// /wIAAAAgCAIAAAAAAMAAAAAAAABGAAAAABTAQABw1gNIwO+ua+9PwgH+//// AAAAABAAAABXAG8AcgBrAGIAbwBvAGsAAAAAoDwAQABw2kAAkL9AAAAAAAAA AAAAYABgAAAAAAAAAAAABBEAAPsAAAAOAAAAEgACAf///////////////wAA AAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAB+AAAADQACAAAAAAAbFwAAhgAA 8AUAUwB1AG0AbQBhAHIAeQBJAG4AZgBvAHIAbQBhAHQAaQBvAG4AAAA9xmIA AAAAAAEAAAD/////CAAAAC7GYgAoAAIBAQAAAAMAAAD/////SsZiAAAAAAAB AAAA/////wQAAAA1xmIAAAAAAAEAAAD/////DAAAAAAQAAAAAAAABQBEAG8A YwB1AG0AZQBuAHQAUwB1AG0AbQBhAHIAeQBJAG4AZgBvAHIAbQBhAHQAaQBv AG4AAAAAAAAAAAAAADgAAgH///////////////8AAAAAAAAAAAIAAAAAAAAA AAAAAA0AAAACAAAACAQAAAAAAAAUAAAAABAAAAAAAAA= ------------=_1035007253-9726-0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 0:29:53 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B370E37B401 for ; Sat, 19 Oct 2002 00:29:51 -0700 (PDT) Received: from vectors.cx (manifold.vectors.cx [64.163.147.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 589B543E6A for ; Sat, 19 Oct 2002 00:29:51 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: from vectors.cx (47c587d5af0f36e5df5c1a87bd980ce6@localhost [127.0.0.1]) by vectors.cx (8.12.6/8.12.4) with ESMTP id g9J7VHho084591; Sat, 19 Oct 2002 00:31:17 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: (from monkey@localhost) by vectors.cx (8.12.6/8.12.6/Submit) id g9J7VGGL084590; Sat, 19 Oct 2002 00:31:16 -0700 (PDT) (envelope-from monkey) Date: Sat, 19 Oct 2002 00:31:16 -0700 From: Adam Weinberger To: Peter Leftwich Cc: FreeBSD Questions LIST Subject: Re: learning about ./configure and pkg-config Message-ID: <20021019073116.GI8122@vectors.cx> References: <20021018191820.Y6234-100000@dhcp-407-32.san.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <20021018191820.Y6234-100000@dhcp-407-32.san.rr.com> X-Editor: Vim 6.1 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-PGP-Key: http://www.vectors.cx/pgp.key.txt X-URL: http://www.vectors.cx http://www.crackula.com User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 >> (10.18.2002 @ 1924 PST): Peter Leftwich said, in 1.7K: << > I downloaded the following from gnome.org "bonobo-activation-1.0.3.tgz" and > gunzipped then untarred it and changed to the resulting directory. > > When I ran `./configure` it got through most checks fine, except for the > pkg-config ones near the end. Here is the output: > > I couldn't find my ..../lib/pkgconfig directory or locate sample > PKG_CONFIG_PATH statements on the web. Can someone clue me in please? >> end of "learning about ./configure and pkg-config" from Peter Leftwich << Peter, unless you feel comfortable editing configure scripts (which is where your PKG_CONFIG_PATH will be decided), you really ought to just use the ports tree. /usr/ports/devel/bonobo-activation - -Adam - -- Adam Weinberger adam@vectors.cx adamw@FreeBSD.ORG -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE9sQpEo8KM2ULHQ/0RAt3WAJ9tE3K+z7g/JusKRGqsZ3ns1CwK9ACfQhZm y7nJGTqnfofWRctTcWGqD2U= =EDXn -----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 Sat Oct 19 0:50:28 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8C0B37B404 for ; Sat, 19 Oct 2002 00:50:26 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AD2743EA3 for ; Sat, 19 Oct 2002 00:50:25 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9J7oJei065609 for ; Sat, 19 Oct 2002 08:50:19 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9J7oEC1065608 for freebsd-questions@FreeBSD.ORG; Sat, 19 Oct 2002 08:50:14 +0100 (BST) Date: Sat, 19 Oct 2002 08:50:14 +0100 From: Matthew Seaman To: freebsd-questions@FreeBSD.ORG Subject: Re: CPU Temperature Message-ID: <20021019075014.GA65379@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , freebsd-questions@FreeBSD.ORG References: <1034878060.2e2b2920jud@myrealbox.com> <20021017192143.GA92333@happy-idiot-talk.infracaninophi> <200210191148.31586.bastill@sa.apana.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200210191148.31586.bastill@sa.apana.org.au> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-9.9 required=5.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 11:48:31AM +0930, Brian Astill wrote: > The port for fvcool seems to be broken - the only source of the tar.gz file > produces a 154byte file with a bad checksum. > Any advice you can offer? Try again --- it worked for me when I tried downloading it again just now. happy-idiot-talk:...ports/sysutils/fvcool:# make fetch >> FVCool102.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.uk.freebsd.org/pub/FreeBSD/ports/distfiles/. fetch: FVCool102.tar.gz: File unavailable (e.g., file not found, no access) >> Attempting to fetch from http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/. Receiving FVCool102.tar.gz (9289 bytes): 100% 9289 bytes transferred in 0.9 seconds (9.75 kBps) Remember to remove the broken remnant of FVCool102.tar.gz from /usr/ports/distfiles, or the new download attempt will fail miserably. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 1:13:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59D9837B401 for ; Sat, 19 Oct 2002 01:13:39 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73AC843E6A for ; Sat, 19 Oct 2002 01:13:38 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 63637 invoked from network); 19 Oct 2002 08:13:36 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 19 Oct 2002 08:13:36 -0000 Message-ID: <3DB1143F.1F4E49F1@liwing.de> Date: Sat, 19 Oct 2002 10:13:51 +0200 From: Jens Rehsack Organization: LiWing IT-Services X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Dan Nelson Cc: Mike Thompson , freebsd-questions@FreeBSD.ORG Subject: Re: Multiple FreeBSD SCSI Hosts References: <4.3.2.7.2.20021018114625.00c974a0@pop.atomz.com> <20021018193431.GC38243@dan.emsphone.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dan Nelson wrote: > > In the last episode (Oct 18), Mike Thompson said: > > I'm interested in setting up two FreeBSD systems in a very simple > > clustering type configuration around centralized external SCSI > > storage devices for hardware redundancy. The specific configuration > > I'm thinking about is shown in the simple diagram below: > > > > +-----------+ +----------+ +-----------+ > > | FreeBSD | | | | FreeBSD | > > | Host 1 | | External | | Host 2 | > > | (primary) | | SCSI | |(secondary)| > > | | |RAID/DRIVE| | | > > | SCSI r/w | | | | SCSI r/o | > > +-----+-----+ +---+--+---+ +-----+-----+ > > | | | | > > +---------------+ +---------------+ > > Whoa. Deja vu here. > > http://groups.google.com/groups?threadm=Pine.LNX.4.44.0210101808560.3631-100000@scribble.fsn.hu > > Your primary problem is that the disk cache on Host2 does not know > about changes made to the filesystem by Host1. > > > 1. Do the FreeBSD SCSI drivers support such a configuration by > > implementing the SCSI RESERVE/RELEASE commands to lock access to the > > SCSI bus? If so, which drivers for which specific SCSI adapters? > > Reserve/release looks like it is implemented for tape devices on > open(), but not for disks (since it's legal to mount slice 1 on machine > A but slice 2 on machine B, for example). Reserve/release is probably > not useful in this situation anyway, as I don't know how easy it is to > break a reservation (when host1 goes down, host2 has to break the > reservation before it can acces the disk). > > > 2. Many external raid controllers describe themselves as host dual > > capability. Is the type of configuration they are describing? > > Possibly. Most of the time it's to allow multiple hosts to access > their own private storage, but you can usually force a volume to be > visible on multiple ports. > > > 3. Will the secondary server still experience a corrupted file system > > because of write caching by the primary server? If so, would it be > > possible to configure the primary server to write through the cache? > > Big time. The problem is not so much write caching on the primary, > it's read caching on the secondary. Without a shared-storage > filesystem, you're pretty much limited to NFS mounts (which are not all > that bad). > > As for failover detection, one good way is to dedicate a small > partition (da0s1a, for example) as a heartbeat partition. Host 1 > writes a timestamp to /dev/da0s1a block 1 every second, Host 2 does the > same thing on block 2. Each host then reads the other host's block, > and if there are no updates for (say) 10 seconds, you can assume that > the other host is dead, do a fsck, and mount the volume. Using the raw > disk device bypasses any caches on the systems. Hi folks, I thought about a similar configuration, too. I found a manufactor for host controller (SCSI, Fibre Channel), who can deliver: ICP Vortex: http://www.icp-vortex.com/ - they have cluster ready host controller, but they always mirror, so you need 2 disk stacks. Maybe there is required additional software for take over, but by the way, it would even in your situation ... Bye, Jens > -- > Dan Nelson > dnelson@allantgroup.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- L i W W W i Jens Rehsack L W W W L i W W W W i nnn gggg LiWing IT-Services L i W W W W i n n g g LLLL i W W i n n g g Friesenstraße 2 gggg 06112 Halle g g g Tel.: +49 - 3 45 - 5 17 05 91 ggg e-Mail: Fax: +49 - 3 45 - 5 17 05 92 http://www.liwing.de/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 1:15:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85A3937B401 for ; Sat, 19 Oct 2002 01:15:42 -0700 (PDT) Received: from web40810.mail.yahoo.com (web40810.mail.yahoo.com [66.218.78.187]) by mx1.FreeBSD.org (Postfix) with SMTP id 3302543E6E for ; Sat, 19 Oct 2002 01:15:42 -0700 (PDT) (envelope-from ejcerejo@yahoo.com) Message-ID: <20021019081541.16524.qmail@web40810.mail.yahoo.com> Received: from [65.129.48.119] by web40810.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 01:15:41 PDT Date: Sat, 19 Oct 2002 01:15:41 -0700 (PDT) From: "E. J. Cerejo" Subject: ATI Radeon 7000 VE and XFree86 To: FreeBSD-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Anybody using this card? Which XFree86 server should I use for this card? When running xf86config I don't see anything for radeons! __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 1:34:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDFC337B401 for ; Sat, 19 Oct 2002 01:34:55 -0700 (PDT) Received: from priv-edtnes27.telusplanet.net (defout.telus.net [199.185.220.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id 351F443E8A for ; Sat, 19 Oct 2002 01:34:55 -0700 (PDT) (envelope-from tcooper1@telusplanet.net) Received: from TCOOPER ([205.206.105.251]) by priv-edtnes27.telusplanet.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with SMTP id <20021019083454.FSPR23429.priv-edtnes27.telusplanet.net@TCOOPER> for ; Sat, 19 Oct 2002 02:34:54 -0600 Message-ID: <000f01c2774a$fe1bb870$fb69cecd@TCOOPER> From: "terry" To: Subject: New hard drive - Do I have to rebot? Date: Sat, 19 Oct 2002 02:39:09 -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 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Do I have to reboot or kill a process for my new hard drive to be activated once I've done the fstab, disk labeler and modified my /etc/fstab? I was able to move and copy onto disk two but it wasn't listed when I did a ls at root. I had to reboot. I also included 300 Meg's of new Swap. I added it for back up purpose. I successfully tested out the dump/restore procedure but I would like to find a script that does this. If someone knows of a blue print that would be great. I really need a start. I plan on using cron to do this every week. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 1:43: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 863B437B401 for ; Sat, 19 Oct 2002 01:43:00 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92A4443E6E for ; Sat, 19 Oct 2002 01:42:59 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 70701 invoked from network); 19 Oct 2002 08:42:58 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 19 Oct 2002 08:42:58 -0000 Message-ID: <3DB11B21.BB1F453F@liwing.de> Date: Sat, 19 Oct 2002 10:43:13 +0200 From: Jens Rehsack Organization: LiWing IT-Services X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: terry Cc: freebsd-questions@FreeBSD.ORG Subject: Re: New hard drive - Do I have to rebot? References: <000f01c2774a$fe1bb870$fb69cecd@TCOOPER> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG terry wrote: > > Do I have to reboot or kill a process for my new hard drive to be activated > once I've done the fstab, disk labeler and modified my /etc/fstab? I was > able to move and copy onto disk two but it wasn't listed when I did a ls at > root. I had to reboot. I also included 300 Meg's of new Swap. I added it for > back up purpose. > > I successfully tested out the dump/restore procedure but I would like to > find a script that does this. If someone knows of a blue print that would be > great. I really need a start. I plan on using cron to do this every week. Usually you don't have to reboot. You can activate new swap space using swapon(8), but you have to tell all processes which shall write to the "new" disk to reload there configuration and re-initialize the output. Maybe a `kill -HUP` is enough, maybe you have to restart some of them. If you have added the corresponding label to /etc/fstab, you mount(8) to activate it or check which labels/disks are mounted. Cheers, Jens > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- L i W W W i Jens Rehsack L W W W L i W W W W i nnn gggg LiWing IT-Services L i W W W W i n n g g LLLL i W W i n n g g Friesenstraße 2 gggg 06112 Halle g g g Tel.: +49 - 3 45 - 5 17 05 91 ggg e-Mail: Fax: +49 - 3 45 - 5 17 05 92 http://www.liwing.de/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 2:40:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B61C37B404 for ; Sat, 19 Oct 2002 02:40:25 -0700 (PDT) Received: from iota.root-servers.ch (iota.root-servers.ch [193.41.193.195]) by mx1.FreeBSD.org (Postfix) with SMTP id 54A0F43E8A for ; Sat, 19 Oct 2002 02:40:24 -0700 (PDT) (envelope-from gaml@buz.ch) Received: (qmail 699 invoked from network); 19 Oct 2002 09:40:16 -0000 Received: from dclient217-162-94-86.hispeed.ch (HELO gaxp1800.root.li) (217.162.94.86) by 0 with SMTP; 19 Oct 2002 09:40:16 -0000 Date: Sat, 19 Oct 2002 11:40:34 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.60q) Educational Reply-To: Gabriel Ambuehl X-Priority: 3 (Normal) Message-ID: <158158214781.20021019114034@buz.ch> To: questions@freebsd.org Subject: softupdates on /? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, during the process of setting up some new servers I noticed that sysinstall will enable softupdates by default for everything BUT /. Is there any risk if I set / to use softupdates as well? It works, but I'm not sure about the possible implications of this... I'd greatly appreciate all comments. regards, Gabriel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 2:44:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70B537B401 for ; Sat, 19 Oct 2002 02:44:14 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id E318E43E6A for ; Sat, 19 Oct 2002 02:44:10 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 420DF66B5E; Sat, 19 Oct 2002 02:44:10 -0700 (PDT) Date: Sat, 19 Oct 2002 02:44:10 -0700 From: Kris Kennaway To: Riley Cc: FreeBSD Questions Subject: Re: Buildworld fails Message-ID: <20021019094409.GA93941@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Oct 18, 2002 at 07:03:35PM -0700, Riley wrote: > /usr/src/gnu/lib/libobjc/../../../contrib/libobjc/objc/Protocol.h > /usr/obj/usr/src/i386/usr/include/objc > ===> gnu/lib/libg2c > sh /usr/src/tools/install.sh -C -o root -g wheel -m 444 libg2c.a > /usr/obj/usr/src/i386/usr/lib > sh /usr/src/tools/install.sh -s -o root -g wheel -m 444 libg2c.so.1 > /usr/obj/usr/src/i386/usr/lib > ln -fs libg2c.so.1 /usr/obj/usr/src/i386/usr/lib/libg2c.so > sh /usr/src/tools/install.sh -C -o root -g wheel -m 444 > /usr/src/gnu/lib/libg2c/g2c.h /usr/obj/usr/src/i386/usr/include > 1 error > *** Error code 2 The fact that there's no actual error message shown indicates that you're doing make installworld with a -j option. This is not supported and as you have found is likely to fail. Kris --KsGdsel6WgEHnImy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9sSlpWry0BWjoQKURAvZRAKCL/YFNqncbgT3RSnV5c+Aw4Q6sfwCgl1BA +Hu7KsPZtfE0Hgj6jZBCFGg= =GX/g -----END PGP SIGNATURE----- --KsGdsel6WgEHnImy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 4:22:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3224E37B401 for ; Sat, 19 Oct 2002 04:22:40 -0700 (PDT) Received: from sofia.digsys.bg (sofia.digsys.bg [193.68.3.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id E214A43E7B for ; Sat, 19 Oct 2002 04:22:32 -0700 (PDT) (envelope-from alalev@uni-svishtov.bg) Received: from ns.uni-svishtov.bg (ns.uni-svishtov.bg [193.68.172.1]) by sofia.digsys.bg (8.9.0/8.9.0) with ESMTP id OAA06821 for ; Sat, 19 Oct 2002 14:21:12 +0300 (EEST) Received: from mail.uni-svishtov.bg (grinch.uni-svishtov.bg [193.68.172.9]) by ns.uni-svishtov.bg (8.12.3/8.12.3) with ESMTP id g9JBIO0j097749 for ; Sat, 19 Oct 2002 14:18:24 +0300 (EEST) (envelope-from alalev@uni-svishtov.bg) Received: from uni-svishtov.bg (lalev.uni-svishtov.bg [193.68.173.61]) by mail.uni-svishtov.bg (8.12.6/8.12.6) with ESMTP id g9JBIOjD097706 for ; Sat, 19 Oct 2002 14:18:24 +0300 (EEST) (envelope-from alalev@uni-svishtov.bg) Message-ID: <3DB13F5D.1060908@uni-svishtov.bg> Date: Sat, 19 Oct 2002 14:17:49 +0300 From: Angelin Lazarov Lalev User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 To: questions@freebsd.org Subject: C programming help ? Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I need to convert some bytes, which are not an internet address, from machine to network byte order (described in RFC1700). I could do it mannualy, assuming a I386 (or some other) architecture, but then my code will be a lot less portable. Is there any function in libc or somewhere else which will do that conversion for me (and will be updated when new architecture is added)? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 4:26:43 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0EAE37B401 for ; Sat, 19 Oct 2002 04:26:41 -0700 (PDT) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5622F43E42 for ; Sat, 19 Oct 2002 04:26:41 -0700 (PDT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.6+Sun/8.11.6) id g9JBQdd06566; Sat, 19 Oct 2002 07:26:39 -0400 (EDT) From: Jerry McAllister Message-Id: <200210191126.g9JBQdd06566@clunix.cl.msu.edu> Subject: Re: UNIX operating system To: klapaugh@hotmail.com (Karen LaPaugh) Date: Sat, 19 Oct 2002 07:26:38 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: from "Karen LaPaugh" at Oct 19, 2002 12:18:12 AM 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Are there any limitations to this system? How much does it usually cost an > individual? > It is really free - except you have to buy your own computer. You can buy distribution sets which is nice and convenient, especially if you don't have a CD burner, but you don't have to. For starters, go to the FreeBSD web page at: HTTP://www.freebsd.org/ and click on the 'For Newbies' item in the menu on the left of the page. It will point you to lots of useful/helpful information. As for limitations, it still does not unbox our new machines and install itself on them without my intervention. The initial learning curve is rather steep if you do not have UNIX, especially BSD system management experience. But, that settles down to SOP after a bit. Have fun, ////jerry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 4:30: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6159E37B401 for ; Sat, 19 Oct 2002 04:30:06 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2705143E6A for ; Sat, 19 Oct 2002 04:30:05 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9JBTqei066470; Sat, 19 Oct 2002 12:29:52 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9JBTlNF066469; Sat, 19 Oct 2002 12:29:47 +0100 (BST) Date: Sat, 19 Oct 2002 12:29:47 +0100 From: Matthew Seaman To: questions@FreeBSD.ORG Cc: Gabriel Ambuehl Subject: Re: softupdates on /? Message-ID: <20021019112947.GA66358@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , questions@FreeBSD.ORG, Gabriel Ambuehl References: <158158214781.20021019114034@buz.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <158158214781.20021019114034@buz.ch> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-14.7 required=5.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_02_03, USER_AGENT,USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 11:40:34AM +0200, Gabriel Ambuehl wrote: > during the process of setting up some new servers I noticed that > sysinstall will enable softupdates by default for everything BUT /. > Is there any risk if I set / to use softupdates as well? The problem with softupdates is that a modification to the contents of a file system would result in a transient use of sufficient space to contain both the old and new versions of all affected files. Normally this is not a problem, but in certain cases it can lead to file modifications failing because of a full filesystem even though there is ultimately sufficient space available. One common instance of this is doing a 'make installworld' or 'make installkernel' where typical small root partitions generated by sysinstall can be overflowed. Now, arguments about how large a root partition should be or whether it should be amalgamated into /usr are neither here not there, but the contents of a standard root partition are generally static between major upgrades so there's no advantage to be gained by turning softupdates on. (Nb. This assumes that /var and /tmp are (sensibly) on different partitions to the root). > It works, but I'm not sure about the possible implications of this... For general use, softupdates on the root partition is not a problem. If your root partition is big enough to let you do whatever you need to by way of updating your system despite enabling softupdates, then you can turn it on with impunity. Of course, the size of the contents of the root partition tends to grow over time, so you may have to revisit that decision later on. It's also the case that modifications have been made to softupdates that ameliorate this effect, certainly in 5-CURRENT, not sure if they've been MFC'd to -STABLE though. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 4:35:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A8A137B401 for ; Sat, 19 Oct 2002 04:35:15 -0700 (PDT) Received: from iota.root-servers.ch (iota.root-servers.ch [193.41.193.195]) by mx1.FreeBSD.org (Postfix) with SMTP id 0311C43E8A for ; Sat, 19 Oct 2002 04:35:14 -0700 (PDT) (envelope-from gaml@buz.ch) Received: (qmail 4433 invoked from network); 19 Oct 2002 11:35:12 -0000 Received: from dclient217-162-94-86.hispeed.ch (HELO gaxp1800.root.li) (217.162.94.86) by 0 with SMTP; 19 Oct 2002 11:35:12 -0000 Date: Sat, 19 Oct 2002 13:33:16 +0200 From: Gabriel Ambuehl X-Mailer: The Bat! (v1.60q) Educational Reply-To: gabriel_ambuehl@buz.ch Organization: BUZ Internet Services X-Priority: 3 (Normal) Message-ID: <154164977656.20021019133316@buz.ch> To: Matthew Seaman Cc: questions@FreeBSD.ORG Subject: Re[2]: softupdates on /? In-Reply-To: <20021019112947.GA66358@happy-idiot-talk.infracaninophi> References: <158158214781.20021019114034@buz.ch> <20021019112947.GA66358@happy-idiot-talk.infracaninophi> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hello Matthew, Saturday, October 19, 2002, 1:29:47 PM, you wrote: > For general use, softupdates on the root partition is not a problem. > If your root partition is big enough to let you do whatever you need > to by way of updating your system despite enabling softupdates, then > you can turn it on with impunity. Of course, the size of the contents > of the root partition tends to grow over time, so you may have to > revisit that decision later on. That's exactly why I have root Partitions of about 300MB right now. Vastly over what's ever going to be needed but in the time of sub 100$ 80GB drives, this isn't of much concern to me anymore. Thanks for the explanations! Best regards, Gabriel -----BEGIN PGP SIGNATURE----- Version: PGP 6.0.2i iQEVAwUBPbE08cZa2WpymlDxAQHp4Af/SnyRiG6sKNZ6Bu9V6usaOkSTmTwGBOWn oqUh1TrUzJ2fzXn2CCDMEU+hV4swRroEOhnMannpQuN9hJlaEg71ABpNL8X+GSBT kcnVeC39jYCo3nBNO737huNAJ8pDKK/WB8odksQTizmzLgWQG0qUMLDqXihd2OeE U/P8CVHsYOsQBLqVcqnXQl4ykA9OjNriHkV9vZwlQIB4gkfZh5w+cnZ/wPqwJj+d 7eNcmNwLhr5kEl7i5LgiCnDsu+cDHg7G3O/bhQWDseZL2keq8mdxB51uGp8tzW3I 6c6pxz2ViAFNLK55dJOkUsDpnNyjiTB0mKXjMXOSoiuh8LXAKIdfZQ== =U4Zs -----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 Sat Oct 19 4:36:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DB4137B401 for ; Sat, 19 Oct 2002 04:36:31 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB0143E75 for ; Sat, 19 Oct 2002 04:36:30 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.12.6/8.12.6) with ESMTP id g9JBaTei066582; Sat, 19 Oct 2002 12:36:29 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost) by happy-idiot-talk.infracaninophile.co.uk (8.12.6/8.12.6/Submit) id g9JBaOhA066581; Sat, 19 Oct 2002 12:36:24 +0100 (BST) Date: Sat, 19 Oct 2002 12:36:24 +0100 From: Matthew Seaman To: questions@FreeBSD.ORG Cc: Angelin Lazarov Lalev Subject: Re: C programming help ? Message-ID: <20021019113624.GB66358@happy-idiot-talk.infracaninophi> Mail-Followup-To: Matthew Seaman , questions@FreeBSD.ORG, Angelin Lazarov Lalev References: <3DB13F5D.1060908@uni-svishtov.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3DB13F5D.1060908@uni-svishtov.bg> User-Agent: Mutt/1.5.1i X-Spam-Status: No, hits=-13.4 required=5.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, USER_AGENT,USER_AGENT_MUTT version=2.41 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 02:17:49PM +0300, Angelin Lazarov Lalev wrote: > I need to convert some bytes, which are not an internet address, from > machine to network byte order (described in RFC1700). I could do it > mannualy, assuming a I386 (or some other) architecture, but then my code > will be a lot less portable. Is there any function in libc or somewhere > else which will do that conversion for me (and will be updated when new > architecture is added)? inet_ntoa(3), inet_aton(3) will do that conversion for you[*]. Cheers, Matthew [*] Although the man page suggests that nowadays addr2ascii(3) and ascii2addr(3) should be preferred, but the current implementation of those functions is based on inet_ntoa(3), inet_aton(3). -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 4:48:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F34737B401 for ; Sat, 19 Oct 2002 04:48:50 -0700 (PDT) Received: from mailc.telia.com (mailc.telia.com [194.22.190.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1872C43E7B for ; Sat, 19 Oct 2002 04:48:39 -0700 (PDT) (envelope-from erikt@midgard.homeip.net) Received: from d1o913.telia.com (d1o913.telia.com [195.252.44.241]) by mailc.telia.com (8.12.5/8.12.5) with ESMTP id g9JBm4Q3028040 for ; Sat, 19 Oct 2002 13:48:04 +0200 (CEST) X-Original-Recipient: Received: from falcon.midgard.homeip.net (h76n3fls20o913.telia.com [213.67.148.76]) by d1o913.telia.com (8.8.8/8.8.8) with SMTP id NAA28546 for ; Sat, 19 Oct 2002 13:47:58 +0200 (CEST) Received: (qmail 3111 invoked by uid 1001); 19 Oct 2002 11:47:56 -0000 Date: Sat, 19 Oct 2002 13:47:56 +0200 From: Erik Trulsson To: Angelin Lazarov Lalev Cc: questions@freebsd.org Subject: Re: C programming help ? Message-ID: <20021019114756.GA3069@falcon.midgard.homeip.net> Mail-Followup-To: Angelin Lazarov Lalev , questions@freebsd.org References: <3DB13F5D.1060908@uni-svishtov.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3DB13F5D.1060908@uni-svishtov.bg> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 02:17:49PM +0300, Angelin Lazarov Lalev wrote: > I need to convert some bytes, which are not an internet address, from > machine to network byte order (described in RFC1700). I could do it > mannualy, assuming a I386 (or some other) architecture, but then my code > will be a lot less portable. Is there any function in libc or somewhere > else which will do that conversion for me (and will be updated when new > architecture is added)? htonl(3), ntohl(3), htons(3) and ntohs(3) seems to be exactly what you need. -- Erik Trulsson ertr1013@student.uu.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 8:17:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CEAC37B401 for ; Sat, 19 Oct 2002 08:17:53 -0700 (PDT) Received: from web20108.mail.yahoo.com (web20108.mail.yahoo.com [216.136.226.45]) by mx1.FreeBSD.org (Postfix) with SMTP id 56A5243E6E for ; Sat, 19 Oct 2002 08:17:53 -0700 (PDT) (envelope-from bsdneophyte@yahoo.com) Message-ID: <20021019151753.96127.qmail@web20108.mail.yahoo.com> Received: from [68.65.83.156] by web20108.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 08:17:53 PDT Date: Sat, 19 Oct 2002 08:17:53 -0700 (PDT) From: Bsd Neophyte Subject: FreeBSD version of Linux's "passwd -l" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG i'm following a pretty decent IBM tutorial on how to setup a samba PDC. in the tutorial the following command is mentioned: passwd -l this is what someone pulled from the RedHat man page for the '-l' option in RedHat: -l This option is used to lock the specified account and it is available to root only. The locking is performed by rendering the encrypted password into an invalid string (by prefixing the encrypted string with an !). in FreeBSD the option seems to be different. i've looked through the man page for a similar option, but i haven't been able to find anything. can anyone tell me how i do what the Linux '-l' does? __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 8:26:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAB5237B4B3 for ; Sat, 19 Oct 2002 08:26:22 -0700 (PDT) Received: from rhadamanth.submonkey.net (pc1-cdif2-4-cust210.cdf.cable.ntl.com [80.4.10.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7017443E6A for ; Sat, 19 Oct 2002 08:26:21 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from setantae by rhadamanth.submonkey.net with local (Exim 4.10) id 182vUZ-0002TK-00; Sat, 19 Oct 2002 16:26:19 +0100 Date: Sat, 19 Oct 2002 16:26:19 +0100 From: Ceri Davies To: Bsd Neophyte Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD version of Linux's "passwd -l" Message-ID: <20021019152619.GA9464@submonkey.net> Mail-Followup-To: Ceri Davies , Bsd Neophyte , freebsd-questions@freebsd.org References: <20021019151753.96127.qmail@web20108.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021019151753.96127.qmail@web20108.mail.yahoo.com> X-message-flag: All your linuxconf-configured redhat are belong to us. User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 08:17:53AM -0700, Bsd Neophyte wrote: > > i'm following a pretty decent IBM tutorial on how to setup a samba PDC. > in the tutorial the following command is mentioned: > > passwd -l pw lock [user] Check the pw manpage. Ceri -- you can't see when light's so strong you can't see when light is gone To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 8:39:16 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F7BC37B401 for ; Sat, 19 Oct 2002 08:39:15 -0700 (PDT) Received: from desert.turbowarp.net (turbowarp.net [198.78.66.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1AF043E97 for ; Sat, 19 Oct 2002 08:39:14 -0700 (PDT) (envelope-from randy@turbowarp.net) Received: (from www@localhost) by desert.turbowarp.net (8.11.6/8.11.6) id g9JFdEf04204; Sat, 19 Oct 2002 10:39:14 -0500 (CDT) (envelope-from randy@turbowarp.net) X-Authentication-Warning: desert.turbowarp.net: www set sender to randy@turbowarp.net using -f Received: from 207.71.22.225 (SquirrelMail authenticated user randy) by new.host.name with HTTP; Sat, 19 Oct 2002 10:39:14 -0500 (CDT) Message-ID: <2651.207.71.22.225.1035041954.squirrel@new.host.name> Date: Sat, 19 Oct 2002 10:39:14 -0500 (CDT) Subject: Port Upgrade From: To: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: X-Mailer: SquirrelMail (version 1.2.7) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, My box is freebsd 4.5-release When trying to do a Port Upgrade I run into this error. This used to work but not any more. Is 4.5 no longer supported? Please also reply to me. desert# pkg_add -r portupgrade Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.5-release/Latest/portupgrade.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.5-release/Latest/portupgrade.tgz' by URL Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9: 0:51 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A510A37B401 for ; Sat, 19 Oct 2002 09:00:50 -0700 (PDT) Received: from sage-one.net (adsl-65-71-135-137.dsl.crchtx.swbell.net [65.71.135.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8DBE43E4A for ; Sat, 19 Oct 2002 09:00:49 -0700 (PDT) (envelope-from jackstone@sage-one.net) Received: from sagea (sagea [192.168.0.3]) by sage-one.net (8.11.6/8.11.6) with SMTP id g9JG0cf12437; Sat, 19 Oct 2002 11:00:39 -0500 (CDT) (envelope-from jackstone@sage-one.net) Message-Id: <3.0.5.32.20021019110037.01430940@mail.sage-one.net> X-Sender: jackstone@mail.sage-one.net X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Sat, 19 Oct 2002 11:00:37 -0500 To: , From: "Jack L. Stone" Subject: Re: Port Upgrade Cc: In-Reply-To: <2651.207.71.22.225.1035041954.squirrel@new.host.name> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 10:39 AM 10.19.2002 -0500, randy@turbowarp.net wrote: >Hello, > >My box is freebsd 4.5-release > >When trying to do a Port Upgrade I run into this error. This used to work >but not any more. Is 4.5 no longer supported? Please also reply to me. > >desert# pkg_add -r portupgrade >Error: FTP Unable to get >ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.5-release/Latest/po rtupgrade.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.5-release/Latest/p ortupgrade.tgz' >by URL > >Thanks > Gather you don't use ports & cvsup? Easy to get and would include/install the portupgrade. Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9: 2:40 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73D4A37B404 for ; Sat, 19 Oct 2002 09:02:39 -0700 (PDT) Received: from lily.ezo.net (lily.ezo.net [206.102.130.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADA4243EA3 for ; Sat, 19 Oct 2002 09:02:38 -0700 (PDT) (envelope-from jflowers@ezo.net) Received: from peony.ezo.net (peony.ezo.net [206.102.130.11]) by lily.ezo.net (8.11.6/8.11.6) with ESMTP id g9JG22W95185 for ; Sat, 19 Oct 2002 12:02:02 -0400 (EDT) (envelope-from jflowers@ezo.net) From: "Jim Flowers" To: freebsd-questions@freebsd.org Subject: Sendmail Upgrade Problems (dirrm) Date: Sat, 19 Oct 2002 12:05:40 -0400 Message-Id: <20021019120540.M17639@ezo.net> X-Mailer: Open WebMail 1.60 20020130 X-OriginatingIP: 24.93.230.119 (jflowers) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am trying to install the sendmail 8.12.6 port on a 4.4-stable system. I think I did this before with 8.12.3 successfully but on this one I get an error: "dirrm share/sendmail: not found:. Can someone tell me what's going on? Also, I seem to remember that the port installed everything but you could run a script which I can't find to change between the base sendmail and the port sendmail and back. Is this still available and what is it called? Thanks. -- Jim Flowers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9:13:54 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB99637B401 for ; Sat, 19 Oct 2002 09:13:52 -0700 (PDT) Received: from smtp.comcast.net (smtp.comcast.net [24.153.64.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35FEF43E75 for ; Sat, 19 Oct 2002 09:13:52 -0700 (PDT) (envelope-from mheyes@comcast.net) Received: from comcast.net (pcp02388807pcs.pinval01.in.comcast.net [68.54.25.123]) by mtaout03.icomcast.net (iPlanet Messaging Server 5.1 HotFix 1.4 (built Aug 5 2002)) with ESMTP id <0H4800DY9L33WY@mtaout03.icomcast.net> for freebsd-questions@FreeBSD.org; Sat, 19 Oct 2002 12:13:51 -0400 (EDT) Date: Sat, 19 Oct 2002 11:14:04 -0500 From: mh Subject: Re: Mac can't connect to Internet In-reply-to: <5.1.0.14.2.20021018142033.0239a840@pbegames.com> To: Mark Thomas Cc: freebsd-questions@FreeBSD.org Message-id: MIME-version: 1.0 X-Mailer: Apple Mail (2.546) Content-type: text/plain; charset=US-ASCII; format=flowed Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, October 18, 2002, at 01:21 PM, Mark Thomas wrote: > At 11:31 AM 10/18/02 -0500, you wrote: >> I have FreeBSD, 4.7 Stable running as a gateway box, with a Debian box >> also on the network. The gateway is connected to a Comcast cable >> modem, >> and is running ipfw as a firewall. Both boxes can see/connect each >> other >> and the Internet. >> >> I added a Powerbook, OS X, to the local network, configured /etc/hosts >> and /etc/resolv.conf. PB can ping the other boxes ok, but can't see >> the >> Internet. The other boxes can ping the PB ok. Looks like a firewall >> problem. If I connect the PB to the cable modem directly, the PB >> connects ok. >> >> It appears that the PB is trying to send UDP packets out on port 67, >> so >> I tried to open up the firewall for UDP traffic (not a good idea?) but >> still can't see outside the local network. Attached is my rc.firewall. >> In /etc/rc.conf I have firewall_type="open" and added some rules to >> the >> "open" section in rc.firewall. >> >> What am I doing wrong? Thanks. > > Is the powerbook set to use the gateway as a gateway? > > > Mark Thomas > --- > thomas@pbegames.com ----> http://www.pbegames.com/~thomas > Play by Electron Games -> http://www.pbegames.com Free Trial Games This was exactly the problem. It occurred to me while I was at work. I needed to provide the ip to the gateway. Easy fix, sorry for the noise, thanks for the reply. Also sorry for the formatting of this if it's screwed up. Michael Heyes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9:19:30 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 230D737B404 for ; Sat, 19 Oct 2002 09:19:28 -0700 (PDT) Received: from smtprelay7.dc2.adelphia.net (smtprelay7.dc2.adelphia.net [64.8.50.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A9943E88 for ; Sat, 19 Oct 2002 09:19:27 -0700 (PDT) (envelope-from barbish@a1poweruser.com) Received: from barbish ([68.65.175.62]) by smtprelay7.dc2.adelphia.net (Netscape Messaging Server 4.15 smtprelay7 Dec 7 2001 09:58:59) with SMTP id H48LCD00.92U; Sat, 19 Oct 2002 12:19:25 -0400 Reply-To: From: "JoeB" To: "David Loszewski" , "freebsd-questions" Subject: RE: problem with network cards in server, plz help Date: Sat, 19 Oct 2002 12:19:25 -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.2911.0) In-Reply-To: <3DB0A7CB.6010601@attbi.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The problem you describe is becoming common in the 4.x versions of FBSD. I have seen these solutions voiced previously in this list. 1. Check the PC's bios, look for a toggle to disable plug-n-play function. 2. Check that your PCI Nic card is not in the first or last PCI expansion slot on the motherboard. 3. There is a problem with autonegotiation of the media settings between your NIC and your switch. The default setting of auto means the Nic card should sense the Lan for the switch or hub and set it's media type to match. There have been reports of the Nic Card media type changing on the fly between 10/100 and halfduplex and fullduplex causing the network to freeze up. To stop this use the "ifconfig" command in the rc.conf file to force the media type. Like this ifconfig_xl0="inet 10.0.10.2 media 100baseTX mediaopt full-duplex" 4 add option PCI_ENABLE_IO_MODES to your kernel source and recompile. See LINT 5. add device puc option PUC_FASTINTR to your kernel source and recompile. See LINT 6. Follow bug fix using this url http://www.freebsd.org/cgi/query-pr.cgi?pr=40636 Try one of the above one at a time until your problem goes away. I have two different cards on my Netfinity 5000 server, a pci Netgear FA311 (showing up as a NatSemi (sis0), and the onboard network card which seems to have an AMD chipset (pcn0). If I have the onboard ethernet card enabled at all and have an active cable connected to it and restart the computer it comes up on ukphy0, turns the pci error light on and I get no internet access which it later makes the computer reboot automatically without any warning. If I disable that card and put in a PCI Netgear card, have also tried other cards such as Intel or IBM cards, once in a while it will boot normally but every once in a while it will get hung up on the ukphy0 as well, giving me the same problem as the onboard network and reboot itself. At first I thought it was an IRQ problem but all of my devices now have individual IRQ's set in the bios and I'm still having this problem. I'm afraid to reboot this thing because I'm afraid it won't be coming back up. Below are from my dmesg, the first is when I have my onboard ethernet enabled and the second is when I have the netgear installed. Any help would be much appreciated on what to do with this problem. By the way....I'm running on FreeBSD 4.6.2 but also have this problem running 4.7, I it also usually hangs on the driver initialization during installation of the os. Dave Oct 4 21:11:36 hermes /kernel: pcn0: port 0x2180-0 x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0 Oct 4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9 Oct 4 21:11:36 hermes /kernel: miibus0: on pcn0 Oct 4 21:11:36 hermes /kernel: ukphy0: on miibus0 Oct 4 21:11:36 hermes /kernel: ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100bas eTX-FDX, auto pcib1: on motherboard pci1: on pcib1 sis0: port 0x4b00-0x4bff mem 0xc0fdf000-0xc0fdffff irq 5 at device 4.0 on pci1 sis0: Ethernet address: 00:a0:cc:76:d9:f1 miibus0: on sis0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9:24:25 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D4B937B401 for ; Sat, 19 Oct 2002 09:24:23 -0700 (PDT) Received: from ermis.cc.duth.gr (ermis.cc.duth.gr [192.108.114.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 190B543E4A for ; Sat, 19 Oct 2002 09:24:22 -0700 (PDT) (envelope-from bigbrother@bonbon.net) Received: from bigb3server.bbcluster.gr (b9-29.xan.duth.gr [193.92.211.29]) by ermis.cc.duth.gr (8.12.6/8.12.6) with ESMTP id g9JGOJ1U026323 for ; Sat, 19 Oct 2002 19:24:19 +0300 (EEST) (envelope-from bigbrother@bonbon.net) Received: from bigb3server.bbcluster.gr (localhost.bbcluster.gr [127.0.0.1]) by bigb3server.bbcluster.gr (8.12.3/8.12.3) with ESMTP id g9JGOEJK035564 for ; Sat, 19 Oct 2002 19:24:14 +0300 (EEST) (envelope-from bigbrother@bonbon.net) Received: from localhost (bigbrother@localhost) by bigb3server.bbcluster.gr (8.12.3/8.12.3/Submit) with ESMTP id g9JGOBD2035219 for ; Sat, 19 Oct 2002 19:24:13 +0300 (EEST) X-Authentication-Warning: bigb3server.bbcluster.gr: bigbrother owned process doing -bs Date: Sat, 19 Oct 2002 19:24:10 +0300 (EEST) From: BigBrother X-X-Sender: bigbrother@bigb3server.bbcluster.gr To: questions@freebsd.org Subject: IPNAT/NATD issues-questions.. Message-ID: <20021019191855.G212-100000@bigb3server.bbcluster.gr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear, I have a couple of issues regarding the IPNAT or NATD of freebsd. In case that you dont have enough time, skip the next paragraph [description] and go to questions section. -=Description of problem=- I was using NATD for more than 3 years with no problem. By debbuging a problem in my IRC Fserve I noticed that connections originating from my router [that run NATD] were using very high port ranges, even though I had specifically configured the IRC fserve to be in a different lower range. When I stop using NATD and changed to IPNAT the problem dissaper and every client on my router allocated a port in his specified range. This was also solved my problem with DCC+RESUME. Because the NATD was changing the originating ports, the dcc transfer resume was not able to happen. With IPNAT the resume of DCC transfers had no problems, because the client was using what port he had requested. I am using statefull IPFW and for this reason, I wanted an exact port range. natd config file has only the use_same_ports and use sockets options. In IPFW rules I had the first line 50 divert natd all from any to any via ed0 -=END OF DESCRIPTION of problem=- Questions --------- a) Why did NATD changed my originating ports on my router. IPNAT didn't do anything like this, and the functionality is the same [my lan can connect with no problems to net] b) when NATD was used, I could see that the process of NATD consumed a high cpu time [almost 10-20% on a P166]. Where is the cpu time of the IPNAT? c) I believe that IPNAT doesnt have the overhead of NATD. So is IPNAT suggested for slower cpu machines (??). Am I wrong in this assumption? d) In my IPFW there was the rule '50 divert natd all from any to any'. Is this correct? I mean with this rule ALL packets were forced to pass through this and then re-injected to the chain. I try to put it after some rules of the firewall but the NATD didnt worked [I tryied many places...] e) Is IPFW + IPNAT a good combination? I know that the pairs are (IPFW + NATD) and (IPF + IPNAT). What I am doing is good or not suggested [and why?] f) I have understand that the 'official' firewall for freebsd is IPFW, and ipf is just a 'contributed' software. But a lot of people suggest the use of IPF and name it as supperior firewall. Is there a comparison page/site that states the overhead of these two firewalls, or pros/cons of them? g) Why some people say that IPFW is a 'userland' application even though it has not process vissible running? Thank you very much in advance, and I really hope that my questions will be answered.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9:34:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47A7A37B401 for ; Sat, 19 Oct 2002 09:34:25 -0700 (PDT) Received: from rhadamanth.submonkey.net (pc1-cdif2-4-cust210.cdf.cable.ntl.com [80.4.10.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CEE143E6E for ; Sat, 19 Oct 2002 09:34:24 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from setantae by rhadamanth.submonkey.net with local (Exim 4.10) id 182wYQ-0003cK-00 for questions@FreeBSD.org; Sat, 19 Oct 2002 17:34:22 +0100 Date: Sat, 19 Oct 2002 17:34:22 +0100 From: Ceri Davies To: questions@FreeBSD.org Subject: Can't build databases/portgresql7 Message-ID: <20021019163422.GA13870@submonkey.net> Mail-Followup-To: Ceri Davies , questions@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-message-flag: All your linuxconf-configured redhat are belong to us. User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I know this is my fault, because I've checked the error logs on bento and it's building fine there, but I keep getting the following error trying to build the postgresql7 port: ## error log starts gmake[5]: Entering directory `/usr/ports/databases/postgresql7/work/postgresql-7.2.3/src/backend/access/heap' cc -O -pipe -march=pentiumpro -Wall -Wmissing-prototypes -Wmissing-declarations -I../../../../src/include -I/usr/local/include -c -o heapam.o heapam.c cc -O -pipe -march=pentiumpro -Wall -Wmissing-prototypes -Wmissing-declarations -I../../../../src/include -I/usr/local/include -c -o hio.o hio.c cc -O -pipe -march=pentiumpro -Wall -Wmissing-prototypes -Wmissing-declarations -I../../../../src/include -I/usr/local/include -c -o tuptoaster.o tuptoaster.c tuptoaster.c: In function `toast_delete_datum': tuptoaster.c:914: `F_OIDEQ' undeclared (first use in this function) tuptoaster.c:914: (Each undeclared identifier is reported only once tuptoaster.c:914: for each function it appears in.) tuptoaster.c: In function `toast_fetch_datum': tuptoaster.c:997: `F_OIDEQ' undeclared (first use in this function) gmake[5]: *** [tuptoaster.o] Error 1 gmake[5]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.2.3/src/backend/access/heap' gmake[4]: *** [heap-recursive] Error 2 gmake[4]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.2.3/src/backend/access' gmake[3]: *** [access-recursive] Error 2 gmake[3]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.2.3/src/backend' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.2.3/src' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.2.3' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/databases/postgresql7. *** Error code 1 Stop in /usr/ports/databases/postgresql7 ## error log ends Indications on the postgresql lists seem to indicate that this may be a problem with awk, but I can't see why this would be failing. Any suggestions ? Thanks, Ceri -- you can't see when light's so strong you can't see when light is gone To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9:35:44 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1427B37B401 for ; Sat, 19 Oct 2002 09:35:43 -0700 (PDT) Received: from aji.wilshire.net (worm.wilshire.net [64.161.77.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3B2A43E88 for ; Sat, 19 Oct 2002 09:35:40 -0700 (PDT) (envelope-from rileyjmc@pacbell.net) Received: from emilyd (emilyd.wilshire.net [10.100.123.20]) by aji.wilshire.net (8.12.3/8.12.3) with SMTP id g9JGXUt2016119; Sat, 19 Oct 2002 09:33:31 -0700 (PDT) (envelope-from rileyjmc@pacbell.net) From: "Riley" To: "Kris Kennaway" Cc: "FreeBSD Questions" Subject: RE: Buildworld fails Date: Sat, 19 Oct 2002 09:35:33 -0700 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 V6.00.2800.1106 In-Reply-To: <20021019094409.GA93941@xor.obsecurity.org> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: Kris Kennaway > Sent: Saturday, October 19, 2002 2:44 AM > > 1 error > > *** Error code 2 > > The fact that there's no actual error message shown indicates that > you're doing make installworld with a -j option. This is not > supported and as you have found is likely to fail. > > Kris The lack of an error message did seem odd. Thanks for the heads up. Is the Handbook out of date? According the Build World section: It is now possible to specify a -j option to make which will cause it to spawn several simultaneous processes. This is most useful on multi-CPU machines. However, since much of the compiling process is IO bound rather than CPU bound it is also useful on single CPU machines. On a typical single-CPU machine you would run: # make -j4 buildworld make(1) will then have up to 4 processes running at any one time. Empirical evidence posted to the mailing lists shows this generally gives the best performance benefit. Let me give it a try without `-j'. Thanks again, Riley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 9:57:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6088037B401 for ; Sat, 19 Oct 2002 09:57:10 -0700 (PDT) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB3FA43EA3 for ; Sat, 19 Oct 2002 09:57:09 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.12.6/8.12.5) with ESMTP id g9JGv94G066958 for ; Sat, 19 Oct 2002 09:57:09 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.12.6/8.12.6/Submit) id g9JGv9iC066957 for freebsd-questions@freebsd.org; Sat, 19 Oct 2002 09:57:09 -0700 (PDT) Date: Sat, 19 Oct 2002 09:57:09 -0700 From: Steve Kargl To: freebsd-questions@freebsd.org Subject: combining shared libraries into 1 library? Message-ID: <20021019165709.GA66781@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is it possible to combine 2 shared libraries into a single library? I've read the ld(1) man page, but it isn't clear whether this is possible. I would like to do ld -Bsharable -o libX.so libY.so libZ.so where libY.so are libZ.so are combined into libX.so. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 10: 4:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21E7337B401 for ; Sat, 19 Oct 2002 10:04:36 -0700 (PDT) Received: from vectors.cx (manifold.vectors.cx [64.163.147.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id B913843E65 for ; Sat, 19 Oct 2002 10:04:35 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: from vectors.cx (b6e844d20f74669aee571eb8ce870de6@localhost [127.0.0.1]) by vectors.cx (8.12.6/8.12.4) with ESMTP id g9JH62ho091276; Sat, 19 Oct 2002 10:06:02 -0700 (PDT) (envelope-from monkey@vectors.cx) Received: (from monkey@localhost) by vectors.cx (8.12.6/8.12.6/Submit) id g9JH62jc091275; Sat, 19 Oct 2002 10:06:02 -0700 (PDT) (envelope-from monkey) Date: Sat, 19 Oct 2002 10:06:02 -0700 From: Adam Weinberger To: randy@turbowarp.net Cc: questions@FreeBSD.ORG Subject: Re: Port Upgrade Message-ID: <20021019170602.GK8122@vectors.cx> Mail-Followup-To: Adam Weinberger , randy@turbowarp.net, questions@FreeBSD.ORG References: <2651.207.71.22.225.1035041954.squirrel@new.host.name> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <2651.207.71.22.225.1035041954.squirrel@new.host.name> X-Editor: Vim 6.1 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-PGP-Key: http://www.vectors.cx/pgp.key.txt X-URL: http://www.vectors.cx http://www.crackula.com User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 >> (10.19.2002 @ 0839 PST): randy@turbowarp.net said, in 0.6K: << > My box is freebsd 4.5-release > > When trying to do a Port Upgrade I run into this error. This used to work > but not any more. Is 4.5 no longer supported? Please also reply to me. > > desert# pkg_add -r portupgrade > Error: FTP Unable to get > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.5-release/Latest/portupgrade.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.5-release/Latest/portupgrade.tgz' > by URL > > Thanks >> end of "Port Upgrade" from randy@turbowarp.net << you are correct: 4.5 packages are not sitting around on the server. your options are as follows: * upgrade to 4.7 and use packages * update your ports tree (cvsup) and build from ports * download the newer packages and just pkg_add them - -Adam - -- Adam Weinberger adam@vectors.cx adamw@FreeBSD.ORG -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE9sZD6o8KM2ULHQ/0RAoW8AJ0XYQvSysjOIsNyOCpx3feATbjr1ACffmZ9 IukXoQlqJusWQAqBdiIbMSE= =K19F -----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 Sat Oct 19 10: 7:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C287B37B401 for ; Sat, 19 Oct 2002 10:07:35 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51C2043E6E for ; Sat, 19 Oct 2002 10:07:35 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id KAA25320; Sat, 19 Oct 2002 10:06:41 -0700 Message-ID: <3DB19120.6000005@owt.com> Date: Sat, 19 Oct 2002 10:06:40 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Riley Cc: Kris Kennaway , FreeBSD Questions Subject: Re: Buildworld fails References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Riley wrote: >>From: Kris Kennaway >>Sent: Saturday, October 19, 2002 2:44 AM > > >>>1 error >>>*** Error code 2 >> >>The fact that there's no actual error message shown indicates that >>you're doing make installworld with a -j option. This is not >>supported and as you have found is likely to fail. >> >>Kris > > > The lack of an error message did seem odd. Thanks for the heads up. > > Is the Handbook out of date? According the Build World section: > > > It is now possible to specify a -j option to make which will cause it to > spawn several simultaneous processes. This is most useful on multi-CPU > machines. However, since much of the compiling process is IO bound rather > than CPU bound it is also useful on single CPU machines. > > On a typical single-CPU machine you would run: > > # make -j4 buildworld > > make(1) will then have up to 4 processes running at any one time. Empirical > evidence posted to the mailing lists shows this generally gives the best > performance benefit. > > > Let me give it a try without `-j'. > Time it when you do the buildworld such as "time make". There are a lot of us with newer HDs and cpus that have found that no "-j" produces a wall clock time that is 10-20% faster than -j4. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 10: 9:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 453B537B401 for ; Sat, 19 Oct 2002 10:09:41 -0700 (PDT) Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [24.147.188.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59E1043E6A for ; Sat, 19 Oct 2002 10:09:40 -0700 (PDT) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [24.147.188.198] (may be forged)) by be-well.ilk.org (8.12.6/8.12.5) with ESMTP id g9JH9X8s031222; Sat, 19 Oct 2002 13:09:33 -0400 (EDT) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: (from lowell@localhost) by be-well.ilk.org (8.12.6/8.12.6/Submit) id g9JH9Wjv031219; Sat, 19 Oct 2002 13:09:32 -0400 (EDT) X-Authentication-Warning: be-well.ilk.org: lowell set sender to freebsd-questions-local@be-well.ilk.org using -f /usr/users/lowell/Fcc: ~/Mail/outgoing-mail To: Cc: "Chris Ptacek" , , Subject: Re: prc-tools-2.2 on FreeBSD-4.7 build errors References: From: Lowell Gilbert Date: 19 Oct 2002 13:09:32 -0400 In-Reply-To: Message-ID: <44lm4uz777.fsf@be-well.ilk.org> Lines: 7 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Chris Ptacek" writes: > This appears to be an issue with not having libintl available on FreeBSD. I > havn't tried these suggestions yet, but I thought I would pass them along. > Is the libintl stuff available through a port? gettext To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 10:12:17 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4D5237B401 for ; Sat, 19 Oct 2002 10:12:14 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CF7743EA9 for ; Sat, 19 Oct 2002 10:12:14 -0700 (PDT) (envelope-from stealth215@attbi.com) Received: from rwcrwbc57 ([204.127.198.46]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20021019171214.XNRA18217.rwcrmhc51.attbi.com@rwcrwbc57>; Sat, 19 Oct 2002 17:12:14 +0000 Received: from [216.177.0.160] by rwcrwbc57; Sat, 19 Oct 2002 17:12:13 +0000 From: stealth215@attbi.com To: Cc: freebsd-questions@freebsd.org Subject: RE: problem with network cards in server, plz help Date: Sat, 19 Oct 2002 17:12:13 +0000 X-Mailer: AT&T Message Center Version 1 (Aug 12 2002) Message-Id: <20021019171214.XNRA18217.rwcrmhc51.attbi.com@rwcrwbc57> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I got it working with the netgear buy just turinging off the plug n' play. I will try your other suggestions to try to get the AMD nic working. thx, Dave > The problem you describe is becoming common in the 4.x versions of FBSD. > I have seen these solutions voiced previously in this list. > > 1. Check the PC's bios, look for a toggle to disable plug-n-play function. > > 2. Check that your PCI Nic card is not in the first or last PCI expansion > slot on the motherboard. > > 3. There is a problem with autonegotiation of the media settings between > your NIC and your switch. The default setting of auto means the Nic card > should sense the Lan for the switch or hub and set it's media type to match. > There have been reports of the Nic Card media type changing on the fly > between > 10/100 and halfduplex and fullduplex causing the network to freeze up. > To stop this use the "ifconfig" command in the rc.conf file to force the > media type. Like this > ifconfig_xl0="inet 10.0.10.2 media 100baseTX mediaopt full-duplex" > > 4 add option PCI_ENABLE_IO_MODES > to your kernel source and recompile. See LINT > > 5. add device puc > option PUC_FASTINTR > to your kernel source and recompile. See LINT > > 6. Follow bug fix using this url > http://www.freebsd.org/cgi/query-pr.cgi?pr=40636 > > > Try one of the above one at a time until your problem goes away. > > I have two different cards on my Netfinity 5000 server, a pci Netgear > FA311 (showing up as a NatSemi (sis0), and the onboard network card > which seems to have an AMD chipset (pcn0). If I have the onboard > ethernet card enabled at all and have an active cable connected to it > and restart the computer it comes up on ukphy0, turns the pci error > light on and I get no internet access which it later makes the computer > reboot automatically without any warning. If I disable that card and > put in a PCI Netgear card, have also tried other cards such as Intel or > IBM cards, once in a while it will boot normally but every once in a > while it will get hung up on the ukphy0 as well, giving me the same > problem as the onboard network and reboot itself. At first I thought it > was an IRQ problem but all of my devices now have individual IRQ's set > in the bios and I'm still having this problem. I'm afraid to reboot > this thing because I'm afraid it won't be coming back up. Below are > from my dmesg, the first is when I have my onboard ethernet enabled and > the second is when I have the netgear installed. Any help would be much > appreciated on what to do with this problem. By the way....I'm running > on FreeBSD 4.6.2 but also have this problem running 4.7, I it also > usually hangs on the driver initialization during installation of the os. > > Dave > > Oct 4 21:11:36 hermes /kernel: pcn0: port > 0x2180-0 > x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0 > Oct 4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9 > Oct 4 21:11:36 hermes /kernel: miibus0: on pcn0 > Oct 4 21:11:36 hermes /kernel: ukphy0: interface> on > miibus0 > Oct 4 21:11:36 hermes /kernel: ukphy0: 10baseT, 10baseT-FDX, > 100baseTX, 100bas > eTX-FDX, auto > > > pcib1: on motherboard > pci1: on pcib1 > sis0: port 0x4b00-0x4bff mem > 0xc0fdf000-0xc0fdffff irq 5 at device 4.0 on pci1 > sis0: Ethernet address: 00:a0:cc:76:d9:f1 > miibus0: on sis0 > ukphy0: on miibus0 > ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 19 10:16:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EC0837B406 for ; Sat, 19 Oct 2002 10:16:55 -0700 (PDT) Received: from falla.videotron.net (falla.videotron.net [205.151.222.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D6243E65 for ; Sat, 19 Oct 2002 10:16:54 -0700 (PDT) (envelope-from dinz@videotron.ca) Received: from there ([24.200.100.119]) by falla.videotron.net (Sun Internet Mail Server sims.3.5.1999.12.14.10.29.p8) with SMTP id <0H48003HHNYCO1@falla.videotron.net> for freebsd-questions@FreeBSD.ORG; Sat, 19 Oct 2002 13:15:49 -0400 (EDT) Date: Sat, 19 Oct 2002 13:12:08 -0400 From: "Daniel A. Inzirillo" Subject: Re: Can't get to Internet - Tinker with /etc/hosts? In-reply-to: <051901c2772e$f8aa8180$fa00a8c0@DaleCoportable> To: "DaleCo, S.P.---'the solutions people'" , Freebsd-Questions Message-id: <0H48003HINYDO1@falla.videotron.net> MIME-version: 1.0 X-Mailer: KMail [version 1.3.1] Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 8bit References: <0H470052DPMF2J@falla.videotron.net> <051901c2772e$f8aa8180$fa00a8c0@DaleCoportable> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG And the answer is: NO, at least in my case. Problem solved. I am sending this for the benefit of any other newbee like me having the same problem. Problem description: * have two machines connected to the Internet through a cable/DSL router. * One of them is running a freshly installed, not yet custom configured, FreeBSD 4.7, with the network configured to try DHCP. * the other runs another OS. * The boxes are assigned the 192.168.1.100 and 192.168.1.101 addresses by the router. * They can ping each other. * The FBSD machine cannot get to the Internet, but the other machine can. Solution that worked for me: * Find out the internal IP address of your router. In my case it is 192.168.1.1 * Then add to /etc/rc.conf a line similar to this: defaultrouter="192.168.1.1" using the correct address. * Also, make sure that something like the following is present: ifconfig_xxx="DHCP" where xxx is the name of your network interface (dc0 in my case, use ifconfig to find out) (Kevin: Thank you for your messages) Question: What is the standard way to re-start the network interface to make sure that config files like rc.conf are read anew after being modified? Would ifconfig dc0 down ifconfig dc0 up do that? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 10:19: 3 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C67537B401 for ; Sat, 19 Oct 2002 10:19:02 -0700 (PDT) Received: from mercury.jorsm.com (mercury.jorsm.com [207.112.128.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BBFF43E91 for ; Sat, 19 Oct 2002 10:19:02 -0700 (PDT) (envelope-from steveb@mercury.jorsm.com) Received: by mercury.jorsm.com (Postfix, from userid 4147) id B5B1D1E2E52; Sat, 19 Oct 2002 12:18:56 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mercury.jorsm.com (Postfix) with ESMTP id B40E81E2E51 for ; Sat, 19 Oct 2002 12:18:56 -0500 (CDT) Date: Sat, 19 Oct 2002 12:18:56 -0500 (CDT) From: Stephen Bader To: freebsd-questions@freebsd.org Subject: xinetd FTP trouble Message-ID: <20021019121448.W61006-100000@mercury.jorsm.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Last week I upgraded to xinetd-2.3.8 to bring us up to the lastest and most secure version. Since the upgrade, all services but FTP have been working fine. FTP will work for a few days, and then all of the sudden, no longer accept connections. Sending xinetd a HUP results in the following message: ct 19 10:54:39 mercury xinetd[71519]: file descriptor of service ftp has been closed Oct 19 10:54:39 mercury xinetd[71519]: select reported EBADF but no bad file descriptors were found But, if I completely kill xinetd and then restart it, the service will work properly again for a few days, until the same problem re-occurs. I'm using the ftpd included in the base, and have the following entry for ftp in my xinetd.conf file: service ftp { socket_type = stream protocol = tcp wait = no user = root server = /usr/libexec/ftpd server_args = -l -l -S } Has anyone else seen anything like this before? Everything was working great until the upgrade. TIA! -Steve ------------------------------------------------------------------------- Stephen Bader JORSM Internet, Regional Internet Services Systems Administrator 7 Area Codes in Chicagoland and NW Indiana steveb@jorsm.com 100Mbps+ Connectivity, 56K-DS3, V.90, ISDN (219) 322-2180 Quality Service, Affordable Prices http://www.jorsm.com Serving Gov, Biz, Indivds Since 1995 ------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 10:33: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F18B837B401 for ; Sat, 19 Oct 2002 10:33:07 -0700 (PDT) Received: from grummit.biaix.org (213-97-212-86.uc.nombres.ttd.es [213.97.212.86]) by mx1.FreeBSD.org (Postfix) with SMTP id 58FDB43E6A for ; Sat, 19 Oct 2002 10:33:06 -0700 (PDT) (envelope-from joan@grummit.biaix.org) Received: (qmail 771 invoked by uid 1000); 14 Oct 2002 20:10:41 -0000 Date: Mon, 14 Oct 2002 22:10:41 +0200 From: Joan Picanyol To: questions@freebsd.org Subject: Re: Running ipfw from a webpage/using php. Message-ID: <20021014201041.GA645@grummit.biaix.org> Mail-Followup-To: questions@freebsd.org References: <010101c2738e$ffcd2560$ec9e1ec4@staff.uunet.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <010101c2738e$ffcd2560$ec9e1ec4@staff.uunet.co.za> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Patrick Holahan [20021014 16:35]: > I need to run a root command (ipfw) from apache through php. (Yes, this is > not very secure and I'm aware of this and if anyone has any better > suggestions, please feel free to make them.) What do you want to do? (No, you *don't* want to run a command as root from php) > Would anyone know how to do this? If you really want to do it, you can try Apache's SUEXEC feature. Read about it at http://httpd.apache.org/docs/suexec.html qvb -- pica To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 10:59:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9102837B401 for ; Sat, 19 Oct 2002 10:59:28 -0700 (PDT) Received: from dragoncrest.jasnetworks.net (dragoncrest.jasnetworks.net [65.194.254.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id B326F43E75 for ; Sat, 19 Oct 2002 10:59:27 -0700 (PDT) (envelope-from dragoncrest@voyager.net) Received: from works (works.jasnetworks.net [192.168.0.2]) by dragoncrest.jasnetworks.net (8.12.3/8.11.6) with ESMTP id g9JIIXxA055681 for ; Sat, 19 Oct 2002 14:18:33 -0400 (EDT) (envelope-from dragoncrest@voyager.net) Message-Id: <4.2.0.58.20021019140502.009666c0@pop.voyager.net> X-Sender: dragoncrest@pop.voyager.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Sat, 19 Oct 2002 14:08:16 -0400 To: freebsd-questions@FreeBSD.ORG From: Lord Raiden Subject: Questions about dialup Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi. Got a quick question. I'm unsure of the answer or where to look. I'm setting up one of our old machines as a freebsd dialup station for work to test local pops for linux compatibility for a local ISP. I also want to use it as a way for me to learn how to dialup to the internet using Freebsd. Considering I've only ever used it on a network, this will be new to me. Can anyone recommend a good linux/freebsd dialer software I could use? I'm using freebsd 4.6 on the machine and would like to install a dialer (and modem drivers if possible) so I can use it as a test dialer station. Any pointers, software suggestions, tutorials you can point me to or send my way would be great. Thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 11:10:20 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A38037B401 for ; Sat, 19 Oct 2002 11:10:19 -0700 (PDT) Received: from alpha.focalnetworks.net (alpha.focalnetworks.net [209.135.104.32]) by mx1.FreeBSD.org (Postfix) with SMTP id 204AA43EAA for ; Sat, 19 Oct 2002 11:10:17 -0700 (PDT) (envelope-from project10@alpha.focalnetworks.net) Received: (qmail 31707 invoked by uid 1000); 19 Oct 2002 18:10:09 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 19 Oct 2002 18:10:09 -0000 Date: Sat, 19 Oct 2002 14:10:09 -0400 (EDT) From: Shawn Lussier To: freebsd-questions@freebsd.org Subject: Can't 'make depend' when trying to build kernel source Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I've recently cvsupped my source tree to 4.7-R in anticipation of upgrades to these systems. On one, in particular, I cannot rebuild the kernel -- when I run 'make depend', I get the following message: cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding ../../i386/i386/genassym.c cc1: Invalid option `no-align-long-strings' The system currently stands at version 4.3-R-p22, and the compiler is 'gcc version 2.95.4 20020320 [FreeBSD]'. I have also tried building with gcc 3.2 to no avail (same message). Can anyone provide some insight as to probable causes? I have never run into this problem before. Any assistance is greatly appreciated. -Shawn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 11:53: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45E6337B401 for ; Sat, 19 Oct 2002 11:53:01 -0700 (PDT) Received: from web20804.mail.yahoo.com (web20804.mail.yahoo.com [216.136.226.193]) by mx1.FreeBSD.org (Postfix) with SMTP id F3A9143E88 for ; Sat, 19 Oct 2002 11:53:00 -0700 (PDT) (envelope-from pusongsinugatan@yahoo.com) Message-ID: <20021019185300.7052.qmail@web20804.mail.yahoo.com> Received: from [63.197.32.222] by web20804.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 11:53:00 PDT Date: Sat, 19 Oct 2002 11:53:00 -0700 (PDT) From: ako ito Subject: problem with login.access To: freebsd MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG my login.access was working perfectly with 4.6-stable (not allowing users to login via telnet/ssh but allowing them only on ftp) but after upgrading to 4.7-stable -- somehow, users can now login thru telnet/ssh with the same login.access settings that i have before ..... did i miss something on the upgrade that i should edit in /etc files ? == sample setting on my login.access tab == -:1stUser:ALL -:2ndUser:ALL == end sample == the above setting blocks all login attempts on my box using telnet/ssh but allows ftp access. but after the upgrade i noticed users could login thru telnet/ssh. any help will be greatly apprciated. __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 11:56:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66D3C37B401 for ; Sat, 19 Oct 2002 11:56:20 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id EECB243E7B for ; Sat, 19 Oct 2002 11:56:19 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id LAA29692; Sat, 19 Oct 2002 11:56:17 -0700 Message-ID: <3DB1AAD0.5090709@owt.com> Date: Sat, 19 Oct 2002 11:56:16 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Shawn Lussier Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Can't 'make depend' when trying to build kernel source References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Shawn Lussier wrote: > Hello all, > > I've recently cvsupped my source tree to 4.7-R in anticipation of upgrades > to these systems. On one, in particular, I cannot rebuild the kernel -- > when I run 'make depend', I get the following message: > > cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline > -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. > -I../../../include -I../../contrib/ipfilter -D_KERNEL -include > opt_global.h -elf -mno-align-long-strings -mpreferred-stack-boundary=2 > -ffreestanding ../../i386/i386/genassym.c > > cc1: Invalid option `no-align-long-strings' > > The system currently stands at version 4.3-R-p22, and the compiler is 'gcc > version 2.95.4 20020320 [FreeBSD]'. I have also tried building with gcc > 3.2 to no avail (same message). > > Can anyone provide some insight as to probable causes? I have never run > into this problem before. Any assistance is greatly appreciated. > No buildworld first. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 12: 0:19 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D10C37B408 for ; Sat, 19 Oct 2002 12:00:17 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C2D343E97 for ; Sat, 19 Oct 2002 12:00:16 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id MAA29766; Sat, 19 Oct 2002 12:00:14 -0700 Message-ID: <3DB1ABBD.4090909@owt.com> Date: Sat, 19 Oct 2002 12:00:13 -0700 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: Kent Stewart Cc: Shawn Lussier , freebsd-questions@FreeBSD.ORG Subject: Re: Can't 'make depend' when trying to build kernel source References: <3DB1AAD0.5090709@owt.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kent Stewart wrote: > > > Shawn Lussier wrote: > >> Hello all, >> >> I've recently cvsupped my source tree to 4.7-R in anticipation of >> upgrades >> to these systems. On one, in particular, I cannot rebuild the kernel -- >> when I run 'make depend', I get the following message: >> >> cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs >> -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline >> -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. >> -I../../../include -I../../contrib/ipfilter -D_KERNEL -include >> opt_global.h -elf -mno-align-long-strings -mpreferred-stack-boundary=2 >> -ffreestanding ../../i386/i386/genassym.c >> >> cc1: Invalid option `no-align-long-strings' >> >> The system currently stands at version 4.3-R-p22, and the compiler is >> 'gcc >> version 2.95.4 20020320 [FreeBSD]'. I have also tried building with gcc >> 3.2 to no avail (same message). >> >> Can anyone provide some insight as to probable causes? I have never run >> into this problem before. Any assistance is greatly appreciated. >> > > > No buildworld first. What I really intended to add was not doing a buildkernel after the buildworld. Make depend is not really a choice on upgrades like this. You will also have a number of users to add to master.passwd before the installworld will work. This is all covered in /usr/src/UPDATING. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 12: 5:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79A0337B401 for ; Sat, 19 Oct 2002 12:05:38 -0700 (PDT) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADADA43E88 for ; Sat, 19 Oct 2002 12:05:36 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: from net2.dinoex.sub.org (dinoex@net2.dinoex.de [212.184.201.182]) by net2.dinoex.sub.org (8.12.6/8.12.6) with ESMTP id g9JJ58md014518 for ; Sat, 19 Oct 2002 21:05:10 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: X-Authentication-Warning: net2.dinoex.sub.org: Host dinoex@net2.dinoex.de [212.184.201.182] claimed to be net2.dinoex.sub.org Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.12.6/8.12.6/Submit) with BSMTP id g9JJ57ch014508 for ; Sat, 19 Oct 2002 21:05:07 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-questions@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: Sendmail Upgrade Problems (dirrm) Date: Sat, 19 Oct 2002 20:55:16 +0200 X-Mailer: Dinoex 1.79 References: <20021019120540.M17639@ezo.net> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.94] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 2001 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20021019000000S+2@dinoex.sub.org X-Accept-Language: de,en X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-No-Archive: yes Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jim Flowers schrieb:, > I am trying to install the sendmail 8.12.6 port on a 4.4-stable system. I > think I did this before with 8.12.3 successfully but on this one I get an > error: "dirrm share/sendmail: not found:. Can someone tell me what's going > on? Your bsd.port.mk is out of date. ECHO_CMD must be defined somewhere. > Also, I seem to remember that the port installed everything but you could run > a script which I can't find to change between the base sendmail and the port > sendmail and back. Is this still available and what is it called? $ cp /etc/mail/mailer.conf /etc/mail/mailer.conf.base $ cd /usr/ports/mail/sendmail && make mailer.conf kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - [dirk.meyer@dinoex.sub.org],[dirk.meyer@guug.de],[dinoex@FreeBSD.org] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 12:12:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9151137B401 for ; Sat, 19 Oct 2002 12:12:33 -0700 (PDT) Received: from web21209.mail.yahoo.com (web21209.mail.yahoo.com [216.136.175.167]) by mx1.FreeBSD.org (Postfix) with SMTP id 6439D43E7B for ; Sat, 19 Oct 2002 12:12:33 -0700 (PDT) (envelope-from gz_iz_gz@yahoo.ca) Message-ID: <20021019191233.21940.qmail@web21209.mail.yahoo.com> Received: from [24.100.119.219] by web21209.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 15:12:33 EDT Date: Sat, 19 Oct 2002 15:12:33 -0400 (EDT) From: Matt Garcia Subject: Regarding JDK ports To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I was wondering how would i go about configuring the jdk1.3 port to work under freebsd so i can use java applications ie... chess on yahoo... i know there is xboard which i use but i enjoy playing on yahoo more. I download the jdk1.3 ports collection and made a clean installation of it however i think there are some other steps that are required in order for it to work? cause when i tried playing chess on yahoo the applet wouldn't load. Any help would be greatly apperciated. ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 12:46:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F1B137B42C for ; Sat, 19 Oct 2002 12:46:32 -0700 (PDT) Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id A36D043E42 for ; Sat, 19 Oct 2002 12:46:00 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain ([12.242.158.67]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021019194600.UIA22897.rwcrmhc53.attbi.com@localhost.localdomain>; Sat, 19 Oct 2002 19:46:00 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id g9JJmYUW072253; Sat, 19 Oct 2002 12:48:34 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id g9JJmTWQ072250; Sat, 19 Oct 2002 12:48:29 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: "E. J. Cerejo" Cc: FreeBSD-questions@freebsd.org Subject: Re: ATI Radeon 7000 VE and XFree86 References: <20021019081541.16524.qmail@web40810.mail.yahoo.com> From: swear@attbi.com (Gary W. Swearingen) Date: 19 Oct 2002 12:48:28 -0700 In-Reply-To: <20021019081541.16524.qmail@web40810.mail.yahoo.com> Message-ID: Lines: 27 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "E. J. Cerejo" writes: > Anybody using this card? Which XFree86 server should > I use for this card? When running xf86config I don't > see anything for radeons! I've used it under XFree86-4.2.0* in 16- and 24-bit modes, at several resolutions from 800 to 1600. I haven't bothered to try its 3D or dual-monitor features. I did find that 1600x1200 only worked well up to 70 Hz, but I'm happy with that. From /var/log/XFree86.0.log: (--) PCI:*(1:0:0) ATI Radeon VE QY rev 0, Mem @ 0xd0000000/27, 0xd9000000/16, I/O @ 0xd000/8 ... (II) Loading sub module "radeon" (II) LoadModule: "radeon" (II) Reloading /usr/X11R6/lib/modules/drivers/radeon_drv.o Your question sounds like you're still using XFree86 3.x and I don't know whether that supports the 7000. Try www.xfree86.org or groups.google.com . I don't remember how I configured X but if "xf86config" fails you, try "xf86cfg" or "XFree86 -configure". And don't forget "xvidtune". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 12:57:58 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E707637B401 for ; Sat, 19 Oct 2002 12:57:57 -0700 (PDT) Received: from ciclon.wixb.com (mke-65-26-194-41.wi.rr.com [65.26.194.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D0A443E8A for ; Sat, 19 Oct 2002 12:57:57 -0700 (PDT) (envelope-from lists@xpec.com) Received: from coors.xpec.com (coors.wixb.com [10.135.144.5]) by ciclon.wixb.com (8.12.6/8.12.6) with ESMTP id g9JJvuU8006515 for ; Sat, 19 Oct 2002 14:57:56 -0500 (CDT) Message-Id: <5.2.0.5.2.20021019145612.00b42830@molson.wixb.com> Date: Sat, 19 Oct 2002 14:57:50 -0500 To: freebsd-questions@freebsd.org From: "J.D. Bronson" Subject: external tape case Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am looking for any recommendation on an external tape drive case. I am running 4.7 and while my scsi card is supported, I dont have any space within the machine to put this 5-1/4 tape drive (SCSI-2). Any advice? I would need a 2-4 bay unit with its own power... TIA :) -- J.D. Bronson Aurora Health Care // Information Systems // Milwaukee, WI USA Office: 414.978.8282 // Fax: 414.328.8282 // Pager: 414.603.8282 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 13: 1:55 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C096A37B401 for ; Sat, 19 Oct 2002 13:01:53 -0700 (PDT) Received: from web20109.mail.yahoo.com (web20109.mail.yahoo.com [216.136.226.46]) by mx1.FreeBSD.org (Postfix) with SMTP id 7169643E3B for ; Sat, 19 Oct 2002 13:01:53 -0700 (PDT) (envelope-from bsdneophyte@yahoo.com) Message-ID: <20021019200153.51565.qmail@web20109.mail.yahoo.com> Received: from [68.65.83.156] by web20109.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 13:01:53 PDT Date: Sat, 19 Oct 2002 13:01:53 -0700 (PDT) From: Bsd Neophyte Subject: Re: FreeBSD version of Linux's "passwd -l" To: Ceri Davies Cc: freebsd-questions@freebsd.org In-Reply-To: <20021019152619.GA9464@submonkey.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG this is what i pulled from the 'pw' man page about the 'lock' option. to me, it doesn't seem as if they do the same thing. --------- DESCRIPTION The lock utility requests a password from the user, reads it again for verification and then will normally not relinquish the terminal until the password is repeated. There are two other conditions under which it will terminate: it will timeout after some interval of time and it may be killed by someone with the appropriate permission. ---------- whereas the linux version states that it makes the account available for root only. ---------- -l This option is used to lock the specified account and it is available to root only. The locking is performed by rendering the encrypted password into an invalid string (by prefixing the encrypted string with an !). ---------- --- Ceri Davies wrote: > On Sat, Oct 19, 2002 at 08:17:53AM -0700, Bsd Neophyte wrote: > > > > i'm following a pretty decent IBM tutorial on how to setup a samba > PDC. > > in the tutorial the following command is mentioned: > > > > passwd -l > > pw lock [user] > > Check the pw manpage. > > Ceri > > -- > you can't see when light's so strong > you can't see when light is gone __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.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 19 13: 8: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1015E37B401 for ; Sat, 19 Oct 2002 13:07:42 -0700 (PDT) Received: from web40802.mail.yahoo.com (web40802.mail.yahoo.com [66.218.78.179]) by mx1.FreeBSD.org (Postfix) with SMTP id 0EEFA43E65 for ; Sat, 19 Oct 2002 13:07:41 -0700 (PDT) (envelope-from ejcerejo@yahoo.com) Message-ID: <20021019200740.40823.qmail@web40802.mail.yahoo.com> Received: from [65.128.220.59] by web40802.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 13:07:40 PDT Date: Sat, 19 Oct 2002 13:07:40 -0700 (PDT) From: "E. J. Cerejo" Subject: Re: ATI Radeon 7000 VE and XFree86 To: "Gary W. Swearingen" Cc: FreeBSD-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've got it running, actually i hadn't realized (when going through the xf86config) that all the ATI cards used the same driver "ATI" and because I didn't see an option for the radeon I thought wasn't available. I'm running the latest XFree86 4.2. I have this monitor: http://www.samsungusa.com/cgi-bin/nabc/product/b2c_product_detail.jsp?employeeLogin=&prod_id=753DF-Ivory and the highest resolution supported is 1280x1024 / 65 Hz is there a way to find out exactly what refresh rate is my monitor using and how to increase it? I have it setup at 1024x1024 using 24bit and I notice on my eyes that it uses a low refresh rate and I would like to increase it a little if possible! I also notice a few errors when I exit from XFree86: II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (EE) Mouse1: Write to mouse failed (WW) fcntl(6, F_SETOWN): Inappropriate ioctl for device Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list! I have no idea why the Mouse1 error! I thought I didn't have the Speedo fonts but they are there so I don't know why this error also! Here's my complet XFree86.0.log file: XFree86 Version 4.2.1 / X Window System (protocol Version 11, revision 0, vendor release 6600) Release Date: 3 September 2002 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/) Build Operating System: FreeBSD 4.6.2-RELEASE i386 [ELF] Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/XFree86.0.log", Time: Sat Oct 19 13:30:38 2002 (==) Using config file: "/etc/X11/XF86Config" (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "SyncMaster 753DF" (**) | |-->Device "ATI Radeon 7000 (VE)" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xfree86" (**) XKB: rules: "xfree86" (**) Option "XkbModel" "microsoft" (**) XKB: model: "microsoft" (**) Option "XkbLayout" "en_US" (**) XKB: layout: "en_US" (==) Keyboard: CustomKeycode disabled (**) 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/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/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) Module ABI versions: XFree86 ANSI C Emulation: 0.1 XFree86 Video Driver: 0.5 XFree86 XInput driver : 0.3 XFree86 Server Extension : 0.1 XFree86 Font Renderer : 0.3 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.2.1, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,1a30 card 8086,1a30 rev 04 class 06,00,00 hdr 00 (II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 04 class 06,04,00 hdr 01 (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 05 class 06,04,00 hdr 01 (II) PCI: 00:1f:0: chip 8086,2440 card 0000,0000 rev 05 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,244b card 8086,2442 rev 05 class 01,01,80 hdr 00 (II) PCI: 00:1f:2: chip 8086,2442 card 8086,2442 rev 05 class 0c,03,00 hdr 00 (II) PCI: 00:1f:3: chip 8086,2443 card 8086,2442 rev 05 class 0c,05,00 hdr 00 (II) PCI: 00:1f:4: chip 8086,2444 card 8086,2442 rev 05 class 0c,03,00 hdr 00 (II) PCI: 01:00:0: chip 1002,5159 card 174b,7112 rev 00 class 03,00,00 hdr 00 (II) PCI: 02:04:0: chip 12b9,1008 card 12b9,00d3 rev 01 class 07,00,02 hdr 00 (II) PCI: 02:07:0: chip 1033,0035 card 1033,0035 rev 41 class 0c,03,10 hdr 80 (II) PCI: 02:07:1: chip 1033,0035 card 1033,0035 rev 41 class 0c,03,10 hdr 00 (II) PCI: 02:07:2: chip 1033,00e0 card 1458,5004 rev 02 class 0c,03,20 hdr 00 (II) PCI: 02:08:0: chip 8086,2449 card 8086,3013 rev 03 class 02,00,00 hdr 00 (II) PCI: 02:0a:0: chip 1274,5880 card 1458,a000 rev 04 class 04,01,00 hdr 00 (II) PCI: End of PCI scan (II) LoadModule: "scanpci" (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.2.1, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) UnloadModule: "scanpci" (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (II) Host-to-PCI bridge: (II) PCI-to-ISA bridge: (II) PCI-to-PCI bridge: (II) PCI-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0e (VGA_EN is set) (II) Bus 1 I/O range: [0] -1 0x00009000 - 0x000090ff (0x100) IX[B] [1] -1 0x00009400 - 0x000094ff (0x100) IX[B] [2] -1 0x00009800 - 0x000098ff (0x100) IX[B] [3] -1 0x00009c00 - 0x00009cff (0x100) IX[B] (II) Bus 1 non-prefetchable memory range: [0] -1 0xec000000 - 0xedffffff (0x2000000) MX[B] (II) Bus 1 prefetchable memory range: [0] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B] (II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x06 (VGA_EN is cleared) (II) Bus 2 I/O range: [0] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B] [1] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B] [2] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B] [3] -1 0x0000ac00 - 0x0000acff (0x100) IX[B] (II) Bus 2 non-prefetchable memory range: [0] -1 0xee000000 - 0xee0fffff (0x100000) MX[B] (II) Bus 2 prefetchable memory range: (II) Bus -1: bridge is at (0:31:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus -1 I/O range: (II) Bus -1 non-prefetchable memory range: (II) Bus -1 prefetchable memory range: (--) PCI:*(1:0:0) ATI Radeon VE QY rev 0, Mem @ 0xe0000000/27, 0xed000000/16, I/O @ 0x9000/8 (II) Addressable bus resource ranges are [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] [1] -1 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) OS-reported resource ranges: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0x00000000 - 0x000000ff (0x100) IX[B] (II) Active PCI resource ranges: [0] -1 0xee003000 - 0xee003fff (0x1000) MX[B]E [1] -1 0xee002000 - 0xee003fff (0x2000) MX[B]E [2] -1 0xee001000 - 0xee001fff (0x1000) MX[B]E [3] -1 0xee000000 - 0xefffffff (0x2000000) MX[B]E [4] -1 0xe8000000 - 0xebffffff (0x4000000) MX[B]E [5] -1 0xed000000 - 0xed00ffff (0x10000) MX[B](B) [6] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B) [7] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B]E [8] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B]E [9] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B]E [10] -1 0x0000b800 - 0x0000b8ff (0x100) IX[B]E [11] -1 0x00005000 - 0x000050ff (0x100) IX[B]E [12] -1 0x0000b000 - 0x0000b0ff (0x100) IX[B]E [13] -1 0x0000f000 - 0x0000f0ff (0x100) IX[B]E [14] -1 0x00009000 - 0x000090ff (0x100) IX[B](B) (II) PCI Memory resource overlap reduced 0xee002000 from 0xee003fff to 0xee002fff (II) PCI Memory resource overlap reduced 0xee000000 from 0xefffffff to 0xee000fff (II) Active PCI resource ranges after removing overlaps: [0] -1 0xee003000 - 0xee003fff (0x1000) MX[B]E [1] -1 0xee002000 - 0xee002fff (0x1000) MX[B]E [2] -1 0xee001000 - 0xee001fff (0x1000) MX[B]E [3] -1 0xee000000 - 0xee000fff (0x1000) MX[B]E [4] -1 0xe8000000 - 0xebffffff (0x4000000) MX[B]E [5] -1 0xed000000 - 0xed00ffff (0x10000) MX[B](B) [6] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B) [7] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B]E [8] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B]E [9] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B]E [10] -1 0x0000b800 - 0x0000b8ff (0x100) IX[B]E [11] -1 0x00005000 - 0x000050ff (0x100) IX[B]E [12] -1 0x0000b000 - 0x0000b0ff (0x100) IX[B]E [13] -1 0x0000f000 - 0x0000f0ff (0x100) IX[B]E [14] -1 0x00009000 - 0x000090ff (0x100) IX[B](B) (II) OS-reported resource ranges after removing overlaps with PCI: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0x00000000 - 0x000000ff (0x100) IX[B] (II) All system resource ranges: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xee003000 - 0xee003fff (0x1000) MX[B]E [6] -1 0xee002000 - 0xee002fff (0x1000) MX[B]E [7] -1 0xee001000 - 0xee001fff (0x1000) MX[B]E [8] -1 0xee000000 - 0xee000fff (0x1000) MX[B]E [9] -1 0xe8000000 - 0xebffffff (0x4000000) MX[B]E [10] -1 0xed000000 - 0xed00ffff (0x10000) MX[B](B) [11] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B) [12] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [13] -1 0x00000000 - 0x000000ff (0x100) IX[B] [14] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B]E [15] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B]E [16] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B]E [17] -1 0x0000b800 - 0x0000b8ff (0x100) IX[B]E [18] -1 0x00005000 - 0x000050ff (0x100) IX[B]E [19] -1 0x0000b000 - 0x0000b0ff (0x100) IX[B]E [20] -1 0x0000f000 - 0x0000f0ff (0x100) IX[B]E [21] -1 0x00009000 - 0x000090ff (0x100) IX[B](B) (II) LoadModule: "dbe" (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension DPMS (II) Loading extension FontCache (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) LoadModule: "type1" (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.1 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font Type1 (II) Loading font CID (II) LoadModule: "freetype" (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a (II) Module freetype: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.1.10 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font FreeType (II) LoadModule: "ati" (II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o (II) Module ati: vendor="The XFree86 Project" compiled for 4.2.1, module version = 6.4.8 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.5 (II) LoadModule: "mouse" (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 XInput Driver ABI class: XFree86 XInput driver, version 0.3 (II) ATI: ATI driver (version 6.4.8) for chipsets: ati, ativga (II) R128: Driver for ATI Rage 128 chipsets: ATI Rage 128 RE (PCI), ATI Rage 128 RF (AGP), ATI Rage 128 RG (AGP), ATI Rage 128 RK (PCI), ATI Rage 128 RL (AGP), ATI Rage 128 SM (AGP), ATI Rage 128 Pro PD (PCI), ATI Rage 128 Pro PF (AGP), ATI Rage 128 Pro PP (PCI), ATI Rage 128 Pro PR (PCI), ATI Rage 128 Pro ULTRA TF (AGP), ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP), ATI Rage 128 Mobility LE (PCI), ATI Rage 128 Mobility LF (AGP), ATI Rage 128 Mobility MF (AGP), ATI Rage 128 Mobility ML (AGP) (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP), ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), ATI Radeon VE QY (AGP), ATI Radeon VE QZ (AGP), ATI Radeon Mobility LW (AGP), ATI Radeon Mobility LY (AGP), ATI Radeon Mobility LZ (AGP), ATI Radeon 8500 QL (AGP), ATI Radeon 8500 QN (AGP), ATI Radeon 8500 QO (AGP), ATI Radeon 8500 Ql (AGP), ATI Radeon 8500 BB (AGP), ATI Radeon 7500 QW (AGP) (II) Primary Device is: PCI 01:00:0 (II) ATI: Candidate "Device" section "ATI Radeon 7000 (VE)". (--) Assigning device section with no busID to primary device (--) Chipset ATI Radeon VE QY (AGP) found (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xee003000 - 0xee003fff (0x1000) MX[B]E [6] -1 0xee002000 - 0xee002fff (0x1000) MX[B]E [7] -1 0xee001000 - 0xee001fff (0x1000) MX[B]E [8] -1 0xee000000 - 0xee000fff (0x1000) MX[B]E [9] -1 0xe8000000 - 0xebffffff (0x4000000) MX[B]E [10] -1 0xed000000 - 0xed00ffff (0x10000) MX[B](B) [11] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B) [12] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [13] -1 0x00000000 - 0x000000ff (0x100) IX[B] [14] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B]E [15] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B]E [16] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B]E [17] -1 0x0000b800 - 0x0000b8ff (0x100) IX[B]E [18] -1 0x00005000 - 0x000050ff (0x100) IX[B]E [19] -1 0x0000b000 - 0x0000b0ff (0x100) IX[B]E [20] -1 0x0000f000 - 0x0000f0ff (0x100) IX[B]E [21] -1 0x00009000 - 0x000090ff (0x100) IX[B](B) (II) Loading sub module "radeon" (II) LoadModule: "radeon" (II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o (II) Module radeon: vendor="The XFree86 Project" compiled for 4.2.1, module version = 4.0.1 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.5 (II) resource ranges after probing: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xee003000 - 0xee003fff (0x1000) MX[B]E [6] -1 0xee002000 - 0xee002fff (0x1000) MX[B]E [7] -1 0xee001000 - 0xee001fff (0x1000) MX[B]E [8] -1 0xee000000 - 0xee000fff (0x1000) MX[B]E [9] -1 0xe8000000 - 0xebffffff (0x4000000) MX[B]E [10] -1 0xed000000 - 0xed00ffff (0x10000) MX[B](B) [11] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B) [12] 0 0x000a0000 - 0x000affff (0x10000) MS[B] [13] 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [14] 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [15] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [16] -1 0x00000000 - 0x000000ff (0x100) IX[B] [17] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B]E [18] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B]E [19] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B]E [20] -1 0x0000b800 - 0x0000b8ff (0x100) IX[B]E [21] -1 0x00005000 - 0x000050ff (0x100) IX[B]E [22] -1 0x0000b000 - 0x0000b0ff (0x100) IX[B]E [23] -1 0x0000f000 - 0x0000f0ff (0x100) IX[B]E [24] -1 0x00009000 - 0x000090ff (0x100) IX[B](B) [25] 0 0x000003b0 - 0x000003bb (0xc) IS[B] [26] 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.2.1, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (II) RADEON(0): PCI bus 1 card 0 func 0 (**) RADEON(0): Depth 24, (--) framebuffer bpp 32 (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) (==) RADEON(0): Default visual is TrueColor (==) RADEON(0): RGB weight 888 (II) RADEON(0): Using 8 bits per RGB (8 bit DAC) (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.5 (II) RADEON(0): initializing int10 (II) RADEON(0): Primary V_BIOS segment is: 0xc000 (--) RADEON(0): Chipset: "ATI Radeon VE QY (AGP)" (ChipID = 0x5159) (--) RADEON(0): Linear framebuffer at 0xe0000000 (--) RADEON(0): MMIO registers at 0xed000000 (--) RADEON(0): VideoRAM: 32768 kByte (64-bit SDR SDRAM) (II) RADEON(0): Primary Display == Type 1 (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.5 (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Loading /usr/X11R6/lib/modules/libi2c.a (II) Module i2c: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.2.0 ABI class: XFree86 Video Driver, version 0.5 (II) RADEON(0): I2C bus "DDC" initialized. (II) RADEON(0): I2C device "DDC:ddc2" registered. (II) RADEON(0): I2C device "DDC:ddc2" removed. (II) RADEON(0): I2C device "DDC:ddc2" registered. (II) RADEON(0): I2C device "DDC:ddc2" removed. (II) RADEON(0): I2C EDID Info: (II) RADEON(0): Manufacturer: SAM Model: 22 Serial#: 1095840055 (II) RADEON(0): Year: 2002 Week: 35 (II) RADEON(0): EDID Version: 1.3 (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V (II) RADEON(0): Sync: Separate (II) RADEON(0): Max H-Image Size [cm]: horiz.: 32 vert.: 24 (II) RADEON(0): Gamma: 1.82 (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display (II) RADEON(0): First detailed timing is preferred mode (II) RADEON(0): redX: 0.639 redY: 0.323 greenX: 0.275 greenY: 0.597 (II) RADEON(0): blueX: 0.143 blueY: 0.062 whiteX: 0.283 whiteY: 0.298 (II) RADEON(0): Supported VESA Video Modes: (II) RADEON(0): 720x400@70Hz (II) RADEON(0): 720x400@88Hz (II) RADEON(0): 640x480@60Hz (II) RADEON(0): 640x480@67Hz (II) RADEON(0): 640x480@72Hz (II) RADEON(0): 640x480@75Hz (II) RADEON(0): 800x600@56Hz (II) RADEON(0): 800x600@60Hz (II) RADEON(0): 800x600@72Hz (II) RADEON(0): 800x600@75Hz (II) RADEON(0): 832x624@75Hz (II) RADEON(0): 1024x768@87Hz (interlaced) (II) RADEON(0): 1024x768@60Hz (II) RADEON(0): 1024x768@70Hz (II) RADEON(0): 1024x768@75Hz (II) RADEON(0): 1152x870@75Hz (II) RADEON(0): Manufacturer's mask: 0 (II) RADEON(0): Supported Future Video Modes: (II) RADEON(0): #0: hsize: 640 vsize 480 refresh: 60 vid: 16433 (II) RADEON(0): #1: hsize: 640 vsize 480 refresh: 85 vid: 22833 (II) RADEON(0): #2: hsize: 800 vsize 600 refresh: 85 vid: 22853 (II) RADEON(0): #3: hsize: 1024 vsize 768 refresh: 85 vid: 22881 (II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) RADEON(0): Supported additional Video Mode: (II) RADEON(0): clock: 94.5 MHz Image Size: 312 x 234 mm (II) RADEON(0): h_active: 1024 h_sync: 1072 h_sync_end 1168 h_blank_end 1376 h_border: 0 (II) RADEON(0): v_active: 768 v_sync: 769 v_sync_end 772 v_blanking: 808 v_border: 0 (II) RADEON(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 71 kHz, PixClock max 110 MHz (II) RADEON(0): Monitor name: SyncMaster (II) RADEON(0): Serial No: HCCT813873 (II) RADEON(0): End of DDC Monitor info (II) RADEON(0): PLL parameters: rf=2700 rd=12 min=12500 max=35000; xclk=15500 (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0) (II) RADEON(0): SyncMaster 753DF: Using hsync range of 30.00-70.00 kHz (II) RADEON(0): SyncMaster 753DF: Using vrefresh range of 50.00-160.00 Hz (II) RADEON(0): Clock range: 12.50 to 350.00 MHz (II) RADEON(0): Not using default mode "1280x960" (hsync out of range) (II) RADEON(0): Not using default mode "640x480" (hsync out of range) (II) RADEON(0): Not using default mode "1280x1024" (hsync out of range) (II) RADEON(0): Not using default mode "640x512" (hsync out of range) (II) RADEON(0): Not using default mode "1280x1024" (hsync out of range) (II) RADEON(0): Not using default mode "640x512" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "800x600" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "800x600" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "800x600" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "800x600" (hsync out of range) (II) RADEON(0): Not using default mode "1600x1200" (hsync out of range) (II) RADEON(0): Not using default mode "800x600" (hsync out of range) (II) RADEON(0): Not using default mode "1792x1344" (hsync out of range) (II) RADEON(0): Not using default mode "896x672" (hsync out of range) (II) RADEON(0): Not using default mode "1792x1344" (hsync out of range) (II) RADEON(0): Not using default mode "896x672" (hsync out of range) (II) RADEON(0): Not using default mode "1856x1392" (hsync out of range) (II) RADEON(0): Not using default mode "928x696" (hsync out of range) (II) RADEON(0): Not using default mode "1856x1392" (hsync out of range) (II) RADEON(0): Not using default mode "928x696" (hsync out of range) (II) RADEON(0): Not using default mode "1920x1440" (hsync out of range) (II) RADEON(0): Not using default mode "960x720" (hsync out of range) (II) RADEON(0): Not using default mode "1920x1440" (hsync out of range) (II) RADEON(0): Not using default mode "960x720" (hsync out of range) (WW) (1400x1050,SyncMaster 753DF) mode clock 122MHz exceeds DDC maximum 110MHz (II) RADEON(0): Not using default mode "1400x1050" (hsync out of range) (II) RADEON(0): Not using default mode "700x525" (hsync out of range) (--) RADEON(0): Virtual size is 1280x1024 (pitch 1280) (**) RADEON(0): Default mode "1280x1024": 108.0 MHz, 64.0 kHz, 60.0 Hz (II) RADEON(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (**) RADEON(0): Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz (II) RADEON(0): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (**) RADEON(0): Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz (II) RADEON(0): Modeline "800x600" 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (--) RADEON(0): Display dimensions: (320, 240) mm (--) RADEON(0): DPI set to (101, 108) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/X11R6/lib/modules/libfb.a (II) Module fb: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 ABI class: XFree86 ANSI C Emulation, version 0.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Loading /usr/X11R6/lib/modules/libramdac.a (II) Module ramdac: vendor="The XFree86 Project" compiled for 4.2.1, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/X11R6/lib/modules/libxaa.a (II) Module xaa: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.5 (II) RADEON(0): Depth moves disabled by default (!!) RADEON(0): For information on using the multimedia capabilities of this adapter, please see http://gatos.sf.net. (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] 0 0xed000000 - 0xed00ffff (0x10000) MX[B] [1] 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B] [2] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [3] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [4] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [5] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [6] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [7] -1 0xee003000 - 0xee003fff (0x1000) MX[B]E [8] -1 0xee002000 - 0xee002fff (0x1000) MX[B]E [9] -1 0xee001000 - 0xee001fff (0x1000) MX[B]E [10] -1 0xee000000 - 0xee000fff (0x1000) MX[B]E [11] -1 0xe8000000 - 0xebffffff (0x4000000) MX[B]E [12] -1 0xed000000 - 0xed00ffff (0x10000) MX[B](B) [13] -1 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B) [14] 0 0x000a0000 - 0x000affff (0x10000) MS[B] [15] 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [16] 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [17] 0 0x00009000 - 0x000090ff (0x100) IX[B] [18] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [19] -1 0x00000000 - 0x000000ff (0x100) IX[B] [20] -1 0x0000a800 - 0x0000a8ff (0x100) IX[B]E [21] -1 0x0000a400 - 0x0000a4ff (0x100) IX[B]E [22] -1 0x0000a000 - 0x0000a0ff (0x100) IX[B]E [23] -1 0x0000b800 - 0x0000b8ff (0x100) IX[B]E [24] -1 0x00005000 - 0x000050ff (0x100) IX[B]E [25] -1 0x0000b000 - 0x0000b0ff (0x100) IX[B]E [26] -1 0x0000f000 - 0x0000f0ff (0x100) IX[B]E [27] -1 0x00009000 - 0x000090ff (0x100) IX[B](B) [28] 0 0x000003b0 - 0x000003bb (0xc) IS[B] [29] 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) RADEON(0): Memory manager initialized to (0,0) (1280,6553) (II) RADEON(0): Reserved area from (0,1024) to (1280,1026) (II) RADEON(0): Largest offscreen area available: 1280 x 5527 (==) RADEON(0): Backing store disabled (==) RADEON(0): Silken mouse enabled (II) RADEON(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 Dashed Lines Scanline Image Writes Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 32 256x256 slots 16 512x512 slots (II) RADEON(0): Acceleration enabled (II) RADEON(0): Using hardware cursor (scanline 4104) (II) RADEON(0): Largest offscreen area available: 1280 x 5525 (II) RADEON(0): Direct rendering disabled Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved! Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved! Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved! Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved! Symbol drmScatterGatherFree from module /usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved! (II) Setting vga for screen 0. (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension LBX (II) Initializing built-in extension XC-APPGROUP (II) Initializing built-in extension SECURITY (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFree86-Bigfont (II) Initializing built-in extension RENDER (**) Option "Protocol" "PS/2" (**) Mouse1: Protocol: "PS/2" (**) Option "CorePointer" (**) Mouse1: Core Pointer (**) Option "Device" "/dev/psm0" (**) Option "Emulate3Buttons" (**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50 (==) Mouse1: Buttons: 3 (II) Keyboard "Keyboard1" handled by legacy driver (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (EE) Mouse1: Write to mouse failed (WW) fcntl(6, F_SETOWN): Inappropriate ioctl for device Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list! any ideas? Thanks --- "Gary W. Swearingen" wrote: > "E. J. Cerejo" writes: > > > Anybody using this card? Which XFree86 server > should > > I use for this card? When running xf86config I > don't > > see anything for radeons! > > I've used it under XFree86-4.2.0* in 16- and 24-bit > modes, at several > resolutions from 800 to 1600. I haven't bothered to > try its 3D or > dual-monitor features. I did find that 1600x1200 > only worked well > up to 70 Hz, but I'm happy with that. > > From /var/log/XFree86.0.log: > > (--) PCI:*(1:0:0) ATI Radeon VE QY rev 0, Mem @ > 0xd0000000/27, 0xd9000000/16, I/O @ 0xd000/8 > ... > (II) Loading sub module "radeon" > (II) LoadModule: "radeon" > (II) Reloading > /usr/X11R6/lib/modules/drivers/radeon_drv.o > > > Your question sounds like you're still using XFree86 > 3.x and I don't > know whether that supports the 7000. Try > www.xfree86.org or > groups.google.com . > > I don't remember how I configured X but if > "xf86config" fails you, > try "xf86cfg" or "XFree86 -configure". And don't > forget "xvidtune". > __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 13:14:11 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6E6E37B401 for ; Sat, 19 Oct 2002 13:14:10 -0700 (PDT) Received: from mail1.aus1.texas.net (mail1.aus1.texas.net [206.127.30.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 203C843E77 for ; Sat, 19 Oct 2002 13:14:10 -0700 (PDT) (envelope-from dread@texas.net) Received: from localhost.texas.net (tcnet26-018.austin.texas.net [209.99.98.18]) by mail1.aus1.texas.net (8.11.6/8.11.6) with ESMTP id g9JKCx524441; Sat, 19 Oct 2002 15:13:00 -0500 (CDT) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3DB13F5D.1060908@uni-svishtov.bg> Date: Sat, 19 Oct 2002 15:12:59 -0500 (CDT) From: Don Read To: Angelin Lazarov Lalev Subject: RE: C programming help ? Cc: questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 19-Oct-2002 Angelin Lazarov Lalev wrote: > I need to convert some bytes, which are not an internet address, from > machine to network byte order (described in RFC1700). I could do it > mannualy, assuming a I386 (or some other) architecture, but then my code > will be a lot less portable. Is there any function in libc or somewhere > else which will do that conversion for me (and will be updated when new > architecture is added)? > > RFC 1014 man xdr Regards, -- Don Read dread@texas.net -- "Beer is proof that God loves us and wants us to be happy." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 13:16:29 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F1D037B401 for ; Sat, 19 Oct 2002 13:16:27 -0700 (PDT) Received: from knyghtmare.com (pc1-darl1-6-cust123.mid.cable.ntl.com [213.105.18.123]) by mx1.FreeBSD.org (Postfix) with SMTP id 236F343E9C for ; Sat, 19 Oct 2002 13:16:26 -0700 (PDT) (envelope-from knyghtmare@knyghtmare.com) Received: (qmail 45874 invoked by uid 1000); 19 Oct 2002 20:16:24 -0000 Subject: Re: FreeBSD version of Linux's "passwd -l" From: Tom Carrick To: Bsd Neophyte Cc: freebsd-questions@freebsd.org In-Reply-To: <20021019200153.51565.qmail@web20109.mail.yahoo.com> References: <20021019200153.51565.qmail@web20109.mail.yahoo.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-0Jkkeyd43wfAuzs36wTd" X-Mailer: Ximian Evolution 1.0.8 Date: 19 Oct 2002 21:16:24 +0100 Message-Id: <1035058584.398.50.camel@knyghtmare.com> Mime-Version: 1.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-0Jkkeyd43wfAuzs36wTd Content-Type: text/plain Content-Transfer-Encoding: quoted-printable That's from the lock(1) man page, not the pw(8) man page. the relevant section from the pw man page is as follows: USER LOCKING Pw supports a simple password locking mechanism for users; it works by prepending the string `*LOCKED*' to the beginning of the password field in master.passwd to prevent successful authentication. The lock and unlock commands take a user name or uid of the account to lock or unlock, respectively. The -V, -C, and -q options as described above are accepted by these commands. On Sat, 2002-10-19 at 21:01, Bsd Neophyte wrote: >=20 > this is what i pulled from the 'pw' man page about the 'lock' option. >=20 > to me, it doesn't seem as if they do the same thing. >=20 > --------- > DESCRIPTION > The lock utility requests a password from the user, reads it again for > verification and then will normally not relinquish the terminal until the > password is repeated. There are two other conditions under which it will > terminate: it will timeout after some interval of time and it may be > killed by someone with the appropriate permission. > ---------- >=20 > whereas the linux version states that it makes the account available for > root only. >=20 > ---------- > -l > This option is used to lock the specified account and it is available to > root only. The locking is performed by rendering the encrypted password > into an invalid string (by prefixing the encrypted string with an !).=20 > ---------- >=20 >=20 > --- Ceri Davies wrote: > > On Sat, Oct 19, 2002 at 08:17:53AM -0700, Bsd Neophyte wrote: > > >=20 > > > i'm following a pretty decent IBM tutorial on how to setup a samba > > PDC.=20 > > > in the tutorial the following command is mentioned: > > >=20 > > > passwd -l > >=20 > > pw lock [user] > >=20 > > Check the pw manpage. > >=20 > > Ceri > >=20 > > --=20 > > you can't see when light's so strong > > you can't see when light is gone >=20 >=20 > __________________________________________________ > Do You Yahoo!? > Yahoo! Autos - Get free new car price quotes > http://autos.yahoo.com >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 --=-0Jkkeyd43wfAuzs36wTd Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQA9sb2YRhxQpFRYpjsRAjydAKC91j1t17bkqJGIMqFwzKH82OpYbQCcD8is a9zhP9QlM7ZbHDRkOvg9VYU= =tSCe -----END PGP SIGNATURE----- --=-0Jkkeyd43wfAuzs36wTd-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 15:22:49 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EF8637B401 for ; Sat, 19 Oct 2002 15:22:49 -0700 (PDT) Received: from relay01.cablecom.net (relay01.cablecom.net [62.2.33.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A39743E3B for ; Sat, 19 Oct 2002 15:22:48 -0700 (PDT) (envelope-from hanspeter_roth@hotmail.com) Received: from smtp.swissonline.ch (mail-4.swissonline.ch [62.2.32.85]) by relay01.cablecom.net (8.12.5/8.12.5/SOL/AWF/MXRELAY/20020820) with ESMTP id g9JMMjZ2096198 for ; Sun, 20 Oct 2002 00:22:46 +0200 (CEST) (envelope-from hanspeter_roth@hotmail.com) Received: from snoopy.here (dclient80-218-72-57.hispeed.ch [80.218.72.57]) by smtp.swissonline.ch (8.11.6/8.11.6/SMTPSOL/AWF/2002040101) with ESMTP id g9JMMjF02953 for ; Sun, 20 Oct 2002 00:22:46 +0200 (MEST) Received: (from hampi@localhost) by snoopy.here (8.11.6/8.11.6) id g9JMMiI15923 for freebsd-questions@freebsd.org; Sun, 20 Oct 2002 00:22:44 +0200 (CEST) (envelope-from hanspeter_roth@hotmail.com) Date: Sun, 20 Oct 2002 00:22:44 +0200 From: Hanspeter Roth To: freebsd-questions@freebsd.org Subject: /dev/* permissions Message-ID: <20021020002244.A15892@snoopy.cablecom.ch> Reply-To: freebsd-questions@freebsd.org 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 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, it seems to me that after the last upgrade the permission of the devices /dev/* have become more restrictive. /dev/*random and /dev/tty were not accessible by ordinary users. How can I restore the permissions on the devices to `reasonable' values (as they were before the upgrade)? -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 15:23:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3160737B401 for ; Sat, 19 Oct 2002 15:23:46 -0700 (PDT) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id E75FC43E88 for ; Sat, 19 Oct 2002 15:23:45 -0700 (PDT) (envelope-from stealth215@attbi.com) Received: from rwcrwbc70 ([204.127.198.53]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20021019222345.DAYW18217.rwcrmhc51.attbi.com@rwcrwbc70> for ; Sat, 19 Oct 2002 22:23:45 +0000 Received: from [216.177.0.160] by rwcrwbc70; Sat, 19 Oct 2002 22:23:45 +0000 From: stealth215@attbi.com To: freebsd-questions@freebsd.org Subject: authentication server with group permissions? Date: Sat, 19 Oct 2002 22:23:45 +0000 X-Mailer: AT&T Message Center Version 1 (Aug 12 2002) Message-Id: <20021019222345.DAYW18217.rwcrmhc51.attbi.com@rwcrwbc70> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Could someone point me in the right direction to find information on creating an authentication server in such a way that if some user logs in on a particular machine, as long as he is in a certain group he will have read access to all/or certain files as well on other servers depending on the group and rules set for that group? Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 15:35:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 252B137B404 for ; Sat, 19 Oct 2002 15:35:47 -0700 (PDT) Received: from smtp07.wxs.nl (smtp07.wxs.nl [195.121.6.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1BD243E75 for ; Sat, 19 Oct 2002 15:35:45 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp07.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H492RK00.5PD; Sun, 20 Oct 2002 00:35:44 +0200 Date: Sun, 20 Oct 2002 00:35:14 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <321244779.20021020003514@dds.nl> To: Hanspeter Roth Cc: freebsd-questions@freebsd.org Subject: Re: /dev/* permissions In-Reply-To: <20021020002244.A15892@snoopy.cablecom.ch> References: <20021020002244.A15892@snoopy.cablecom.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sunday, October 20, 2002, 12:22:44 AM, you wrote: HR> Hello, HR> it seems to me that after the last upgrade the permission of the HR> devices /dev/* have become more restrictive. /dev/*random and HR> /dev/tty were not accessible by ordinary users. HR> How can I restore the permissions on the devices to `reasonable' HR> values (as they were before the upgrade)? HR> -Hanspeter HR> To Unsubscribe: send mail to majordomo@FreeBSD.org HR> with "unsubscribe freebsd-questions" in the body of the message Dear Hanspeter, This is how it looks for me. crw--w---- 1 alex tty 5, 0 Oct 20 00:31 /dev/ttyp0 crw--w---- 1 root tty 5, 1 Oct 20 00:31 /dev/ttyp1 crw--w---- 1 root tty 5, 2 Oct 20 00:02 /dev/ttyp2 crw--w---- 1 root tty 5, 3 Oct 19 23:48 /dev/ttyp3 crw--w---- 1 root tty 5, 4 Oct 19 23:49 /dev/ttyp4 crw--w---- 1 root tty 5, 5 Oct 20 00:31 /dev/ttyp5 crw-rw-rw- 1 root wheel 5, 6 Oct 19 03:40 /dev/ttyp6 crw-rw-rw- 1 root wheel 5, 7 Oct 19 03:38 /dev/ttyp7 ... snip ... You could as root do: cd /dev MAKEDEV * And all should be fine. If you insist on changing permissions by hand check out: chmod -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 16:35: 4 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FE2237B401 for ; Sat, 19 Oct 2002 16:35:03 -0700 (PDT) Received: from carp.icir.org (carp.icir.org [192.150.187.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD42143E75 for ; Sat, 19 Oct 2002 16:35:02 -0700 (PDT) (envelope-from rizzo@carp.icir.org) Received: from carp.icir.org (localhost [127.0.0.1]) by carp.icir.org (8.12.3/8.12.3) with ESMTP id g9JNZ2pJ099160; Sat, 19 Oct 2002 16:35:02 -0700 (PDT) (envelope-from rizzo@carp.icir.org) Received: (from rizzo@localhost) by carp.icir.org (8.12.3/8.12.3/Submit) id g9JNZ2CA099159; Sat, 19 Oct 2002 16:35:02 -0700 (PDT) (envelope-from rizzo) Date: Sat, 19 Oct 2002 16:35:02 -0700 From: Luigi Rizzo To: questions@freebsd.org Subject: supported USB-compact flash readers ? Message-ID: <20021019163502.B99077@carp.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Maybe this should go to -usb, but we don't have such a mailing list, so i am asking here. What are the options for USB compact flash card readers under FreeBSD ? I know that the Sandisk SDDR-31 works (just tried one), unfortunately it has been discontinued and several online stores list it as out of stock, so it is not a viable alternative, and i would really like to see if we can expand the list of supported devices so one does not have to shop blindly. I have a Sandisk SDDR-75 which is listed as 'working with linux' if you do a google search. Unfer FreeBSD 4.6.2, it is recognised by umass, but when you try to do anything on it you get BBB timeouts and all sorts of misbehaviours. Any better experience ? cheers luigi ----------------------------------+----------------------------------------- Luigi RIZZO, luigi@iet.unipi.it . ICSI (on leave from Univ. di Pisa) http://www.iet.unipi.it/~luigi/ . 1947 Center St, Berkeley CA 94704 Phone: (510) 666 2988 ----------------------------------+----------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 17: 4:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8CDB37B401 for ; Sat, 19 Oct 2002 17:04:13 -0700 (PDT) Received: from gw.pelleg.org (gw.pelleg.org [205.201.13.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DFAE43E4A for ; Sat, 19 Oct 2002 17:04:13 -0700 (PDT) (envelope-from dpelleg@cs.cmu.edu) Received: from lank.auton.cs.cmu.edu (lank.wburn [192.168.3.41]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "dpelleg.dsl.telerama.com", Issuer "Dan Pelleg" (verified OK)) by gw.pelleg.org (Postfix) with ESMTP id 93BFE57F3; Sat, 19 Oct 2002 20:04:11 -0400 (EDT) Received: by lank.auton.cs.cmu.edu (Postfix, from userid 7675) id 70882381; Sat, 19 Oct 2002 20:04:09 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15793.62201.321031.376678@gargle.gargle.HOWL> Date: Sat, 19 Oct 2002 20:04:09 -0400 To: Lord Raiden , freebsd-questions@FreeBSD.ORG Subject: RE: Questions about dialup X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid From: Dan Pelleg Reply-To: Dan Pelleg Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Hi. Got a quick question. I'm unsure of the answer or where to > look. I'm setting up one of our old machines as a freebsd dialup station > for work to test local pops for linux compatibility for a local ISP. I > also want to use it as a way for me to learn how to dialup to the internet > using Freebsd. Considering I've only ever used it on a network, this will > be new to me. Can anyone recommend a good linux/freebsd dialer software I > could use? I'm using freebsd 4.6 on the machine and would like to install > a dialer (and modem drivers if possible) so I can use it as a test dialer > station. Just use the built-in dialer - it's called ppp. See the manpage for it, or the handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/userppp.html you shouldn't need to download any drivers, unless it's a Lucent Winmodem, in which case the ltmdm port might prove helpful. -- Dan Pelleg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 18:13:56 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E20237B401 for ; Sat, 19 Oct 2002 18:13:55 -0700 (PDT) Received: from web21405.mail.yahoo.com (web21405.mail.yahoo.com [216.136.232.75]) by mx1.FreeBSD.org (Postfix) with SMTP id D43C043E4A for ; Sat, 19 Oct 2002 18:13:45 -0700 (PDT) (envelope-from elvis_paris@yahoo.com) Message-ID: <20021020011228.93577.qmail@web21405.mail.yahoo.com> Received: from [68.96.99.197] by web21405.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 18:12:28 PDT Date: Sat, 19 Oct 2002 18:12:28 -0700 (PDT) From: Elvis Paris Subject: How to use java, shockwave, etc..? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello all, I hope I'm asking a basic question. What should I do to set up my FreeBSD desktop with a browser that supports all (or at least most) linux plugins? I've had no luck with linux_base + linux-sun-jdk13, for example, with linux-opera or linux-mozilla ports. Using 4.7. Should I be using native browsers? If so, that means I can't download Linux plugins from the net, right? I'm beginning to think I'm the only one on the planet trying to use FreeBSD as a desktop machine. If this is true, I'd appreciate some honest advice to switch to a Linux distro, for example. I'm sticking with FreeBSD just because I use it on servers and I love it, but I'll switch if I have to. Any response appreciated, even if it's "whoa, i wouldn't do what you're trying to do." Thanks! Elvis __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 18:17:47 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0F9537B401 for ; Sat, 19 Oct 2002 18:17:45 -0700 (PDT) Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C6A043E4A for ; Sat, 19 Oct 2002 18:17:45 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from opal (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.11.6/8.11.6) with ESMTP id g9K1Hgb23624 for ; Sat, 19 Oct 2002 21:17:42 -0400 (EDT) Date: Sat, 19 Oct 2002 21:17:42 -0400 (EDT) From: Zhihui Zhang X-Sender: zzhang@opal To: freebsd-questions@freebsd.org Subject: Re: Connect two machines via plip0 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Never mind. I misspell 192 as 129 on one machine. It works now. On Fri, 18 Oct 2002, Zhihui Zhang wrote: > > I tried to connect two machines with a parallel cable. Some > configuration files are as follows: > > In file /etc/rc.conf, add following lines: > > inetd_enable="YES" > hostname="pc1.myhome.org" > ifconfig_lp0="inet 192.168.1.1 192.168.1.2 netmask 255.255.255.0" > > In file /etc/hosts, add the following line: > > 192.168.1.1 pc1.myhome.org pc1 > 192.168.1.2 pc2.myhome.org pc2 > > Of course, I do this on both machines (with necessary changes). > But ping won't work. I have done this with the same machines and cable > many times before. Only this time, I am using 4.6-release. Anything > changes in 4.6-release or am i missing something? Do I have to explicitly > enable ICMP or what? > > Thanks for any suggestions. > > -Zhihui > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" 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 19 18:20:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFF0F37B401 for ; Sat, 19 Oct 2002 18:20:37 -0700 (PDT) Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1E8243E65 for ; Sat, 19 Oct 2002 18:20:36 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp05.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H49AEA00.GDK; Sun, 20 Oct 2002 03:20:34 +0200 Date: Sun, 20 Oct 2002 03:20:05 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <1911136593.20021020032005@dds.nl> To: Morten Grunnet Buhl Subject: Re: X and tohiba Satelitte 4000CDT In-Reply-To: <20021017160354.GA9259@deter.dk> References: <20021017160354.GA9259@deter.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thursday, October 17, 2002, 6:03:54 PM, you wrote: MGB> f000:8083: 01 ILLIGAL EXTENDED X86 OPCODE MGB> I suspect this to be a problem with the packages from the error MGB> messages? I dont think the error is in the X conf file since it starts MGB> up. Hope someone can help? maybe its a toshiba problem? MGB> oh, and I have agp module loaded. MGB> Morten. Dear Morten, My guess is that this package just wasn't build for you CPU. (A higher type than your own. Say you got a 4x86 and they build it for a Pentium pro) -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html How to get the best results from FreeBSD-Questions http://www.lemis.com/questions.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 18:22:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 517A037B401 for ; Sat, 19 Oct 2002 18:22:58 -0700 (PDT) Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A11443E65 for ; Sat, 19 Oct 2002 18:22:57 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp02.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H49AI801.D3K; Sun, 20 Oct 2002 03:22:56 +0200 Date: Sun, 20 Oct 2002 03:22:26 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <6911277886.20021020032226@dds.nl> To: "Kirk R. Wythers" Cc: freebsd-questions@freebsd.org, kwythers@umn.edu Subject: Re: dual boot install In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thursday, October 17, 2002, 5:22:29 PM, you wrote: KRW> I have a dual boot redhat/win98 box at home that I boot with lilo. I'd like KRW> to replace redhat with freebsd. My main concern is getting rid of lilo, so KRW> that I can use the freebsd bootloader to choose between windows and freesd. KRW> I'm not sure how a freebsd install will treat lilo. Will the freebsd simply KRW> overwrite lilo and alow me to choose between windows and freebsd? or creat KRW> some crazy double boot loader situation? KRW> I'm looking for a little wisdom regarding how to prepare for a freebsd KRW> install with out messing up the windows partitions (C and D with a ext2 KRW> linux partion between them). Should I reinstall the windows bootloader KRW> first? KRW> Thanks KRW> Kirk KRW> To Unsubscribe: send mail to majordomo@FreeBSD.org KRW> with "unsubscribe freebsd-questions" in the body of the message Dear Kirk, When you install the bootloader it will overwrite the MBR if you choice to use it. -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html How to get the best results from FreeBSD-Questions http://www.lemis.com/questions.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 18:23:48 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C24F37B401 for ; Sat, 19 Oct 2002 18:23:47 -0700 (PDT) Received: from probsd.org (ilm56-233-145.ec.rr.com [66.56.233.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAD6A43E6A for ; Sat, 19 Oct 2002 18:23:46 -0700 (PDT) (envelope-from ms@probsd.org) Received: from probsd.org (probsd.org [192.168.1.4]) by probsd.org (Postfix) with SMTP id BA53514759; Sat, 19 Oct 2002 21:29:09 -0400 (EDT) Received: from 192.168.1.4 (SquirrelMail authenticated user ms) by webmail.probsd.org with HTTP; Sat, 19 Oct 2002 21:29:09 -0400 (EDT) Message-ID: <1160.192.168.1.4.1035077349.squirrel@webmail.probsd.org> Date: Sat, 19 Oct 2002 21:29:09 -0400 (EDT) Subject: Re: How to use java, shockwave, etc..? From: "Michael Sharp" To: In-Reply-To: <20021020011228.93577.qmail@web21405.mail.yahoo.com> References: <20021020011228.93577.qmail@web21405.mail.yahoo.com> X-Priority: 3 Importance: Normal Cc: X-Mailer: SquirrelMail (version 1.2.8) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Elvis, If you can install /usr/ports/java/jdk13 , but you will have to manually download the source files, see the Makefile. Then you can install /usr/ports/www/mozilla and the Java SDK toolkit will be configured with it. You can also install plugger to get some extra plugin functionality. I believe thats in /usr/ports/www/. Michael > Hello all, > > I hope I'm asking a basic question. What should I do > to set up my FreeBSD desktop with a browser that > supports all (or at least most) linux plugins? > > I've had no luck with linux_base + linux-sun-jdk13, > for example, with linux-opera or linux-mozilla ports. > Using 4.7. > > Should I be using native browsers? If so, that means I > can't download Linux plugins from the net, right? > > I'm beginning to think I'm the only one on the planet > trying to use FreeBSD as a desktop machine. If this is > true, I'd appreciate some honest advice to switch to a > Linux distro, for example. I'm sticking with FreeBSD > just because I use it on servers and I love it, but > I'll switch if I have to. > > Any response appreciated, even if it's "whoa, i > wouldn't do what you're trying to do." > > Thanks! > > Elvis > > > __________________________________________________ > Do you Yahoo!? > Y! Web Hosting - Let the expert host your web site > http://webhosting.yahoo.com/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- GnuPG Key - http://probsd.org/michael.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 18:37:39 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64BBA37B401 for ; Sat, 19 Oct 2002 18:37:37 -0700 (PDT) Received: from smtp09.wxs.nl (smtp09.wxs.nl [195.121.6.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69C4843E91 for ; Sat, 19 Oct 2002 18:37:36 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp09.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H49B6M03.J75; Sun, 20 Oct 2002 03:37:34 +0200 Date: Sun, 20 Oct 2002 03:37:05 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <9712156690.20021020033705@dds.nl> To: "Omer Faruk Sen" Cc: freebsd-questions@freebsd.org Subject: Re: ports update? In-Reply-To: <20021017060318.52233.qmail@istanbul.enderunix.org> References: <20021017060318.52233.qmail@istanbul.enderunix.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thursday, October 17, 2002, 8:03:18 AM, you wrote: OFS> First I am sorry if here is not the right place to ask it. I am trying to OFS> update a port but I am having a problem. I am in fact having problems while OFS> patch'ing my old port. Here is what I have done. I use the portupgrade for this. First you have to install it. 1) cd /usr/ports/sysutils/portupgrade (please check if this is the rigth directory) 2) make clean install clean 3) rehash (Afther this you can use the tools 4) portversion (port that end with < are old ports, ready for a update) 5) portupgrade -fRr port (This will update your port) (Rr = update all dependency ports to) (f = force a recompile even if the port is up to date) (Check pkg_deinstall to remove a port) Your done. The bottom seem to me to be all wrong to me. OFS> #cp -r category/ports category/ports.old OFS> #cd category/ports OFS> OFS> #cd /usr/ports/category OFS> #diff -ruN ports.old ports >patch OFS> I have 2 questions here. OFS> 1)I have to remove a directory from my port. How can I do that? I have rm OFS> -fr /usr/ports/category/ports/files but it didn't work since patch didn't OFS> remove that directory. OFS> 2)After patching ports with `patch < patch' i see files with *.orig but I OFS> think they shouldn't be there. OFS> I have read the porters' handbook of course. But I think there can be a OFS> ports' upgraders :) section too in that guide. OFS> Thanks for your help. OFS> To Unsubscribe: send mail to majordomo@FreeBSD.org OFS> with "unsubscribe freebsd-questions" in the body of the message Dear Omer, -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html How to get the best results from FreeBSD-Questions http://www.lemis.com/questions.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 18:42:38 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51B0F37B401 for ; Sat, 19 Oct 2002 18:42:36 -0700 (PDT) Received: from smtp.mailix.net (smtp.mailix.net [216.148.213.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B89243E9C for ; Sat, 19 Oct 2002 18:42:32 -0700 (PDT) (envelope-from tapeworm@insekta.org) Received: from [12.246.29.145] (helo=cenobite.insekta.org) by smtp.mailix.net with asmtp (Exim 4.01) id 18356t-00084d-00 for freebsd-questions@freebsd.org; Sat, 19 Oct 2002 18:42:31 -0700 Date: Sat, 19 Oct 2002 18:43:12 -0700 From: erk To: freebsd-questions@freebsd.org Subject: Re: How to use java, shockwave, etc..? Message-Id: <20021019184312.4f044d1e.tapeworm@insekta.org> In-Reply-To: <20021020011228.93577.qmail@web21405.mail.yahoo.com> References: <20021020011228.93577.qmail@web21405.mail.yahoo.com> Organization: red cell X-Mailer: Sylpheed version 0.8.3 (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Actually, you are one among many who use FreeBSD on the desktop, myself included. Anyway, from my experience, it's best to just use native ports & plugins. If you're using Mozilla, as you seem to be, you can download a port called plugger that will allow you to use existing apps as browser plugins. It uses specific ports, however, so you may have to download a couple things you wouldn't normally use. Also, if you're a non-Gnome user, you'll probably want to modify the Makefile so it doesn't grab gnumeric. Hardly a loss, imo, since rarely have I needed to open a spreadsheet in my browser. In any case, it can use xine and mplayer for various bits of audio/video, xmp for .wav files, acroread5 for .pdf stuff, etc. Take a look at it, edit the Makefile as you like, and you're good to go. As for Flash, there is the flashplugin-mozilla port available for use with the native Mozilla browser. I believe all of these plugs will work with Mozilla's variants, including Beonex, Phoenix, Netscape, etc. I'm currently using them with Mozilla, but I haven't tried it with the others yet. Word of warning: the Flash plugin may crash the browser on occasion. It can be a little caustic, so sometimes it won't work at all, other times you'll get video but bursts of static instead of sound, etc. Very touchy, but still better than having to deal with the "download the flash plugin!" popup. The amount of advertising online makes it a pain, esp. since so many of those ads are video. Hope this helps, though. - erik On Sat, 19 Oct 2002 18:12:28 -0700 (PDT) Elvis Paris wrote: > Hello all, > > I hope I'm asking a basic question. What should I do > to set up my FreeBSD desktop with a browser that > supports all (or at least most) linux plugins? > > I've had no luck with linux_base + linux-sun-jdk13, > for example, with linux-opera or linux-mozilla ports. > Using 4.7. > > Should I be using native browsers? If so, that means I > can't download Linux plugins from the net, right? > > I'm beginning to think I'm the only one on the planet > trying to use FreeBSD as a desktop machine. If this is > true, I'd appreciate some honest advice to switch to a > Linux distro, for example. I'm sticking with FreeBSD > just because I use it on servers and I love it, but > I'll switch if I have to. > > Any response appreciated, even if it's "whoa, i > wouldn't do what you're trying to do." > > Thanks! > > Elvis > > > __________________________________________________ > Do you Yahoo!? > Y! Web Hosting - Let the expert host your web site > http://webhosting.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 19 19: 9:21 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28A0637B401 for ; Sat, 19 Oct 2002 19:09:19 -0700 (PDT) Received: from web21401.mail.yahoo.com (web21401.mail.yahoo.com [216.136.232.71]) by mx1.FreeBSD.org (Postfix) with SMTP id DBDEB43E75 for ; Sat, 19 Oct 2002 19:09:18 -0700 (PDT) (envelope-from elvis_paris@yahoo.com) Message-ID: <20021020020918.7282.qmail@web21401.mail.yahoo.com> Received: from [68.96.99.197] by web21401.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 19:09:18 PDT Date: Sat, 19 Oct 2002 19:09:18 -0700 (PDT) From: Elvis Paris Subject: Re: How to use java, shockwave, etc..? To: Michael Sharp Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <1160.192.168.1.4.1035077349.squirrel@webmail.probsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Michael Sharp wrote: > Hello Elvis, > If you can install /usr/ports/java/jdk13 , but > you will have to > manually download the source files, see the > Makefile. Then you can > install /usr/ports/www/mozilla and the Java SDK > toolkit will be > configured with it. You can also install plugger to > get some extra > plugin functionality. I believe thats in > /usr/ports/www/. > Thanks for the pointers, I tried compiling native Java a while back and had some problems, but I may try again. (And compling native mozilla takes a really, really long time.) But that also means I can't use Opera, which only has a linux version. And does plugger support linux plugins, even with a native browser? I haven't tried that yet. Thanks! Elvis > Michael > > > > Hello all, > > > > I hope I'm asking a basic question. What should I > do > > to set up my FreeBSD desktop with a browser that > > supports all (or at least most) linux plugins? > > > > I've had no luck with linux_base + > linux-sun-jdk13, > > for example, with linux-opera or linux-mozilla > ports. > > Using 4.7. > > > > Should I be using native browsers? If so, that > means I > > can't download Linux plugins from the net, right? > > > > I'm beginning to think I'm the only one on the > planet > > trying to use FreeBSD as a desktop machine. If > this is > > true, I'd appreciate some honest advice to switch > to a > > Linux distro, for example. I'm sticking with > FreeBSD > > just because I use it on servers and I love it, > but > > I'll switch if I have to. > > > > Any response appreciated, even if it's "whoa, i > > wouldn't do what you're trying to do." > > > > Thanks! > > > > Elvis > > > > > > __________________________________________________ > > Do you Yahoo!? > > Y! Web Hosting - Let the expert host your web site > > http://webhosting.yahoo.com/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body > of the message > > > -- > GnuPG Key - http://probsd.org/michael.asc > > __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 20:38:14 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3F7A37B401 for ; Sat, 19 Oct 2002 20:38:13 -0700 (PDT) Received: from tierzero.apana.org.au (sa.apana.org.au [203.14.158.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 714DF44982 for ; Sat, 19 Oct 2002 20:38:12 -0700 (PDT) (envelope-from bastill@sa.apana.org.au) Received: from BAPhD (dialup-8.pasa.apana.org.au [203.14.158.137]) by tierzero.apana.org.au (8.11.1/8.11.1) with ESMTP id g9K3bxp76281; Sun, 20 Oct 2002 13:08:00 +0930 (CST) (envelope-from bastill@sa.apana.org.au) Content-Type: text/plain; charset="iso-8859-1" From: Brian Astill Reply-To: bastill@sa.apana.org.au To: Matthew Seaman , freebsd-questions@FreeBSD.ORG Subject: Re: CPU Temperature Date: Sun, 20 Oct 2002 13:09:55 +0930 User-Agent: KMail/1.4.3 References: <1034878060.2e2b2920jud@myrealbox.com> <200210191148.31586.bastill@sa.apana.org.au> <20021019075014.GA65379@happy-idiot-talk.infracaninophi> In-Reply-To: <20021019075014.GA65379@happy-idiot-talk.infracaninophi> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200210201309.55391.bastill@sa.apana.org.au> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 19 Oct 2002 05:20 pm, Matthew Seaman wrote: > On Sat, Oct 19, 2002 at 11:48:31AM +0930, Brian Astill wrote: > > The port for fvcool seems to be broken - the only source of the tar.gz > > file produces a 154byte file with a bad checksum. > > Any advice you can offer? > > Try again --- it worked for me when I tried downloading it again just now. Nah! ... I used wget to this source :-) > >> http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/. > Receiving FVCool102.tar.gz (9289 bytes): 100% Yup! Fvcool works well for me using -e -i but not -e alone. The effect on CPU temperature in KDE is marginal - a drop of only a degree or two, but at the console - WOW! Drops rapidly from 51C to 32C. What that means is that I can run 24x7 from the console with minimal risk of the CPU overheating. Great. -- Regards, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 20:43:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A8B237B401 for ; Sat, 19 Oct 2002 20:43:57 -0700 (PDT) Received: from catflap.home.slightlystrange.org (pc1-cmbg1-4-cust43.cam.cable.ntl.com [62.253.133.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF34F44947 for ; Sat, 19 Oct 2002 20:22:51 -0700 (PDT) (envelope-from dan@slightlystrange.org) Received: from danielby by catflap.home.slightlystrange.org with local (Exim 3.36 #1) id 1836fr-000Lgu-00 for freebsd-questions@freebsd.org; Sun, 20 Oct 2002 04:22:43 +0100 Date: Sun, 20 Oct 2002 04:22:43 +0100 From: Daniel Bye To: freebsd Subject: Re: problem with login.access Message-ID: <20021020032243.GA83263@catflap.home.slightlystrange.org> Reply-To: dan@slightlystrange.org Mail-Followup-To: freebsd References: <20021019185300.7052.qmail@web20804.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021019185300.7052.qmail@web20804.mail.yahoo.com> User-Agent: Mutt/1.4i X-Scanner: exiscan *1836fr-000Lgu-00*lmkB3X7qISk* (SlightlyStrange.org, Using NOD32 http://www.nod32.com) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Oct 19, 2002 at 11:53:00AM -0700, ako ito wrote: > my login.access was working perfectly with 4.6-stable > (not allowing users to login via telnet/ssh but > allowing them only on ftp) but after upgrading to > 4.7-stable -- somehow, users can now login thru > telnet/ssh with the same login.access settings that i > have before ..... did i miss something on the upgrade > that i should edit in /etc files ? > > == sample setting on my login.access tab == > -:1stUser:ALL > -:2ndUser:ALL > == end sample == > > the above setting blocks all login attempts on my box > using telnet/ssh but allows ftp access. > > but after the upgrade i noticed users could login thru > telnet/ssh. > > any help will be greatly apprciated. Have you tried cap_mkdb /etc/login.access to refresh the hash table? Dan -- Daniel Bye PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc PGP Key fingerprint: 3D73 AF47 D448 C5CA 88B4 0DCF 849C 1C33 3C48 2CDC _ ASCII ribbon campaign ( ) - against HTML, vCards and X - proprietary attachments in e-mail / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 20:44: 9 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E463137B407 for ; Sat, 19 Oct 2002 20:44:06 -0700 (PDT) Received: from web20006.mail.yahoo.com (web20006.mail.yahoo.com [216.136.225.69]) by mx1.FreeBSD.org (Postfix) with SMTP id 4496144959 for ; Sat, 19 Oct 2002 20:23:17 -0700 (PDT) (envelope-from vctw@yahoo.com) Message-ID: <20021020032317.30815.qmail@web20006.mail.yahoo.com> Received: from [168.95.19.3] by web20006.mail.yahoo.com via HTTP; Sat, 19 Oct 2002 20:23:17 PDT Date: Sat, 19 Oct 2002 20:23:17 -0700 (PDT) From: Vincent Chen Subject: LAN in 815E? To: FreeBSD maillist MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear all, I plan to buy a system based on intel 815E chipset. Is the bulletin LAN controller supported by fxp or any other driver? I just read the hardware note. It says many intel NIC on mother board supported, but didn't give a list. Thanks, __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.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 19 20:44:23 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0464537B408 for ; Sat, 19 Oct 2002 20:44:21 -0700 (PDT) Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AB1E44954 for ; Sat, 19 Oct 2002 20:23:12 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id g9K3N58k042384; Sat, 19 Oct 2002 23:23:05 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <4403.12.151.4.177.1034961129.squirrel@webmail.suscom.net> References: <4403.12.151.4.177.1034961129.squirrel@webmail.suscom.net> Date: Sat, 19 Oct 2002 23:23:04 -0400 To: cumquott@suscom.net, From: Garance A Drosihn Subject: Re: LPD protocol screwup and ctl_renametf error Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 1:12 PM -0400 10/18/02, TheGlenMann wrote: >On FreeBSD I run lpd -c -l -W, and `cat textfile | lpr -P hp6LServ' >works fine. When I send the test page from Windows, though, I get >these errors: > >lpd[578]: lt_gmann.domain.com requests recvjob hp6LServ >lpd[578]: Error receiving job from lt_gmann.domain.com: >lpd[578]: protocol screwup: ^[%-12345X@PJL SET PAGEPROTECT=AUTO I expect this is a problem with whatever process on the Windows box is sending the lpr job. The above is the beginning of the data for a print job. The problem is that at this point in the processing of the job, 'lpd' is expecting to see a single line that (basically) says "Okay, I am now going to send you a data file". The actual data for the file should come *after* that line, and in this case there is no header line. When lpd sees this "protocol screwup", it will terminate the connection. Note that the following lines have a new process number. The windows client is trying to send the same job a second time. (that's also why you see a second "requests recvjob" line). >lpd[579]: lt_gmann.domain.com requests recvjob hp6LServ >lpd[579]: Error receiving job from lt_gmann.domain.com: >lpd[579]: hp6LServ: ctl_renametf error link > (rfA014lt_gmann.domain.com,cfA014lt_gmann.domain.com): > File exists This indicates that the program on the Windows box is also sending it's files in the wrong order. This is not surprising, as many implementations of the lpr protocol have no idea what they are supposed to be doing, or why. A correctly-written program *should* send all the data files first, and then send the control file for the job. The above error suggests that the Windows program sends the control file first, and then sends the data files. So, the *first* attempt to send the print job did succeed in sending the control file, and then it died while sending the data file. This *second* attempt to send the print job sends the control-file a second time, and it runs into this error because the control file already exists on the freebsd server. >Docs on the subtleties on LPD seem to be in short supply. It >looks like the PAGEPROTECT thing breaks the whole system, then >the cannot rename seems to be Windows trying again to send >the file... The code in lpd is historically a mess, and most people who start to look at it get a headache and decide to write some alternative to lpr/lpd. That's why it remains such a mess. In the case of FreeBSD, Garrett Wollman did clean up some of the code a few years ago, and I've been the one slowly improving it since then. I have plenty of ideas on how to make it better, but too much other work so my progress on it is slow. >How can I determine what is wrong? If the above description does not provide you with enough help, then let me know and I can write up some changes to lpd so we can figure out what's going on in your case. -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 20:47:26 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61CBC37B401 for ; Sat, 19 Oct 2002 20:47:25 -0700 (PDT) Received: from I-Sphere.COM (shell.i-sphere.com [209.249.146.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id E73B143E9C for ; Sat, 19 Oct 2002 20:47:24 -0700 (PDT) (envelope-from fasty@shell.i-sphere.com) Received: from shell.i-sphere.com (fasty@shell [209.249.146.70]) by I-Sphere.COM (8.12.3/8.12.3) with ESMTP id g9K3ncxI017804 for ; Sat, 19 Oct 2002 20:49:38 -0700 (PDT) (envelope-from fasty@shell.i-sphere.com) Received: (from fasty@localhost) by shell.i-sphere.com (8.12.3/8.12.3/Submit) id g9K3nc4K017803 for freebsd-questions@freebsd.org; Sat, 19 Oct 2002 20:49:38 -0700 (PDT) Date: Sat, 19 Oct 2002 20:49:38 -0700 From: faSty To: freebsd-questions@freebsd.org Subject: bandwidth control question Message-ID: <20021020034938.GB17475@i-sphere.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi there, I was been search the method statement for the ipfw rule and pipe rule. I cannot find any information regard this question. I wanted have 2 servers limit at 750Kbit/s outgoing. example: ipfw add 500 pipe 1 ip from server1 to any via any ipfw add 600 pipe 1 ip from server2 to any via any ipfw pipe 1 config bw 750Kbit/s I looked the MRTG showed server1 got 344kb/sec and server2 got 706kb/sec. I am confused it should be limited at 750Kbit/sec maxmium segment. How do I set not allow over the maxmium set value 750Kbit/s. When I set at 750Kbit/s and it show over size 344+706=1010kb/sec total. That's wrong should be limited at 750kb/sec or under. Is Kbit/s same as kb/sec ? -fasty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 21: 1:37 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9304437B401 for ; Sat, 19 Oct 2002 21:01:36 -0700 (PDT) Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FD8843E77 for ; Sat, 19 Oct 2002 21:01:36 -0700 (PDT) (envelope-from ccstore@autha.qcislands.net) Received: from [209.53.238.9] (helo=autha.qcislands.net) by mail.qcislands.net with esmtp (Exim 4.10) id 1837HM-000PEC-00 for freebsd-questions@freebsd.org; Sat, 19 Oct 2002 21:01:28 -0700 Received: from ccstore by autha.qcislands.net with local-rmail (Exim 4.10) id 1837HN-0006Il-00 for freebsd-questions@freebsd.org; Sat, 19 Oct 2002 21:01:29 -0700 Received: from fquest by dick.ccstores.com with local (Exim 4.04) id 1835tJ-0002kE-00 for freebsd-questions@freebsd.org; Sat, 19 Oct 2002 19:32:33 -0700 From: fquest@ccstores.com (FreeBSD questions) To: freebsd-questions@freebsd.org Subject: iso download bootable? X-Mailer: SCO Shell Date: Sat, 19 Oct 2002 19:32:33 -0700 (PDT) Message-Id: X-local_scan: locally submitted X-local_scan: locally submitted (9) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have downloaded the .iso's and am having a problem creating a bootable disk 1. Since the .iso's are on my hard drive, is there any way to convert them to whatever format I need to boot directly from the images without burning anything? (disk 2 thru 4 seem OK so I'm really just talking about the conversion of disk 1 if possible) Thank IA. -- FreeBSD questions directly mailto:paz@qcislands.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 21:12:59 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A142137B401; Sat, 19 Oct 2002 21:12:58 -0700 (PDT) Received: from m20.unixathome.org (m20.unixathome.org [66.11.168.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E04C43EA3; Sat, 19 Oct 2002 21:12:58 -0700 (PDT) (envelope-from dan@m20.unixathome.org) Received: by m20.unixathome.org (Postfix, from userid 1001) id 5FE6D7A90; Sun, 20 Oct 2002 00:10:03 -0400 (EDT) From: Dan Langille To: freebsd-newbies@freebsd.org, freebsd-questions@freebsd.org Subject: The FreeBSD Diary: 2002-09-29 - 2002-10-19 Message-Id: <20021020041003.5FE6D7A90@m20.unixathome.org> Date: Sun, 20 Oct 2002 00:10:03 -0400 (EDT) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-questions@freebsd.org with the aim of letting people know what's available on the website. Before you post a question here it might be a good idea to first search the mailing list archives and/or The FreeBSD Diary . These are the articles posted during this period: 17-Oct : Upgrading to stunnel 4 Upgrading to stunnel 4 http://freebsddiary.org/stunnel-v3-to-v4.php?2 15-Oct : Adding a new drive via the serial console using dump/restore The serial console saves the day! http://freebsddiary.org/serial-console2.php?2 4-Oct : Managing an IP address change - part 2 After the DNS propogation... http://freebsddiary.org/ip-address-change2.php?2 -- Dan Langille - DVL Software Limited The FreeBSD Diary - http://freebsddiary.org/ - practical examples FreshPorts - http://freshports.org/ - the place for ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 21:28: 5 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A52137B401 for ; Sat, 19 Oct 2002 21:28:04 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C1CE43E7B for ; Sat, 19 Oct 2002 21:27:58 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C93EF66B5E; Sat, 19 Oct 2002 21:27:57 -0700 (PDT) Date: Sat, 19 Oct 2002 21:27:57 -0700 From: Kris Kennaway To: Riley Cc: Kris Kennaway , FreeBSD Questions Subject: Re: Buildworld fails Message-ID: <20021020042757.GA15169@xor.obsecurity.org> References: <20021019094409.GA93941@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 19, 2002 at 09:35:33AM -0700, Riley wrote: > > The fact that there's no actual error message shown indicates that > > you're doing make installworld with a -j option. This is not > > supported and as you have found is likely to fail. > > > > Kris >=20 > The lack of an error message did seem odd. Thanks for the heads up. >=20 > Is the Handbook out of date? According the Build World section: > # make -j4 buildworld buildworld !=3D installworld. Kris --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9sjDMWry0BWjoQKURAvZLAKDUgFtFdodeGnAZ/eSi1WIoi/UlxACg2Iwl 8rB5GBHiOoZKFwchsCAa18s= =ElGJ -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 21:29:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B44E37B401 for ; Sat, 19 Oct 2002 21:29:34 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-165-226-88.dsl.lsan03.pacbell.net [64.165.226.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E06A43E9C for ; Sat, 19 Oct 2002 21:29:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BFBCB66B5E; Sat, 19 Oct 2002 21:29:32 -0700 (PDT) Date: Sat, 19 Oct 2002 21:29:32 -0700 From: Kris Kennaway To: FreeBSD questions Cc: freebsd-questions@freebsd.org Subject: Re: iso download bootable? Message-ID: <20021020042932.GB15169@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E39vaYmALEf/7YXx" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --E39vaYmALEf/7YXx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 19, 2002 at 07:32:33PM -0700, FreeBSD questions wrote: > I have downloaded the .iso's and am having a problem creating > a bootable disk 1. >=20 > Since the .iso's are on my hard drive, is there any way to convert > them to whatever format I need to boot directly from the images > without burning anything? (disk 2 thru 4 seem OK so I'm really > just talking about the conversion of disk 1 if possible) No, you can't boot from a file. You have to burn them to a CD. Kris --E39vaYmALEf/7YXx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9sjEsWry0BWjoQKURAuCiAJ93F6+OMgOqgKQmpL0x7YlT2qHUjwCg8P7j +RjOR5fdxt2EMLbgFevdgXI= =CYzM -----END PGP SIGNATURE----- --E39vaYmALEf/7YXx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 21:42: 8 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C041D37B401 for ; Sat, 19 Oct 2002 21:42:06 -0700 (PDT) Received: from dsl-64-128-185-9.telocity.com (dsl-64-128-185-9.telocity.com [64.128.185.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCEDB43E75 for ; Sat, 19 Oct 2002 21:42:02 -0700 (PDT) (envelope-from mjoyner2@hq.dyns.cx) Received: (from root@localhost) by dsl-64-128-185-9.telocity.com (8.12.6/8.11.5) id g9K4fFpj029691; Sun, 20 Oct 2002 00:41:15 -0400 (EDT) (envelope-from mjoyner2@hq.dyns.cx) Received: from ip-24.internal (ip-34.internal [192.168.2.34]) by hq.dyns.cx (8.12.6/8.11.5av) with ESMTP id g9K4ef5u029671; Sun, 20 Oct 2002 00:40:41 -0400 (EDT) (envelope-from mjoyner2@hq.dyns.cx) Received: from hq.dyns.cx (localhost [127.0.0.1]) by ip-24.internal (8.12.6/8.12.6) with ESMTP id g9K3Fd1f002598; Sat, 19 Oct 2002 23:15:40 -0400 (EDT) (envelope-from mjoyner2@hq.dyns.cx) Message-ID: <3DB21FDB.8000005@hq.dyns.cx> Date: Sat, 19 Oct 2002 23:15:39 -0400 From: wolf User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3 X-Accept-Language: en-us MIME-Version: 1.0 To: stealth215@attbi.com Cc: freebsd-questions@freebsd.org Subject: Re: authentication server with group permissions? References: <20021019222345.DAYW18217.rwcrmhc51.attbi.com@rwcrwbc70> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG could you be more specific? sharing files via NFS? transparent logging to other servers? other? What you are trying to do in particular affects how you accomplish your goal. stealth215@attbi.com wrote: > Could someone point me in the right direction to find > information on creating an authentication server in such > a way that if some user logs in on a particular machine, > as long as he is in a certain group he will have read > access to all/or certain files as well on other servers > depending on the group and rules set for that group? > > Dave > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- Michael Joyner FreeBSD System Administrator http://manhattan.hq.dyns.cx/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Oct 19 21:54:10 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6131537B401 for ; Sat, 19 Oct 2002 21:54:09 -0700 (PDT) Received: from snipe.mail.pas.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19AAF43E3B for ; Sat, 19 Oct 2002 21:54:09 -0700 (PDT) (envelope-from rgbrenner@myrealbox.com) Received: from dialup-209.245.11.63.dial1.denver1.level3.net ([209.245.11.63] helo=localhost) by snipe.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 183866-0002ae-00; Sat, 19 Oct 2002 21:53:54 -0700 Content-Type: text/plain; charset="iso-8859-1" From: "Ramsey G. Brenner" To: Elvis Paris Subject: Re: How to use java, shockwave, etc..? Date: Sat, 19 Oct 2002 22:53:37 -0600 User-Agent: KMail/1.4.3 References: <20021020020918.7282.qmail@web21401.mail.yahoo.com> In-Reply-To: <20021020020918.7282.qmail@web21401.mail.yahoo.com> Cc: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200210192253.37084.rgbrenner@myrealbox.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > But that also means I can't use Opera, which only has > a linux version. Opera has released a version for FreeBSD i386. Its in the ports=20 (/usr/ports/www/opera) and on thier website. BTW: You're not the only one using FBSD as a desktop system, Ive been usi= ng it=20 since 4.0 (about 2 1/2 years). :-) --=20 ---------- Ramsey G. Brenner rgbrenner@myrealbox.com http://home.earthlink.net/~rgbrenner/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message