The Linux "Realtime Threads" Wiki Docs Are Innacurate

Installing from scracth on Linux, the part of the docs frome where I want to copy/paste from are wrong.

See:
http://tutorials.renoise.com/wiki/Linux_FAQ#Realtime_Threads

Expected:

  
 YOURUSERNAME - rtprio 99   
 YOURUSERNAME - nice --10   
  

Actual:

  
 YOURUSERNAME - rtprio 99   
 YOURUSERNAME - nice −10   
  

The problem is with [b]nice −10[/b], in the Wiki output this is not a double minus but some weird incompatible dash. Needs to be “escaped”

I’ve seen this kind of thing before. I think some wiki or cms engines tend to output minus sign as the longer dash whatever it is called. Then some terminal emulators seem to recognize it as double minus when you paste it into them, iirc.

However it should be single minus ‘nice -10’

although setting the niceness shouldn’t have that big of an impact compared to rtprio anyway.

also neither renoise or jackd doesn’t seem to set the nice level themselves, so it shouldn’t really matter unless you’re going to renice the processes yourself.

Oh! Thanks.