# File lib/rfusefs.rb, line 65
    def FuseFS.start(root,mountpoint,*opts)
        FuseFS.set_root(root)
        begin
            FuseFS.mount_under(mountpoint,*opts)
            FuseFS.run
        ensure
            FuseFS.unmount()
        end
    end