Adnan Khurshid on February 2nd, 2011

Capturing the packets on a given interface is vital for troubleshooting problems caused by the application or even network. The commercial servers have multiple Ethernet cards some of which are active and others in a standby mode. In this situation, we must for know which interface card is active and then make the trace on […]

Continue reading about How to capture packets on Ethernet interface in SUN Solaris

Adnan Khurshid on February 1st, 2011

If you need to drop a table in informix and create it again, you require the script which was initially used to create that table. To get the SQL script, we use dbschema command. Most frequently, the command is used in the following format. dbschema -d <database> -t <tablename> -ss <file_name>                                                                             |__ To Generate Server […]

Continue reading about How to retrieve SQL script for table creation from Informix

Adnan Khurshid on February 1st, 2011

Most of the programs use dynamic linked libraries so that they can take advantage of pre-prepared procedures in those libraries. However, if such a program doesn’t find the required library present on the system, it won’t run. In such a situation, you can use the ‘ldd’ command to check how many libraries that program is […]

Continue reading about How to check shared libraries dependencies in Linux