Inicio > database, develop > MySQL Workbench (Linux)

MySQL Workbench (Linux)

miércoles, 24 de septiembre de 2008 Dejar un comentario Ir a comentarios

MySQL Workbench (Linux)

What is MySQL Workbench ?

MySQL Workbench is a cross-platform, visual database design tool developed by MySQL. It is the highly anticipated successor application of the DBDesigner4 project. MySQL Workbench will be available as a native GUI tool on Window, Linux and OS X.

For Ubuntu (8.04) users i made this install script (run as root):

#!/bin/bash
# This script tested only on Ubuntu 8.04 (32 bits)
# You need some extra libs to run MySQL Workbench
sudo apt-get install liblua5.1-0 libzip1 libmysqlclient15off
# Download MySQL Workbench Ubuntu 8.04 Bin Files
wget -c ftp://ftp.mysql.com/pub/mysql/download/gui-tools/mysql-workbench-5.1.2-alpha-ubuntu8-i386.tar.gz
# Download the md5 checksum file
wget -c ftp://ftp.mysql.com/pub/mysql/download/gui-tools/mysql-workbench-5.1.2-alpha-ubuntu8-i386.tar.gz.md5
# Check md5sum
real=`md5sum mysql-workbench-5.1.2-alpha-ubuntu8-i386.tar.gz | awk '{ print $1 }'`
confirm=`cat mysql-workbench-5.1.2-alpha-ubuntu8-i386.tar.gz.md5 | awk '{ print $1 }'`
if [ "$real" = "$confirm" ]
then
	# Extract (/usr/local/bin/ /usr/local/lib/mysql-workbench/ /usr/local/share/mysql-workbench/)
	tar xvzf mysql-workbench-5.1.2-alpha-ubuntu8-i386.tar.gz -C /
else
	echo "Wrong MD5, run the script again."
fi

Note: MySQL Workbench is alpha on Linux

More information about MySQL Workbench

Categories: database, develop Tags: , , ,
  1. miércoles, 10 de junio de 2009 a las 17:01 | #1
    Surfing Firefox 3.0.10 Firefox 3.0.10 on Ubuntu Ubuntu

    Nice script but will it work on ubuntu 9.04 ?!

    BTW.. My website has the saaaaaame theme :$

    Thanks

  2. jueves, 16 de julio de 2009 a las 02:55 | #2
    Surfing Firefox 3.0.11 Firefox 3.0.11 on Ubuntu Ubuntu

    In this moment are oficial .deb pkgs for Ubuntu(8.04 and 8.10) on http://dev.mysql.com/downloads/workbench/5.1.html

  1. Sin trackbacks aún.

Switch to our mobile site