Using the following instructions I've been able to play 10 track compositions in Rosegarden with no noticeable dropouts. (Download free midi files from [url=http://www.mididb.com/]here[/url] (for example) to use with Rosegarden) Open a terminal window (Alt+F2) 1 Install the basic apps, Rosegarden, fluidsynth and vkeybd [code]sudo yum install fedora-release sudo yum install rosegarden4 lilypond perl-XML-Twig fluidsynth PersonalCopy-Lite-soundfont vkeybd kdebase[/code] 2. launch fluidsynth first, it's important to use the '-c2' option to get low latency (can also use '-c1') [code]fluidsynth -a alsa -c2 -i -l -s /usr/share/sondfonts/PCLite.sf2 &[/code] For even more efficiency you can disable reverb and chorus with '-R0 -C0' options, the sound quality is reduced a little. 3. launch vkeybd and connect to fluidsynth using aconnect [code]vkeybd & aconnect 129:0 128:0[/code] Hit a few keys on the virtual keyboard to test. If it won't connect then check the port numbers are correct using 'aconnect -i' and 'aconnect -o'. In vkeybd you can change instruments from the program list, the soundfont quality is very good (check out the violin, trumpet and flute) 4. launch rosegarden, ignore any jack error, it will automatically connect to fluidsynth [code]rosegraden &[/code] Open an example multi-track demo like Djer-Fire.rg and check it plays back smoothly. (If there are any issues then try disabling services like NetworkManager 'sudo yum service NetworkManager stop') (You can record input from vkeybd by pressing 'record' button on a track) That's it, your little netbook is now a powerful synthesizer and sequencer :) [attachment=0:29kvv71o]Screenshot.jpg[/attachment:29kvv71o] Note that Timidity can be used in place of fluidsynth (install with 'yum install timidity++'), but I couldn't get quite as good performance from it (I used 'timidity -iA -B2,8 &' to test it) To stop fluidsynth type 'killall fluidsynth'