LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Help, can't play midi's in FC3 - KDE (https://www.linuxquestions.org/questions/linux-newbie-8/help-cant-play-midis-in-fc3-kde-338893/)

hlpboplz 06-30-2005 07:32 PM

Help, can't play midi's in FC3 - KDE
 
Can someone tell me how to play midi files in KDE for FC3? I have tried Kmid and it says /dev/sequencer is being used by another process????.......

akudewan 07-01-2005 01:51 AM

Open a terminal and type
Code:

fuser /dev/sequencer
This will show you the pid of the process using /dev/sequencer (which is basically a number)

Now do
Code:

ps -A
and match the pid (number) with the process. Once you find the process, kill it if it's safe to be killed.

Code:

kill <pid>
Then it should work, hopefully


All times are GMT -5. The time now is 09:08 PM.