Building the MySQL GUI tools on Debian


sudo apt-get install libgtkmm2.0-dev libglade2-0 \
libglade2-dev libgtkhtml3.0-4 libgtkhtml3.0-dev \
libxml2 libxml2-dev uuid-dev libuuid1

Then, grab the source trees (mysql-gui-common, mysql-administrator, mysql-query-browser). You should probably grab source tarballs rather than using the BK trees… I had to edit some files to get it to build – but that’s probably just today. Tomorrow it will be a different story.

you’ll want to add the path to mysql_config to your PATH

cd mysql-gui-common; sh ./autogen.sh –prefix=/whatever/you/want && make && make install

cd ../mysql-adiministrator; sh ./autogen.sh –prefix=/whatever/you/want && make && make install

cd ../mysql-query-browser; sh ./autogen.sh –prefix=/whatever/you/want && make && make install

you should then be able to run them and connect to a mysql server

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.