Facebook
Categories
- Apache (7)
- asp (3)
- business (2)
- Cpanel Server (37)
- Database (5)
- dedicated server (3)
- DNS (4)
- errors (1)
- Exim (2)
- ffmpeg (1)
- file sharing (10)
- firefox (1)
- flash (1)
- free stuff (1)
- FreeBSD Server (16)
- Funny (3)
- general (12)
- Git (5)
- hosted scripts (1)
- image hosting (3)
- Installation (4)
- large sites (9)
- Linux (55)
- CentOS (3)
- Debian Linux (1)
- Linux Desktop (1)
- ubuntu (10)
- Mail Server (3)
- Qmail Server (2)
- Monotize (3)
- myspace clone (1)
- mysql (6)
- OpenVZ (7)
- PHP (16)
- PHP Tutorial (1)
- symfony (2)
- zend framework (1)
- Plesk (1)
- Programming (3)
- perl (1)
- Ruby On Rails (1)
- search engine (2)
- security (2)
- Server (5)
- social networking (1)
- Uncategorized (198)
- unmetered servers (6)
- Video (13)
- Video Sharing (21)
- Video Sharing Scripts (6)
- Web (77)
- Web Hosting (2)
- Windows (44)
- iis (1)
- Windows Server Administration (2)
- YouTube (17)
- youtube clone (21)
- yui (2)
Category Archives: Linux
Missing Dependency: libjpeg.so.62 is needed by package xulrunner-1.9.2.22-1.el5_7.i386 (updates)
On a cpanel sever, when running yum update, i get following error xulrunner-1.9.2.22-1.el5_7.i386 from updates has depsolving problems –> Missing Dependency: libjpeg.so.62 is needed by package xulrunner-1.9.2.22-1.el5_7.i386 (updates) ghostscript-8.70-6.el5_7.3.i386 from updates has depsolving problems –> Missing Dependency: libjpeg.so.62 is needed … Continue reading
Installing Git on CentOS
Git is a distributed version control created by Linus torvalds for managing Linux kernal. Now many large projects use git for version control. You can download latest version of git from http://git-scm.com/download To install version 1.7.5.2, run cd /usr/local/src wget … Continue reading
Install Unrar on CentOS
To install Unrar on CentOS, run cd /usr/local/src wget http://www.rarlab.com/rar/rarlinux-3.8.0.tar.gz tar zxvf rarlinux-3.8.0.tar.gz cd rar make make install We installed older version of unrar as Latest unrar will not work on CentOS 5.x To check where unrar installed, run which … Continue reading
Install Sun Java on CentOS
Download Java JDK or JRE from http://www.oracle.com/technetwork/java/javase/index-137561.html JRE is only for running Java Programs. JDK can compile Java Source code and run it. So if you plan to make Java Program, download JDK. Download Link for 32 Bit JDK on … Continue reading
Posted in CentOS
Tagged centos java, install java, install sun java, java, oracle java, sun java
1 Comment
Change ls color in bash CentOS/RHEL/Fedora
By default CentOS/RHEL show directorys in ls listing in dark green. With dark color, i found it difficult to read directory names. To change directory color, do cp /etc/DIR_COLORS ~/.dir_colors Edit ~/.dir_colors vi ~/.dir_colors Find DIR 01;34 # directory Replace … Continue reading
Posted in Linux
Tagged bash ls color, centos ls color, color, directory color, directory listing color, ls color, rhel directory color
4 Comments
Install software with RPM
To install rpm file, run [code lang="bash"] rpm -ivh package.rpm [/code] Here -i = install -v = verify -h = show progress with # To upgrade an existing rpm package, run [code lang="bash"] rpm -Uvh package.rpm [/code] -U = Upgrade … Continue reading
TextAloud on Ubuntu
I use TTS to read web pages. Switching to Ubuntu i miss the Text to Speech. Default text to speech on ubuntu is too difficult to understand. You can listen to it only if you get used to its bad … Continue reading
Google Chrome TTS
Google Chrome have Text to Speech extension, that make it easy to listen to web pages instead of reading the page. You can install the extension from. https://chrome.google.com/extensions/detail/jbldhmenlfmbooleglopeplanhpmhmje tts use web based google tts, so it is little slow, you … Continue reading
How to find out which program is using a port
You can use netstat or fuser commands to find out which program is using a port. You can find used ports with command nmap [root@server52 ~]# nmap localhost Starting Nmap 4.20 ( http://insecure.org ) at 2010-03-24 07:14 EDT Interesting ports … Continue reading
ffmpeg-php undefined symbol php_gd_gdImageSetPixel
When i install ffmpeg-php on a plesk server, i got following error PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib/php/modules/ffmpeg.so’ – /usr/lib/php/modules/ffmpeg.so: undefined symbol: php_gd_gdImageSetPixel in Unknown on line 0 This is caused by loading ffmpeg.so before gd.so … Continue reading
