![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Ubuntu 9.10 is out!!!
When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu. The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely. |
|
Programming Talk This forum is for all programming questions. The questions do not have to be directly related to Ubuntu and any programming language is allowed. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
5 Cups of Ubuntu
![]() Join Date: Nov 2005
Beans: 13
|
howto install dbdesigner4
hi everybody bothering about how to install dbdesigner!
currently i'm running mysql 5.0 on my notebook and i got dbdesigner working after solving quite a lot of problems. what helped me a lot were the explanations from http://wiki.splitbrain.org/dbdesigner (you should do everything explained in the "It needs a shared library from Kylix:"-section.) and also do: download the libborqt-6.9.0-2.i386.rpm from http://sourceforge.net/project/showf...ckage_id=68416 Code:
alien libborqt-6.9.0-2.i386.rpm dpkg -i libborqt_6.9.0-3_i386.deb when you cannot go along after struggling through these instructions try this: 1. edit the last line of the startdbd script to: Code:
$app_path/DBDesigner4 $* #2> ~/.DBDesigner4/DBD4.log when you get s.th. like " symbol lookup error: blablabla/Linuxlib/libqt.so.2: undefined symbol: XftPatternGetString" make a symbolic link with these command (from the dir where you extracted the tarball): Code:
cd DBDesigner4/Linuxlib Code:
sudo rm libqt.so.2 Code:
ln -s /usr/lib/usr/lib/kylix3/libborqt-6.9.0-qt2.3.so ./ (maybe there is a missing symlink; try around a little bit) 3. when you try to connect to the mysql-database and you get an error that tells you something about "cannot load libmysqlclient.so" then again: Code:
sudo rm libmysqlclient.so Code:
ln -s /usr/lib/usr/lib/libmysqlclient.so.14.0.0 libmysqlclient.so Code:
set password for 'mysql'@'localhost' = old_password('mysql');
Code:
flush privileges; please correct this post, if I have messed s.th up and apologize my bad english |
|
|
|
|
|
#2 |
|
Spilled the Beans
![]() Join Date: Jun 2006
My beans are hidden!
|
Dave: thanks a lot for this post, I finally got DBDesigner working after reading through your steps and doing some debugging along the way.
|
|
|
|
|
|
#3 |
|
A Carafe of Ubuntu
![]() Join Date: Sep 2005
Location: Birmingham, UK
Beans: 118
Ubuntu 7.04 Feisty Fawn
|
Re: howto install dbdesigner4
I have just tried these instruction and some others I found on the web but I get DBDesigner running, only I can't connect to the MySQL database.
The error is: Unable to load libsqlmy.so Any ideas. Running Dapper.
__________________
Regards Peter King Web SiteDesign.net Ltd Professional web site design company in Birmingham England. www.sitedesign.net |
|
|
|
|
|
#4 |
|
First Cup of Ubuntu
![]() |
Re: howto install dbdesigner4
Hi:
I wrote a small guide to install and keep working DBDesigner in Ubuntu, in fact I'm using Ubuntu Dapper and DBDesigner without problems.. take a look at this: http://www.ubuntuforums.org/showthre...ght=dbdesigner I hope it works for you
__________________
There are 10 kind of people, who knows binary code and who doesn't |
|
|
|
|
|
#5 | |
|
Gee! These Aren't Roasted!
![]() Join Date: Oct 2005
Beans: 214
|
Re: howto install dbdesigner4
Quote:
|
|
|
|
|
|
|
#6 |
|
Gee! These Aren't Roasted!
![]() Join Date: Feb 2005
Location: Cleveland, OH
Beans: 164
Ubuntu 9.04 Jaunty Jackalope
|
Re: howto install dbdesigner4
When I tried installing the kylix libs, it complains that xlibs is not installed. I found xlibs-dev in synaptic and installed that, but still the problem remains.
|
|
|
|
|
|
#7 |
|
Just Give Me the Beans!
![]() Join Date: Mar 2006
Location: Italy
Beans: 54
Ubuntu 7.04 Feisty Fawn
|
Re: howto install dbdesigner4
open a console and get/install xlibs
wget http://www.chorse.org/junkroom/xlibs...8.2-77_all.deb sudo dpkg -i xlibs_6.8.2-77_all.deb
__________________
GNU & Linux -The dynamic duo |
|
|
|
|
|
#8 |
|
First Cup of Ubuntu
![]() Join Date: Jun 2006
Location: Belo Horizonte / MG - Brazil
Beans: 4
Ubuntu 6.06
|
Re: howto install dbdesigner4
The Link for libborqt-6.9.0-2.i386.rpm is broken:
http://sourceforge.net/project/showf...ckage_id=68416 I found this package in RPM Find: http://www.rpmfind.net/ Working link: ftp://fr2.rpmfind.net/linux/sourcefo...9.0-2.i386.rpm []s Marco Modesto. |
|
|
|
|
|
#9 |
|
First Cup of Ubuntu
![]() Join Date: Dec 2006
Beans: 2
|
Re: howto install dbdesigner4
In fact, I'd like to recommand strongly to use wine and the Windows installer. It will save you a lot of time with the configuration and the user interface will be nicer
I have put some details on my blog: http://21croissants.blogspot.com/200...gner-4-on.html |
|
|
|
|
|
#10 |
|
First Cup of Ubuntu
![]() Join Date: Mar 2007
Beans: 6
|
Here's a condensed cut-n-paste version =) works great under Ubuntu 7.04 "Feisty"
Code:
sudo -s Code:
### setting up ### mkdir ~/dbdesigner-install cd ~/dbdesigner-install ### downloading rpm packages ### wget http://213.115.162.124/external/DBDesigner4/DBDesigner4-0.5.4-0.i586.rpm wget ftp://fr2.rpmfind.net/linux/sourceforge/s/sk/skychart/libborqt-6.9.0-1.i386.rpm wget ftp://ftp.pbone.net/mirror/ftp.turbolinux.com/pub/TurboLinux/stable/tested/Workstation/7/i586/MySQL-shared-3.23.58-8.i586.rpm ### installing alien ### apt-get install alien ### converting rpm packages to deb packages ### alien *.rpm ### installing deb packages ### dpkg -i *.deb ### creating links to libraries and executable ### cd /usr/lib ln -s DBDesigner4/libsqlmy.so cd /usr/bin ln -s /opt/DBDesigner4/DBDesigner4 dbdesigner ### exiting root and starting dbdesigner ### exit dbdesigner & sleep 5 && killall dbdesigner ### editing user config ### cd ~/.DBDesigner4 sed s/libmysqlclient.so$/libmysqlclient.so.10/ DBConn_DefaultSettings.ini > temp cp temp DBConn_DefaultSettings.ini && rm temp ### all done, running dbdesigner ### dbdesigner ![]() Last edited by eracerbit; June 12th, 2007 at 11:45 PM.. |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|