Mehic.info

Category Archives: Technology

Posts related to my job or interests

OpenIMSCore : Installation and Configuration Guide

Hi there, my current project (also and next few posts) will be on subject of IMS. For faculty research I must install and examine an I-CSCF part of IMS subsystem. So let’s go : The IP Multimedia Subsystem or IP Multimedia Core Network Subsystem (IMS) is an architectural framework for delivering Internet Protocol (IP) multimedia services. It was originally designed by the wireless standards body 3rd […]

Read more

Installation of UCT IMS Client on Ubuntu 10.10

The UCT IMS Client is designed to be used in conjunction with the Fraunhofer FOKUS Open IMS Core. The client has been developed by the Communications Research Group at the University of Cape Town, South Africa. First of all, you must download the source code from https://developer.berlios.de/project/showfiles.php?group_id=7844. UCT IMS Client needs some dependencies. Use the following […]

Read more

Save SQL result into file

Often it is useful to export a SQL query result into a file. Especially CSVfiles are nice for this task. The following SQL query saves the result in a file called output.csv into the /tmp directory: SELECT * FROM my_table INTO OUTFILE ‘/tmp/output.csv’ FIELDS TERMINATED BY ‘,’ ENCLOSED BY ‘”‘ LINES TERMINATED BY ‘\n’;

Read more

Install sun-java6-jdk on Ubuntu 10.04

I just had trouble to install the Sun Java6 JDK after updating to Ubuntu 10.04 for my project on Faculty. The problem was that the system couldn’t find the package sun-java6-sdk and apt-get gave me the following message: Package sun-java6-jdk is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or […]

Read more