Error message
Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/tylerfra/public_html/includes/common.inc).
ubuntu
This tutorial describes how to get Addictive Drums working in Ubuntu 12.04. Rock and roll, no time to fiddle...
TuxGuitar is amazing, and its open source! However, in Ubuntu the default soundbank doesn't sound as good as what is available out there. Let's make it sound better with more realistic sound (a.k.a. Real Sound Engine)...
In a terminal window, use these two commands to install the Fluid Soundfonts:
sudo apt-get install fluid-soundfont-gm
sudo apt-get install fluid-soundfont-gs
If these terminal commands don't work, then you can use the Synaptic Package Manager to install them.
Download gource 0.37 (0.38 had too many dependencies that appear to be for Ubuntu 11+), extract its contents to your Desktop (or wherever you want), navigate to the directory where the files were extracted, then execute the following terminal commands (checkout the contents of the INSTALL file for more details):
SSH TUNNEL
Example 1 - MYSQL Query Browser
# open up the local (L) port 4000 (this is just a random port, you can pick others) on localhost and
# tunnel it to port 3306 on 123.456.789.101, without an interactive terminal (-N)
ssh -L 4000:localhost:3306 123.456.789.101 -N
# then in 'mysql query browser' we are able to connect to localhost:4000 with the DB credentials
# required for 123.456.789.101 and it will make the connection to 123.456.789.101's sql server on port 3306