From owner-freebsd-questions@FreeBSD.ORG Sun Jun 29 22:03:33 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BAA037B401 for ; Sun, 29 Jun 2003 22:03:33 -0700 (PDT) Received: from msr29.hinet.net (msr29.hinet.net [168.95.4.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44AF143FBD for ; Sun, 29 Jun 2003 22:03:32 -0700 (PDT) (envelope-from y2kbug@ms25.hinet.net) Received: from sonic.utopia.com (61-227-219-129.HINET-IP.hinet.net [61.227.219.129]) by msr29.hinet.net (8.9.3/8.9.3) with SMTP id NAA22906 for ; Mon, 30 Jun 2003 13:03:30 +0800 (CST) Date: Mon, 30 Jun 2003 12:24:14 +0800 From: Robert Storey To: freebsd-questions@freebsd.org Message-Id: <20030630122414.3d268e15.y2kbug@ms25.hinet.net> In-Reply-To: <20030630024920.46342.qmail@web40413.mail.yahoo.com> References: <20030626154508.7359337B416@hub.freebsd.org> <20030630024920.46342.qmail@web40413.mail.yahoo.com> X-Mailer: Sylpheed version 0.8.9 (GTK+ 1.2.10; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: PPP troubles SOLVED!!! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2003 05:03:33 -0000 On Sun, 29 Jun 2003 19:49:20 -0700 (PDT) RexFelis wrote: > Here's what I did. I copied the contents of > /etc/ppp from my Linux partition to my Windows > partition and then compared each corresponding > file to it's freebsd counterpart. And what I > found was that my resolv.conf files were > different - the DNS nameserver address had been > changed under Linux! Although using a Windows FAT32 partition is one way to share data between Linux and FBSD, if you're recompiling your FBSD kernel you might consider adding support for the Linux ext2 filesystem. You need a line like this in your kernel source: options EXT2FS You'll get a quaint warning about how you are about to "contaminate" your kernel with GPL code. Nevertheless, it will compile fine, and after installing the new kernel you'll be able to mount ext2 and ext3 partitions from FBSD. The advantages of not using FAT32 includes, among other things, allowing you to preserve permissions when moving files between FBSD and Linux. regards, Robert