amal.barman Posted November 12, 2006 Share Posted November 12, 2006 HOW TO INSTALL pgAdmin III on FC6T3 -----------------------------------PgAdmin3 is not distributed along with Fedora Core 6 (Test3 as in my case). I have downloaded it from the pgadmin site. RPM of pgAdmin3 depends on the wxWidgets, and that can be downloaded from it's site. Since wxWidgets is coming with tar.gz form, compilation is required. Once you have both RPM and tar ball do the followings. 1. Expand the tar ball of wxWidgets $tar -zxvf wxWidgets-2.6.3.tar.gz $cd wxWidgets/3. Compile the wxWidgets ( I have developed a script abx.sh to do that.) $./configure --with-gtk --enable-gtk2 --enable-unicode \ --enable-mimetype=no --enable-compat22 --enable--compat24 $make $make install $/sbin/ldconfig $cd contrib/ $make $make installNOTE: --enable-compat22 --enable--compat24 is necessary for pgadmin3-1.4.3-1.i686.rpm package. ([b]I need to compile twice for this reasonand wasted a few hour to fix that.[/b]) :o4. Create the link of shared library object of wxWidgets to /usr/lib/ . (I do not know the reason, why? ???) $cd /usr/lib $for x in `ls /usr/local/lib/*2.6.so.0`; do ln -s $x; done5. Install pgadmin3-1.4.3-1.i686.rpm (use --nodeps) and run pgadmin3, from menu or from terminal using $pgadmin3 command. Note that help is still notworking from pgadmin3, and can any body tell me the reason or how to fix it? ???That's all. Quote Link to comment https://forums.phpfreaks.com/topic/26996-installation-and-compilation-of-pgadmin3-and-wxwidgets-in-fedora-core-6/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.