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: