Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Aug 2007 22:31:00 -0500
From:      Novembre <novembre@gmail.com>
To:        "Philip M. Gollucci" <philip@riderway.com>
Cc:        "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org>
Subject:   Re: NTFS-3G not mounting the partition during boot
Message-ID:  <3b47caa90708072031x5aca7c5ncd7f6780b70a7f4b@mail.gmail.com>
In-Reply-To: <3b47caa90708071953t515be42etef87a9c72c00dd54@mail.gmail.com>
References:  <3b47caa90708061959v42c02e3fy8e97137cd2a30504@mail.gmail.com> <46B7F338.30304@riderway.com> <3b47caa90708071953t515be42etef87a9c72c00dd54@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On 8/7/07, Novembre <novembre@gmail.com> wrote:
>
>
>
> On 8/6/07, Philip M. Gollucci <philip@riderway.com> wrote:
> >
> > Novembre wrote:
> > > rcvar=`set_rcvar`
> > That should be
> > rcvar=${name}_enable
> >
> > Because of this, your script did not run because the rc system didn't
> > detect it correctly.
> >
> > Try setting
> > rc_debug="YES"
> > and/or
> > rc_info="YES"
> > in /etc/rc.conf
> >
> > to see more of whats happening.
> >
> > > command="ntfs-3g /dev/ad0s1 /mnt/windows && ntfs-3g /dev/ad0s1
> > > /mnt/windows -o locale=en_US.UTF-8"
> > Also $command is special, you should use another variable
> > $command_args (which is also special) for the arguments/options.
> >
> > Of course, you can circument these if you know what you are doing.
> >
> > When in doubt, look at other rc scripts like apache22's or others that
> > might seem like they would do a lot.
> >
> > Finally, in /etc/rc.subr is _very_
> >
> >
> > --
> > ------------------------------------------------------------------------
> > Philip M. Gollucci ( philip@riderway.com) 323.219.4708
> > Senior System Admin - Riderway, Inc. http://riderway.com
> > 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB  B89E 1324 9B4F EC88 A0BF
> >
> > Work like you don't need the money,
> > love like you'll never get hurt,
> > and dance like nobody's watching.
> >
>
>
>
> Hi,
>
> I did not write this script myself. I was searching the net for a solution
> to this problem, and I found a thread on ntfs-3g forums where somebody had
> posted this script. Apparently, it had worked for him and some other people.
> I just copied and pasted the script. But since I wanted to know more about
> startup scripts, I looked at the manual page for rc.d, and a sample script
> there looked exacly liked this one. That's why I thought that the script
> that I have is going to work as well.
> I made the changes and am going to reboot the machine now. If they work,
> i'll post the results...
>
> Thanks a lot :)
>
>

Okay, here's an update. I changed the script to the following
----------
#!/bin/sh
#
# PROVIDE: ntfsmount
# REQUIRE: fusefs
#

. /etc/rc.subr

name="ntfsmount"
rcvar=${name}_enable
command="/usr/local/bin/ntfs-3g"
command_args="/dev/ad0s1 /mnt/windows"

load_rc_config $name

: ${ntfsmount_enable="NO"}

run_rc_command "$1"
----------

and have also put rc_debug="YES" and rc_info="YES" in /etc/rc.conf, and the
result is the following
----------
/etc/rc: DEBUG: checkyesno: ntfsmount_enable is set to YES.
Starting ntfsmount.
/etc/rc: DEBUG: run_rc_command: _doit: /usr/local/bin/ntfs-3g  /dev/ad0s1
/mnt/w
indows
fuse: failed to exec mount program: No such file or directory
----------

I don't exactly know what it means by "fuse: failed to exec mount program:
No such file or directory" since /usr/local/bin/ntfs-3g exists, /dev/ad0s1
is my Windows 2000 partition, and I have created /mnt/windows myself.

Any ideas?



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3b47caa90708072031x5aca7c5ncd7f6780b70a7f4b>