From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from fed1rmmtao105.cox.net ([68.230.241.41]) by speech.braille.uwo.ca with esmtp (Exim 3.36 #1 (Debian)) id 1HsU87-00017S-00 for ; Sun, 27 May 2007 21:34:39 -0400 Received: from fed1rmimpo01.cox.net ([70.169.32.71]) by fed1rmmtao105.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070528013409.WOOR22040.fed1rmmtao105.cox.net@fed1rmimpo01.cox.net> for ; Sun, 27 May 2007 21:34:09 -0400 Received: from bonus-eruptus ([72.198.87.190]) by fed1rmimpo01.cox.net with bizsmtp id 4Ra71X00446QN3s0000000; Sun, 27 May 2007 21:34:07 -0400 From: cmbrannon@cox.net (C.M. Brannon) To: "Speakup is a screen review system for Linux." Subject: Re: spelling was Re: GRML swspeak? References: <000201c7a081$1e5d3a00$17b2a8c0@oemcomputer> <002101c7a088$612b90f0$6405a8c0@ALBERTLC7SN0ZA> <87bqg6rs6n.fsf_-_@cox.net> <000f01c7a0c0$ebe7f200$6405a8c0@ALBERTLC7SN0ZA> Date: Sun, 27 May 2007 20:32:17 -0500 In-Reply-To: <000f01c7a0c0$ebe7f200$6405a8c0@ALBERTLC7SN0ZA> (Albert E. Sten-Clanton's message of "Sun, 27 May 2007 20:41:24 -0400") Message-ID: <877iqtspge.fsf@cox.net> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-BeenThere: speakup@braille.uwo.ca X-Mailman-Version: 2.1.9 Precedence: list Reply-To: "Speakup is a screen review system for Linux." List-Id: "Speakup is a screen review system for Linux." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 May 2007 01:34:39 -0000 "Albert E. Sten-Clanton" writes: > Greetings! > > I booted up with the grml 1.0 Cd, using the "grml swspeak" command. > After that and running the swspeak command again, I tried > > renice 3 `ps -e |grep speechd-up |head -1 |cut -d' ' -f1` > > as you suggested. I got a short error/usage message. I then > retried the command, after replacing each ` with ". I got the > message that the old priority of 0 was changed to 3. I also tried > -12. There was no change in the way the software speech read. > Could I have missed something here? That exact command line just worked over here. Of course, I'm running an HD installation of grml, but that shouldn't make any difference. The `ps -e ...` part of the command line finds the process ID of your speechd-up process, and this becomes the second argument to renice. Don't change ` to ", because this changes the semantics of the command. Text within backquotes is executed by the shell, and the result is substituted back into the command line. For instance, echo Today is `date` should print: Today is Sun May 27 ... Anyway, if that command didn't work for you, just find the process ID of speechd-up and call renice manually. HTH, -- Chris