Skip to main content

Posts

Showing posts with the label :: Trix

:: How to install DirectAdmin on Linux CentOS

:: What is DirectAdmin DirectAdmin is a graphical web-based web hosting control panel designed to make administration of websites easier. – wikipedia :: DA License Make sure you have DA License before installing DirectAdmin :: How to install DirectAdmin on Linux CentOS + installing dependency for DA # yum install gcc gcc-c++ flex bison make bind bind-libs bind-utils openssl openssl-devel perl quota libaio libcom_err-devel libcurl-dev + installing DA # wget http://www.directadmin.com/setup.sh # chmod 755 setup.sh # ./setup.sh :: Testing Open DA using your web browser on : http://youripaddress:2222 :: Link + Google + DirectAdmin

:: How to enable Java on Google Chrome in Linux Debian

:: How to enable Java on Google Chrome + Installing Java on Linux Debian # aptitude install sun-java6-jre sun-java6-plugin + Create 'plugins' directory # mkdir /opt/google/chrome/plugins + Soft-link the plugins file # ln -s /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/libnpjp2.so /opt/google/chrome/plugins/ :: Links + Google + SuperUser

:: how to update linux centos 5.5 to 5.6

:: how to update linux centos 5.5 to 5.6 # yum update :: checking centos version # cat /etc/issue CentOS release 5.6 (Final) Kernel \r on an \m or # lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 5.6 (Final) Release: 5.6 Codename: Final :: links + google

:: error while loading shared libraries: libgtk-x11

:: if you running thunderbird / firefox and get error like: /usr/local/firefox/firefox-bin: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory or /usr/local/thunderbird/thunderbird: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory :: how to fix error libgtk-x11 on linux debian / ubuntu # aptitude install ia32-libs ia32-libs-gtk :: links + google

:: how to create debian live usb on linux

|| whatis debian please take a look this || how to create debian live usb on linux | checking usb pendrive device # fdisk -l | dd debian file iso to pendrive device # dd if=debian-6.0.0-i386-xfce+lxde-CD-1.iso of=/dev/sdd * /dev/sdd is your pendrive device not the partition for your usb device. || links | googlelinux

how to disable / enable popups pidgin messenger

:: how to disable / enable popups pidgin messenger 0. open plugins menu: Tools - Plugins 1. disable libnotify popups :: links + googlelinux + vavai

:: install rapidleech on linux / vps

:: whatis rapidleech please take a look this :: how to install rapidleech on vps / linux $ cd /home/user/public_html/ $ wget http://rapidleech.googlecode.com/files/rapidleech-svn322.zip $ unzip rapidleech-svn322.zip $ mv r322/ rl $ chmod 777 rl/files/ rl/configs/ rl/configs/files.lst open your rl on: yourdomain.tld/rl :: links + googlelinux + tutorit

:: backup all mysql databases

:: what is please take a look this :: backing up all mysql databases used mysqldump command $ mysqldump --all-databases -u root -p | gzip -9 > db_all.sql.gz Enter password: :: restoring all mysql databases $ tar -xzf db_all.sql.gz $ mysql -u root -p < db_all.sql Enter password: :: links + googlelinux + netadmintools

:: installing google apache mod_pagespeed

:: whatis mod_pagespeed please take a look this.. :: download and compile mod_pagespeed + download depot_tools [ linux: ~ ]# mkdir ~/bin [ linux: ~ ]# cd ~/bin [ linux: bin ]# svn co http://src.chromium.org/svn/trunk/tools/depot_tools [ linux: bin ]# export PATH=$PATH:~/bin/depot_tools + download mod_pagespeed source-code [ linux: ~ ]# mkdir mod_pagespeed [ linux: ~ ]# cd mod_pagespeed/ [ linux: mod_pagespeed ]# gclient config http://modpagespeed.googlecode.com/svn/tags/0.9.10.1/src [ linux: mod_pagespeed ]# gclient sync --force :: compiling mod_pagespeed [ linux: ~ ]# cd ~/mod_pagespeed/src [ linux: src ]# make BUILDTYPE=Release [ linux: src ]# cd install/ [ linux: install ]# ./install_apxs.sh use that command if your apache installed from source.. if your apache installing from repository, do this: [ linux: install ]# make staging [ linux: install ]# make install [ linux: install ]# make stop start :: restarting apache [ linux: install ]# /usr/local/apache2/b

:: how to enable tcp/ip forwarding on windows xp

:: how to enable tcp/ip forwarding on windows xp 0. open regedit.exe start - run - regedit 1. go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters 2. set the following registry value: Value Name: IPEnableRouter Value type: REG_DWORD Value Data: 1 3. quit regedit and reboot your computer. :: links + googlemicrosoft + microsoft