Install jdownloader on linux debian
April 11th, 2011 12:28 PM | Tutorials | 10 Comments
|| what is jdownloader
please take a look this
|| how to install jdownloader on linux debian
| installing openjdk-6-jdk
# aptitude install openjdk-6-jdk
| installing jdownloader on current user home
$ mkdir bin
$ cd ~/bin
$ wget //212.117.163.148/jd.sh
$ chmod +x jd.sh
$ ./jd.sh
|| add jdownloader shortcut on ...
Setup DNS using Bind / named
April 9th, 2011 08:25 AM | Tutorials | No Comment
|| what is bind
please take a look this
|| install bind (debian)
# aptitude install bind9
|| setting bind
| setup file named.conf
# vi /etc/bind/named.conf.local
zone "blackonsole.org" IN {
file "/etc/bind/master/zone.blackonsole.org";
...
Block / deny ip on nginx
April 7th, 2011 01:09 AM | Tutorials | No Comment
|| what is nginx
please take a look this
|| how to blocking ip address on nginx
| configure nginx.conf
# vi /etc/nginx/nginx.conf
###
# add this line
include blockingip
| configure blockingip file
# vi /etc/nginx/blockingip
##add line to blocking ip
deny 10.100.100.80;
##add line to blocking subnet
deny 10.100.100.0/24;
| restarting ...
Install drupal on linux
April 6th, 2011 10:05 AM | Tutorials | 1 Comment
|| what is drupal cms
please take alook this
|| how to install drupal on linux
| dowload and extract package
# wget //ftp.drupal.org/files/projects/drupal-7.0.tar.gz
# tar -xzf drupal-7.0.tar.gz
# mv drupal-7.0/* drupal-7.0/.htaccess htdocs/
# cd htdocs/
| setup drupal before installing
# cp sites/default/default.settings.php sites/default/settings.php
# chmod a+w sites/default
# ...
rsync over ssh
April 5th, 2011 03:52 AM | Tutorials | No Comment
|| what is rsync
please take a look this..
|| how to using rsync over ssh
# rsync -e ssh -goptrWlzuv /source /destination
for mirroring
# rsync -e ssh -goptrWlzuv /source /destination --delete
|| links
| google
Enable register_globals php using .htaccess
April 3rd, 2011 02:25 AM | Tutorials | 1 Comment
|| how to enable register_globals php on cpanel
# vi .htaccess
php_flag register_globals on
|| links
| google
| cpanel
Repair db / table mysql on centos
April 3rd, 2011 12:57 AM | Tutorials | No Comment
|| what is mysql
please take a look this..
|| how to repair db mysql on linux centos
# /etc/init.d/mysqld stop
# myisamchk -r -q /var/lib/mysql/DB_NAME/*.MYI
# /etc/init.d/mysqld start
|| how to repair table mysql
# /etc/init.d/mysqld stop
# myisamchk -r -q /var/lib/mysql/DB_NAME/TABLE_NAME.MYI
# /etc/init.d/mysqld start
|| links
| google
| thegeekstuff