From owner-freebsd-questions@FreeBSD.ORG Sat Feb 17 07:10:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B24C216A400 for ; Sat, 17 Feb 2007 07:10:23 +0000 (UTC) (envelope-from carpetsmoker@glitch.carpetsmoker.net) Received: from glitch.carpetsmoker.net (carpetsmoker.xs4all.nl [82.93.23.199]) by mx1.freebsd.org (Postfix) with ESMTP id 67A3B13C442 for ; Sat, 17 Feb 2007 07:10:23 +0000 (UTC) (envelope-from carpetsmoker@glitch.carpetsmoker.net) Received: by glitch.carpetsmoker.net (Postfix, from userid 1001) id 8BDCFB833; Sat, 17 Feb 2007 08:10:22 +0100 (CET) Date: Sat, 17 Feb 2007 08:10:22 +0100 From: Martin Tournoij To: freebsd-questions@freebsd.org Message-ID: <20070217071021.GB61237@glitch.carpetsmoker.net> References: <454499.22993.qm@web62211.mail.re1.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <454499.22993.qm@web62211.mail.re1.yahoo.com> User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: drewjenkinsjr@yahoo.com Subject: Re: Can I Mount A Windoze Drive? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Feb 2007 07:10:23 -0000 On Sat 17 Feb 2007 13:02, Drew Jenkins wrote: > Newbie question here. I just want to make sure I don't screw anything up. I have two hard drives in my box...one for Windoze, one for FBSD. Can I mount the former from FBSD and copy over files? Do I navigate it just like a FBSD disk..."cd", "cp", etc? > TIA, > Drew FreeBSD comes with a readonly ntfs driver. Assuming your windows partition is ad0s1 mount_ntfs /dev/ad0s1 /mnt/win fstab entry: /dev/ad0s1 /mnt/win ntfs ro,noauto 0 0 You can then copy stuff, for example: cp /mnt/win/Documents\ and\ Settings/carpetsmoker/Desktop ~/ If you want read support, you might want to try ntfsprogs (sysutils/ntfsprogs), which has some basic (EXPERIMENTAL!) read support.