Topic: Linux + ZynAddSubFx
Some notes from my head-banging yesterday:
You can have both Pianoteq and ZynAddSubFx installed on the same machine w/o using JACK but you need to have a launcher script clean up after each other. (You can use JACK to share the audio otuput but JACK does not respond well to a suspend/resume sequence so I use ALSA+direct hardware plus a kill/restart script.)
When starting ZynAddSubFx:
# kill pianoteq first
pkill Pianoteq\ 5
# start ZASF in background w/ the -a parameter
zynaddsubfx -a &
# wait 2 seconds for virtual midi interface to be built before directing midi input to ZASF
# to view midi device numbers, run: amidi -l
aconnect 16:0 128:0
When starting Pianoteq:
# pkill ZASF
pkill zynaddsubfx
# ZASF starts up jackd even if you don't need it
pkill jackd
# start pianoteq
/ptq_path/arch/Pianoteq\ 5
ZynAddSubFx obviously does not generate realistic piano sounds but is still pretty fun to play around with.