HowTo
IBM RAD 7.5 on Ubuntu Karmic 32 Bit
by Samet Kilictas on Dec.08, 2009, under HowTo

Lets assume you were using ubuntu 9.04 jaunty and now you have upgraded your distribution to 9.10 karmic. Before i get into 9.10 version i had my RAD 7.5 installed and running. Then decided to upgrade my distro. I’ve read an article and futures of karmic distro, that says plenty of packages getting updated. After getting done with upgrade process i tried to run my RAD 7.5 , it was ok for the first time but there were plenty of errors on screen.
First of all when you upgrade your distro, the gcc++ package gets upgareded so libstdc++.so.5 file to libstdc++.so.6 .Unfortunately RAD 7.5 version looks for libstdc++.5.so file on your system. You have to download this file. Download it by using link below;
http://packages.debian.org/stable/base/libstdc++5
Then install this deb package (If you are running on another linux distro you have to place it just next to where your libstdc++.6.so file, you can use “locate libstdc++.so.6″ command to see where your file is). Then copy below bash script and paste it any of your text editor, save it as “run.sh”. From now on, you can use this script to run your RAD 7.5.
#!/bin/bash export GTK_NATIVE_WINDOWS=1 /where/your/RADis &
After this process your problem should be gone. Have fun.
Generate ER diagram by appliying reverse enginnering technique
by Samet Kilictas on Jun.06, 2009, under HowTo

Yesterday, i needed to generate an ER diagram for one of my databases that i am working on. Well, i didn’t meet with Mysql Workbench visual database tool before. It made my day. MySQL Workbench is a visual database design application that can be used to efficiently design, manage and document database schemata. And it is available under GPL license. This application is allowing you to generate a diagram for a database using its reverse engineering tool. And the good thing is after generating process you may modify it anyway. I think i am going to use this application in future. For detailed information go in this link below :
http://dev.mysql.com/downloads/workbench/5.1.html
Keep in touch foxes ( :
How to install Nvidia Driver 180.29 on your ubuntu
by Samet Kilictas on Mar.06, 2009, under HowTo, Linux, Tips, Ubuntu
If you are using older drivers then 180.29 version you should* install new drivers so you will have better performence with 180.29 version. Don’t worry it is piece of cake to install it on your ubuntu.
Firstly, go on ( System->Administration->Software Sources ) then click on “Third-Party software” tab. Now you should see a button “+Add” shows on it.
deb http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu intrepid main
deb-src http://ppa.launchpad.net/anders-kaseorg/ppa/ubuntu intrepid main
As you see above there is two lines of address. You should add them one-by-one by clicking this “+Add” button. when you are done with that it is time to get PPA keys for this repository.
Now use there commands
cd ~/Desktop
gedit temp.key
Subversion (SVN) Server Nasıl Kurulur (Turkish)
by Samet Kilictas on Dec.19, 2008, under HowTo, Linux, Ubuntu
Merhaba arkadaşlar subversion hakkında türkçe yazılmış çok fazla kaynak olmamasından dolayı bu yazımı türkçe yazdığımı belirtmek istiyorum. Halen ingilizce dilinin artık global bir dil olduğunun bazı kişiler tarafından kabul edilmeyişide ayrı bir tartışma konusu bence.
Neyse hemen anlatmaya başlıyorum. Aslında kişisel olarak bir projeyi tek başıma yapıyorsam bunda daha başarılı olabildiğimi düşünüyordum ancak bazı nedenlerden dolayı anladım ki atasözümüz olan “Bir elin nesi var iki elin sesi” var sözü gerçekten yerinde ve mantıklı söylenmiş bir söz.
. Geçenlerde üniversitede grup çalışması yaptıgım samimi arkadaşlar ile bir projeye başlama kararı aldık ve ortak bir çalışma ortamı oluşturmam gerekiyordu. Ortak çalışma ortamı çok şekilde yaratılabilir aslında;
- Subversion
- CVS
- SourceSafe
- Team Foundation Server
- Birkaç duyulmamış sistem daha
Bu sistemler arasında en mantıklı ve uygulanabilirliği açısından rahat olan sistemin subversion olduğunu düşünüyorum. Linux altında çalışmışlığınız var ise bir Subversion (SVN) server kurmak yanlızca 30 saniyenizi alacaktır. Subversion sistemini windows işletim sistemilerinde de kurabiliyoruz ancak tabiki biz linuxumuza kurup rahat ve hızlı çalışmanın tadına varacağız
.htaccess problem at Apache2 (Ubuntu)
by Samet Kilictas on Sep.08, 2008, under HowTo, Linux, Ubuntu
Hi, Everyone,
Today i have faced with a problem which made me sick of apache2. Since i’ve done with this stupid problem it will be my pleasure to writing solution to my blog page
Ok!, If you are running apache2 first you should know about that you got the configuration file at ;
sudo nano /etc/apache2/apache2.conf -> just check out this file to see what it contains exaclty
and you can see error log’s at ;
sudo nano /var/log/apache2/error.log -> which helps a lot
So, to enable .htaccess files on your server first you have to edit ;
sudo nano /etc/apache2/sites-available/default
when you open this file you have to see some lines like;
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
you have to be sure the Document root is correct. Then you need to change the “AllowOverride None” to “AllowOverride All” then we are done with this part.
Thanks for dropping by! Feel free to join the discussion by leaving comments, and stay updated by subscribing to the 