From owner-freebsd-questions@FreeBSD.ORG Tue Aug 7 02:59:52 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF33F16A419 for ; Tue, 7 Aug 2007 02:59:52 +0000 (UTC) (envelope-from novembre@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.freebsd.org (Postfix) with ESMTP id A950F13C465 for ; Tue, 7 Aug 2007 02:59:52 +0000 (UTC) (envelope-from novembre@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so2995430pye for ; Mon, 06 Aug 2007 19:59:51 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=CNgPqCsJOaoP7lFXBhYwtk86JSvzCf0oakDzr35C02HGZiJ8pKoT970y3wezBJkYDA2ooxNLRJwdy43OgOFUL1uTNWB6zJi6crZOcZnjXqrvNZU9hTHVlQfnRI8xjTITuHEaSaxeh1LdS7jhBTbnQFrnPHp97LAK97wCl/BceTc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=i4larbRu7r8leahPPsVsiJMcxSw4dWX2BzMHHSNab1HdXkNLIcmYUPUQQsRfDOYvlVLWYa06hkDtDp/QOnEmpDcJtuJdhSWEf+qincD+s1n3HJjyXmAT/9FsmSkCN/F6K4spX04NpccD1ikqk9TXY4tgdU6sFw1O24c+pqS0mqY= Received: by 10.65.189.20 with SMTP id r20mr9886898qbp.1186455591235; Mon, 06 Aug 2007 19:59:51 -0700 (PDT) Received: by 10.64.210.16 with HTTP; Mon, 6 Aug 2007 19:59:51 -0700 (PDT) Message-ID: <3b47caa90708061959v42c02e3fy8e97137cd2a30504@mail.gmail.com> Date: Mon, 6 Aug 2007 21:59:51 -0500 From: Novembre To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: NTFS-3G not mounting the partition during boot 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: Tue, 07 Aug 2007 02:59:53 -0000 Hi, I have a problem mounting my NTFS partition at boot using ntfs-3g. A little search got me to add the following ntfsmount startup script to /usr/local/etc/rc.d/ ---------- #!/bin/sh # # PROVIDE: ntfsmount # REQUIRE: fusefs . /etc/rc.subr name="ntfsmount" rcvar=`set_rcvar` command="ntfs-3g /dev/ad0s1 /mnt/windows && ntfs-3g /dev/ad0s1 /mnt/windows -o locale=en_US.UTF-8" load_rc_config $name run_rc_command "$1" ---------- and then to run " chmod +x /usr/local/etc/rc.d/ntfsmount " in order to make it executable. After that, I added the line ntfsmount_enable="YES" to my /etc/rc.conf, and then rebooted. I did not see any error messages during boot, but the partition was not mounted. However, if I run ntfs-3g from the command prompt to mount the windows partition, it works. I am using fusefs-kmod-0.3.0_5 fusefs-libs-2.7.0_1 fusefs-ntfs-1.710 Any ideas what's going on here?