From owner-freebsd-questions@FreeBSD.ORG Fri Nov 5 13:17:46 2004 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 5A1B316A4CE for ; Fri, 5 Nov 2004 13:17:46 +0000 (GMT) Received: from sccmmhc91.asp.att.net (sccmmhc91.asp.att.net [204.127.203.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1081743D2F for ; Fri, 5 Nov 2004 13:17:46 +0000 (GMT) (envelope-from m.hauber@mchsi.com) Received: from [10.51.10.3] (12-219-204-133.client.mchsi.com[12.219.204.133]) by sccmmhc91.asp.att.net (sccmmhc91) with ESMTP id <20041105131731m9100ce5gse>; Fri, 5 Nov 2004 13:17:42 +0000 From: Mike Hauber To: jakob@grimstveit.no Date: Fri, 5 Nov 2004 08:20:32 -0500 User-Agent: KMail/1.7 References: In-Reply-To: X-Copyright: 2004, Michael C. Hauber. All rights reserved. X-Notice: Duplication, modification, and/or redistribution are prohibited without proper consent from the author. MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200411050820.33346.m.hauber@mchsi.com> cc: freebsd-questions@freebsd.org Subject: Re: Festival usage problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: m.hauber@mchsi.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Nov 2004 13:17:46 -0000 On Friday 05 November 2004 06:49 am, Jakob Breivik Grimstveit proclaimed: > [jakobbg@bgjgrimstveit ~]# festival --tts a > Can't access NAS server (null) > > Am I missing some settings? Packages? > > Thanks in advance. It looks like you have everything you need. However, it also looks like you don't have nasd running. What I've done on my system is created a start-up script called nas_d.sh in /usr/local/etc/rc.d $ cat /usr/local/etc/rc.d/nas_d.sh #!/bin/sh # # This script was created for the sole purpose # of starting up the NAS daemon on system # startup. # /usr/X11R6/bin/nasd -local -b This way nasd is called up every time you start your system and you won't have to mess with it manually. Don't forget to make the script executable. You can also rename the script to whatever you want, but make sure it ends with the .sh else it wont be called up at start-up. HTH, Mike