<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Oct 31, 2017 at 9:26 AM, Stuart Auchterlonie <span dir="ltr"><<a href="mailto:stuarta@squashedfrog.net" target="_blank">stuarta@squashedfrog.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-">On 31/10/17 14:14, Ozzy Lash wrote:<br>
><br>
><br>
> On Tue, Oct 31, 2017 at 5:15 AM, Stuart Auchterlonie<br>
</span><span class="gmail-">> <<a href="mailto:stuarta@squashedfrog.net">stuarta@squashedfrog.net</a> <mailto:<a href="mailto:stuarta@squashedfrog.net">stuarta@squashedfrog.<wbr>net</a>>> wrote:<br>
><br>
>     On 31/10/17 06:15, Ian Evans wrote:<br>
>     > I notice that when I run a mythvidexport.py user job moving a recording<br>
>     > to the video section, the responsiveness of the interface grinds to a<br>
>     > halt and the load goes north of 5.<br>
>     ><br>
>     > Haven't really used nice much. Any recommendations what nice level I<br>
>     > should run it at?<br>
>     ><br>
><br>
>     nice -19<br>
><br>
>     which is basically background task, and everything else takes priority.<br>
><br>
><br>
><br>
> Isn't a negative nice value giving the process a HIGHER priority?  I<br>
> think you mean "nice 19"  correct?<br>
><br>
<br>
</span>Nope, it's -19. It's probably clearer from the man page explanation.<br>
<br>
-n, --adjustment=N<br>
    add integer N to the niceness (default 10)<br>
<br>
so the '-' doesn't mean minus, it means an option to the command<br>
<br>
<option><value><br>
<br>
so --19 would be a priority boost, however only root can boost the<br>
priority, normal users can only reduce their priority.<br>
<br>
$ nice --19 echo fish<br>
nice: cannot set niceness: Permission denied<br>
fish<br>
<br>
$ nice -19 echo fish<br>
fish<br>
<div class="gmail-HOEnZb"><div class="gmail-h5"><br></div></div></blockquote><div><br></div><div>When I learned about using nice it was on 4.3 BSD and I was using csh (probably tcsh).  csh has its own built-in nice, and there you specify the positive and negative niceness with a plus or minus sign.  I fired up tcsh on my laptop, and here is the results there:</div><div><br></div><div> lash-Precision-M6600:~> nice +10 echo fish<br>fish<br>lash-Precision-M6600:~> nice -10 echo fish<br>setpriority: Permission denied.<br></div><div><br></div><div>So I guess just keep in mind what the manpage says and make sure your shell doesn't have a builtin that has different syntax, or specify /usr/bin/nice.  Although running through the shells bash, ksh, tcsh, and zsh, it is only csh that replaces it.</div><div><br></div><div>Bill<br></div><div><br></div><div><br></div></div></div></div>