cd /usr/src/ wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.4.tar.gz tar -zvxf linux-2.6.17.4.tar.gz cd linux-2.6.17.4 cp /boot/config-2.6.9-22.ELsmp /usr/src/linux-2.6.17.4/.config make clean make mrproper make oldconfig (Note that oldconfig will only work within the same major version of the kernel. You cannot, for example, use a 2.4.x .config with the 2.6.x kernel) keep hitting enter and take the defaults until you get to […]
See MoreTag: web hosting
JDK : Installation
DOWNLOAD: http://java.sun.com/javase/downloads/index.jsp ls -la chmod 755 jdk-6u2-ea-bin-b02-linux-i586-12_apr_2007-rpm.bin ./jdk-6u2-ea-bin-b02-linux-i586-12_apr_2007-rpm.bin java -version updatedb;locate javac |grep bin alternatives –install /usr/bin/java java /usr/java/jdk1.6.0_02/bin/java 100 alternatives –install /usr/bin/jar jar /usr/java/jdk1.6.0_02/bin/jar 100 alternatives –install /usr/bin/javac javac /usr/java/jdk1.6.0_02/bin/javac 100 /usr/sbin/alternatives –config java /usr/sbin/alternatives –config java java -version Change the path as per the JDK version in alternatives command like alternatives –install /usr/bin/java […]
See MoreError — Warning: unpack() [function.unpack]:
Error — Warning: unpack() [function.unpack]: Type V: not enough input, need 4, have 0 in /home/uruser/public_html/blog/wp-includes/phptext.php on line 35 Solution install odbc connector 1, Download MySQL Connector/ODBC 3.51 from http://dev.mysql.com/downloads/connector/odbc/3.51.html wget http://dev.mysql.com/get/Downloads/MyODBC3/mysql-connector-odbc-3.51.16-linux-x86-32bit.tar.gz/from/http://mysql.mirror.rafal.ca/ 2, open php.ini and find “;extension=dbase.dll”, delete the “;” in front of it, this will open dbase extension to parse the dbf file. […]
See More