View previous topic :: View next topic |
Author |
Message |
knue Tux's lil' helper
Joined: 13 Oct 2004 Posts: 139
|
Posted: Tue Dec 04, 2007 4:14 pm Post subject: timidity not working |
|
|
After the latest update the new timidity++ version (2.13.2-r6) does not work for me (can't remember the version befor the update).
Code: | # /etc/init.d/timidity start
* Starting TiMidity++ Virtual Midi Sequencer ... [ ok ]
# ps -A | grep tim
|
As you can see there is no timidity process and kmid or wine + midi do not work. Any ideas? |
|
Back to top |
|
|
didymos Advocate
Joined: 10 Oct 2005 Posts: 4798 Location: California
|
Posted: Tue Dec 04, 2007 6:30 pm Post subject: |
|
|
Can you just run it manually? If so, does that work? _________________ Thomas S. Howard |
|
Back to top |
|
|
knue Tux's lil' helper
Joined: 13 Oct 2004 Posts: 139
|
Posted: Wed Dec 05, 2007 11:36 am Post subject: |
|
|
Running it manually (as user or root) via
works for me.
This is my config (nothing special, just 1:1 from the package in portage and did etc-update):
Code: | # cat /etc/init.d/timidity
#!/sbin/runscript
depend() {
after alsasound esound
}
start() {
ebegin "Starting TiMidity++ Virtual Midi Sequencer"
test -n "$TIMIDITY_PCM_NAME" && export TIMIDITY_PCM_NAME
start-stop-daemon --start --background --chuid timidity:nobody \
--make-pidfile --pidfile /var/run/timidity.pid \
--exec /usr/bin/timidity -- -iA ${TIMIDITY_OPTS}
eend $?
}
stop() {
ebegin "Stopping TiMidity++"
start-stop-daemon --stop --quiet --pidfile /var/run/timidity.pid
eend $?
} |
Code: | # cat /etc/conf.d/timidity | grep -v \#
TIMIDITY_OPTS="-B2,8 -Os -EFreverb=0" |
|
|
Back to top |
|
|
|