Tiny Core Linux
Tiny Core Extensions => TCE Q&A Forum => Topic started by: P5music on June 15, 2010, 06:43:42 AM
-
Hello,
I am using Reaper and Samplelord (testing Kontakt4 too) on tinycore with wine/wineasio.
(I am tweaking the system and I need your help also for the other two open questions found in this forum)
I am experiencing that in normal circumstances when Reaper is focused glitches can occur, while when it is minimized there are no glitches.
When the use is resource critical I see that glitches occur also with Reaper minimized and they are coincident with verbose messages in the corresponding terminal.
I suspect that all these glitches are not caused by real resource problems but by debugging stuff.
Can anyone help on this? Is there a way to disable all that messaging in the terminal?
Thanks in advance also for the other questions.
-
export WINEDEBUG=err-all,fixme-all
should remove all wine debug messages.
-
thanks friend!
is it permanent or have I to put it in xsession?
-
It's permanent for the shell session, so if you want it always, .xsession, .profile, or .ashrc would be ok places for it.
In general, wine isn't perfect, so if your hw is capable, have you considered virtualization?
-
I think virtualization does not go towards fast boot time, which is my main goal. However, now I am trying to accomplish this system. Your answers were useful. thanks.
last thing: is the command for jack similar?
like
export JACKDEBUG=err-all,fixme-all
-
I don't know about jack, but I'd doubt it's similar.
-
could jack 2>/dev/null be useful?
does this command start jack too?
-
there are 3 standard channels for input and output of programs:
STDIN - Input to a program, = 0
STDOUT - Output of a program, = 1
STDERR - Error-Output of a program, = 2
when executing a command you can always redirect the output of the program with > to another file, so 2>/dev/null redirects the error output to /dev/null (which means it is "thrown away" and you won't see it in the console anymore).
example: $ jack 1>/dev/null 2>&1
would mean "redirect the output to trash and redirect STDERR(2) to STDOUT(1), therefore it goes to trash as well".
-
$ jack 1>/dev/null
gave
command not found (or similar)
-
Hello,
I am using Reaper with wine,wineasio,jack,alsa.
Early posts earned me this tricks:
jack 2>/dev/null
wine 2>/dev/null
export WINEDEBUG=err-all,fixme-all
to avoid glitches but still some glitches remain. They do not seem to be caused by too short audio latency.
Note: when I minimize the Reaper window they disappear, so it is still an "output" issue.
Thanks for any help.