4
September , 2010
Saturday

Did You connected with zall?

the great website for most popular information, dedicated all free, trusted and up to date

WinRAR is a 32-bit Windows version of RAR Archiver, an archiver and archive manager. RAR ...
Maafkan diriku sayang,yang tanpa sengaja melupakan hari kelahiranmu.Sungguh aku tak sengaja, tapi kuakui ini semua ...
Flush DNS function is to make a change on the computer to be accomodate change ...
Udah siang gini, tapi yayang belum nelpon juga, padahal aku dah kangen banget nich. Yayang katanya ...
Hari ini aku ketemu ama cewek cantik yang duduk tepat disampingku, duhhh... mesra and manjanya ...
"WPRobot" adalah salah satu "plugin" untuk "wordpress" yang berfungsi sebagai auto contents / "auto posting" ...
We are The Veterinary Medicine College of Syiah Kuala University is developing the project concept ...
A pride if you can get backlinks from websites .GOV in this post I will ...
Cheat: Unlock Grandpa To unlock a new character - Grandpa - you need to complete (collect ...
Berpose diruang kerjaku dengan Bang Fauzi, salah seorang staff Hygiene Promotion di kantor.

Archive for the ‘Computer’ Category

Optimalisasi koneksi internet Anda dengan Google Public DNS Server gratis

Posted by Afrizal On August - 29 - 2010 |ADD COMMENTS | 0 views

Buat kamu yang udah sering pake “Free Public DNS” seperti OpenDNS, udah gak asing lagi dengan istilah Public DNS gratis.

Google juga nggak mau kalah dalam hal memberikan layanan Public DNS, terbukti dengan mengeluarkan produk “Google Public DNS yang juga disediakan secara gratis yang berfungsi untuk membantu mempercepat koneksi internet kita.

Google Public DNS
Primary DNS : 8.8.8.8
Secondary DNS : 8.8.4.4

Alternative menggunakan Time Warner Telecomm
Primary DNS : 64.129.67.101
Secondary DNS : 64.129.67.102
Third DNS : 64.129.67.103

Free Public OpenDNS
Primary DNS : 208.67.222.222
Secondary DNS : 208.67.220.220

Kelebihan:
Untuk buka website berbau2 google Inc, kenceng banget… seperti Google.com, blogger.com, gmail.com, google Apps, google Adsense, dll. Untuk akses situs local lumayan kencang.

Kekurangan:
Sulit mengakses produk2 berbau Yahoo! Inc, seperti login ke Yahoo Messenger, Yahoo! Mail, flickr.com, Youtube.com, dll.

Semoga bermanfaat.

Kritik, saran, dan caci maki silahkan langsung saja di bagian comments dibawah ini.

References :
https://code.google.com/p/namebench/
http://opendns.com

Expert linux unix commands list

Posted by Afrizal On April - 27 - 2010 |2 COMMENTS | 12 views

Linux command to kill nobody and user process
Kill nobody process
root@ns1.e-padi.com [~]# ps aux | grep nobody | awk ‘{print $2}’| xargs kill -9
Kill user process
root@ns1.e-padi.com [~]# ps aux | grep apache | awk ‘{print $2}’ | xargs kill -9
Cpanel : update scripts
Just do one thing run the following command on shell.
root@ns1.e-padi.com [~]# rsync -av rsync://rsync.cpanel.net/scripts /script
Cpanel : Mysql Upgrade
1. Update config
2. root@ns1.e-padi.com [~]# /scripts/UPCP
3. Select mysql 5 from the tweak settings and run the command from the shell to update mysql.
4. root@ns1.e-padi.com [~]# /scripts/mysqlup –force
5. After this run root@ns1.e-padi.com [~]# /scripts/easyapache to recompile apache and php to higher version.
Cpanel : Mod_fcgi installation
Mod_fcgi installation on cpanel.
root@ns1.e-padi.com [~]# cd /usr/local/src/
root@ns1.e-padi.com [~]# wget ftp.ruby-lang.org/pub/ruby/ruby-1.8.2.tar.gz rubyforge.org/frs/download.php/3700/rubygems-0.8.11.tgz fastcgi.com/dist/fcgi-2.4.0.tar.gz fastcgi.com/dist/mod_fastcgi-2.4.2.tar.gz
root@ns1.e-padi.com [~]# tar zxf ruby-1.8.2.tar.gz
root@ns1.e-padi.com [~]# tar zxf rubygems-0.8.11.tgz
root@ns1.e-padi.com [~]# tar zxf fcgi-2.4.0.tar.gz
root@ns1.e-padi.com [~]# tar zxf mod_fastcgi-2.4.2.tar.gz
root@ns1.e-padi.com [~]# cd ruby-1.8.2
root@ns1.e-padi.com [~]# ./configure && make && make install
root@ns1.e-padi.com [~]# cd ..
root@ns1.e-padi.com [~]# cd rubygems-0.8.10
root@ns1.e-padi.com [~]# ruby setup.rb
root@ns1.e-padi.com [~]# cd ..
root@ns1.e-padi.com [~]# gem install rails
root@ns1.e-padi.com [~]# cd fcgi-2.4.0
root@ns1.e-padi.com [~]# ./configure && make && make install
root@ns1.e-padi.com [~]# cd ..
root@ns1.e-padi.com [~]# cd mod_fastcgi-2.4.2
root@ns1.e-padi.com [~]# /usr/local/apache/bin/apxs -o mod_fastcgi.so -c *.c
root@ns1.e-padi.com [~]# /usr/local/apache/bin/apxs -i -a -n fastcgi mod_fastcgi.so
root@ns1.e-padi.com [~]# cd ..
root@ns1.e-padi.com [~]# mkdir /tmp/fcgi_ipc/
root@ns1.e-padi.com [~]# mkdir /tmp/fcgi_ipc/dynamic/
root@ns1.e-padi.com [~]# chmod -R 777 /tmp/fcgi_ipc/
root@ns1.e-padi.com [~]# cat <> ~/httpd.conf
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
FastCgiWrapper On
EOT
root@ns1.e-padi.com [~]# gem install fcgi
root@ns1.e-padi.com [~]# service httpd restart
How to change port of SSH shell
To force ssh to run on a non standard port, use the following steps:
root@ns1.e-padi.com [~]# vi /etc/ssh/sshd_config
2. Browse to the following line:
# Port 22
3. Uncomment and edit this line to reflect the new port.
Port 2255 (this can be set to any non standard port)
4. Save and quit the file, and restart ssh.
root@ns1.e-padi.com [~]# /etc/init.d/ssh restart
5. If you are connected to the server via ssh on port 22, your connection will drop and you will need to reconnect using the new port.
If you have apf installed, Please add the port in apf
root@ns1.e-padi.com [~]# nano /etc/apf/conf.apf
For tcp ports
# Common ingress (inbound) TCP ports
CHMOD commands File permissions on Linux
Use the chmod command to set file permissions.
The chmod command uses a three-digit code as an argument.
The three digits of the chmod code set permissions for these groups in this order:
1. Owner (you)
2. Group (a group of other users that you set up)
3. World (anyone else browsing around on the file system)
Each digit of this code sets permissions for one of these groups as follows. Read is 4. Write is 2. Execute is 1.
The sums of these numbers give combinations of these permissions:
* 0 = no permissions whatsoever; this person cannot read, write, or execute the file
* 1 = execute only
* 2 = write only
* 3 = write and execute (1+2)
* 4 = read only
* 5 = read and execute (4+1)
* 6 = read and write (4+2)
* 7 = read and write and execute (4+2+1)
For example Chmod commands on file e-padi.txt (use wildcards to include more files)
Command Purpose
chmod 700 e-padi.txt Only you can read, write to, or execute apple.txt
chmod 777 e-padi.txt Everybody can read, write to, or execute apple.txt
chmod 744 e-padi.txt Only you can read, write to, or execute apple.txt Everybody can read apple.txt;
chmod 444 e-padi.txt You can only read apple.txt, as everyone else.
How to Detect File Permissions
You can use the ls command with the -l option to show the file permissions set. For example, for apple.txt, I can do this:
root@ns1.e-padi.com [~]# ls -l apple.txt
-rwxr–r–   1 december december       81 Feb 12 12:45 e-padi.txt
root@ns1.e-padi.com [~]#
The sequence -rwxr–r– tells the permissions set for the file apple.txt. The first – tells that apple.txt is a file. The next three letters, rwx, show that the owner has read, write, and execute permissions. Then the next three symbols, r–, show that the group permissions are read only. The final three symbols, r–, show that the world permissions are read only.

Cheat for Nintendo Wii game SSX

Posted by Afrizal On February - 26 - 2010 |ADD COMMENTS | 102 views

Wii SSX game PS2Cheat: Unlock All Characters
Options > Cheat > NoHolds

SSX The ever popular SSX is now in its fourth edition as snowboarding contains to grow in popularity. The pace and terror experienced as you career down the mountain side in pursuit of the best time, is so realistic. The Wii offers a different level in control due to the exclusive motion recognition system, where a small movement can send you off track and out of control. There are also a number of different modes, including the new career mode, which allows you to build up your status and cult following off the mountain. Partnerships with a number of leading snowboarding equipment retailers have been incorporated into the game, to give a life like feel.

Free Wii cheat code for Super Monkey Ball: Banana Blitz

Posted by Afrizal On February - 26 - 2010 |ADD COMMENTS | 116 views

Super Monkey Ball: Banana BlitzCheat: Unlock Grandpa
To unlock a new character – Grandpa – you need to complete (collect ALL bananas)

Wii Game Super Monkey Ball: Banana Blitz The next addition to the Super Monkey Ball series, Super Monkey Ball: Banana Blitz is one of the new brand of games to take full advantage of the increased gaming experience of the Wii. AiAi and his friends take on a vast array of puzzles and party games, where they can jump and run at the flick of the controller. The games are played in virtual 3D which further enhances the playing experience, and gives you a better feel for the environment. The added variety of games compared to the earlier Super Monkey Ball franchise packages further increases the attractions of this offering.

Free cheat Double Agent: Tom Clancy’s Splinter Cell

Posted by Afrizal On February - 25 - 2010 |1 COMMENT | 129 views

game Tom clancy's cellTom Clancy’s Splinter Cell: Double Agent is the fourth in the Splinter Cell series, which has taken in a number of dangerous missions. This mission is perhaps the most difficult, with experienced agent Sam Fisher under pressure to infiltrate a gang and stop a potentially devastating terrorist attack. Going under cover you are required to fight tooth and nail to halt the attack, taking a number of calculated risks to meet you end. A mixture of strategy and shoot’em up this game is not simple, and you will need to decide how far you can push things without blowing your cover too early.

Kaspersky 2009 Anti-Virus Review

Posted by Afrizal On January - 16 - 2009 |ADD COMMENTS | 845 views

kaspersky-anti-virus-2009

Since the ?Award Winning? Kaspersky Anti-Virus 2009 program was released not too long ago, I figured it is time to give it a try and fork up the $40 bucks. I of course used my second PC which runs Windows XP before I wanted to install it on my primary PC running Windows Vista Ultimate.

Like the previous years versions of Kaspersky Anti-Virus, this version was very good at finding and removing threats. I won?t go into what sites I would visit in order to make sure I infected the Windows XP computer nice, but we can say they were not all G rated. And of course I wrote all the sites down and kept a log of it. Read the rest of this entry »

How to Enable Automatic Updates / Disable Automatic Updates on Windows XP

Posted by Afrizal On December - 27 - 2008 |ADD COMMENTS | 1,598 views

Don’t you hate shutting down your computer only to realize that you have 10 minutes of updates? Or have a popup box asking you to reboot your computer every 5 minutes? Take control of your updates by either disabling or rescheduling so that it doesn’t strike you when you are rushing off for dinner at the end of the day.

Automatic update will generally try to computer once a day, but since most users turn off their computers by 3:00 AM in the morning (the default setting) it will probably only check during the start of the day when you first turn on your computer. While I recommend that you DO install updates, I suggest that you do one of the following: Read the rest of this entry »

Step by step to Diagnostics or Analyze Your own computer

Posted by Afrizal On December - 11 - 2008 |4 COMMENTS | 354 views

Here I will show you 4 basic steps to do to Build and Analyze or diagnostics your own computer, pc using free software CPU-Z. Easy and simple steps to do and understand.

Step 1
Download CPU-Z from www.cpuid.com/cpuz.php (Click here to Download) and copy the zip file’s contents into a folder. CPU-Z requires no installation, which means you can simply delete the folder when you are finished with it! The first CPU tab shows general information about your system processor.

What You can do with CPU-Z?
CPU-Z is a freeware that gathers information on some of the main devices of your system. CPU-Z will help you to analyzing of:

CPU
Name and number.
Core stepping and process.
Package.
Core voltage.
Internal and external clocks, clock multiplier.
Supported instructions sets.
Cache information.

Mainboard
Vendor, model and revision.
BIOS model and date.
Chipset (northbridge and southbridge) and sensor.
Graphic interface.

Memory
Frequency and timings.
Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table.

System
Windows and DirectX version.

Step 2
Switch to the Mainboard tab and you can see details about your motherboard, BIOS, and graphic interface. Take particular note of your motherboard’s manufacturer- this will come in handy if your board becomes faulty and you need to call customer support.

Step 3
Click on the Memory tab- you’ll see your system’s RAM type shown in the first box. If you want to add to your PC’s memory, then you should buy the same type in order to ensure compatibility. For a computer running Windows Vista, you should ideally have at least 1024 MB of RAM.

Step 4

Select the About tab. This tab contains three tools, including the Registers Dump utility – click on the Registers Dump button and save a text file. Open this file up, and you’ll find a plethora of different PC specifications, which will be helpful to more advanced users

All these information would help you when it?s time to upgrade your computer or when you plan to optimize your configurations

Other options, you can also using DirectX Diagnostic Tools (‘dxdiag’) on Windows command prompt.

Command:
Start > Run > type ‘dxdiag’

How to Exctract / Export PDF file to Word Doc, .doc

Posted by Afrizal On November - 16 - 2008 |ADD COMMENTS | 815 views

Extract or Convert PDF files to Microsoft Office Word (.doc)
Export PDF files into .DOC

The program can Convert text, images, shapes from PDF file to Microsoft Office Word .Doc file and preserve the layout. It can convert all the pages, or any pages range of the PDF file. And it is a standalone program. You can convert PDF to Word Doc without Adobe Acrobat Reader or Microsoft Word installed.

Its Freeware (free software), simple and easy to use.

Download
1. Pdf2WordSetup.exe
2. keycode
2. User Manual (Bahasa Indonesia)

How to Install Domain Key on cPanel server

Posted by Afrizal On November - 15 - 2008 |5 COMMENTS | 1,835 views

You can install domain keys on a cPanel server easily for a single domain, in this tutorial I am using cPanel 11.
Run the following command shown below:

[root@afrizal etc]# /usr/local/cpanel/bin/domain_keys_installer username

(i.e.: /usr/local/cpanel/bin/domain_keys_installer afrizal)

It will automatically installing Domain Key for the domain (zall.us) successfully.
Now you can verify it from the db record of the domain. The following new entry will be added in the db record.

[root@afrizal etc] vi /var/named/zall.us.db

; cPanel 11.23.3-CURRENT_25049
; Zone file for zall.us
$TTL 14400
@ 86400 IN SOA ns1.e-padi.com. zall.e-padi.com. (
2008111500 ; serial, todays date+todays
86400 ; refresh, seconds
7200 ; retry, seconds
3600000 ; expire, seconds
86400 ) ; minimum, seconds

zall.us. 86400 IN NS ns1.e-padi.com.
zall.us. 86400 IN NS ns2.e-padi.com.

zall.us. IN A 75.125.178.242

localhost.zall.us. IN A 127.0.0.1

zall.us. IN MX 0 mail.zall.us.

mail IN CNAME zall.us.
www IN CNAME zall.us.
ftp IN A 75.125.178.242
default._domainkey IN TXT “k=rsa; p=MHwwDQYJKoZIhvcNAQEBBQADawAwaAJhAMZmC4FHl63UcC9o1Q3V72dp8DLjp;”

Now run command below:
[root@afrizal etc] rndc reload zall.us
[root@afrizal etc] /etc/rc.d/init.d/exim restart

Now you can verify it by creating a new mail account iam@zall.us and send an email to yahoo account, then verify the headers.

Delivered-To: zall@e-padi.com
Received: by 10.65.231.17 with SMTP id i17cs232839qbr;
Sat, 15 Nov 2008 12:31:23 -0800 (PST)
Received: by 10.100.107.3 with SMTP id f3mr1053948anc.28.1226781083285;
Sat, 15 Nov 2008 12:31:23 -0800 (PST)
Return-Path:
Received: d24si2511266and.24.2008.11.15.12.31.21;
Sat, 15 Nov 2008 12:31:22 -0800 (PST)
Received-SPF:
DomainKey-Status: good
Authentication-Results: mx.google.com; spf=neutral (google.com: 75.125.178.242 is neither permitted nor denied by best guess record for domain of iam@zall.us) smtp.mail=iam@zall.us; domainkeys=pass header.From=iam@zall.us
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=zall.us;
b=AoQj21sMFWt8DT6WHsOJ/+deZ+2dEdRnNOs8hVsqFIp5qqCbW06JsSUZSekc7fc6;

From the above headers you can confirm that domain key is working fine.

If you need to download domain key, go to http://sourceforge.net/projects/domainkeys
Find more documentations th Domain Key at : http://domainkeys.sourceforge.net
Well you will find more information about Domain Key at: http://antispam.yahoo.com/domainkeys

Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Recent Comments

I blog about anything new, Dedicated all for free, Put anything into the words, Share with You what I know. I write anything that I find interesting

Recent Comments

Soeharto Biography

On Nov-11-2008
Reported by Afrizal

Me and My friend

On Aug-13-2005
Reported by Afrizal

10 Biggest Mistakes In Writing My Blog

On Feb-17-2009
Reported by Afrizal

Apply Credit Card Orchard Bank online

On Nov-11-2008
Reported by Afrizal

Recent Posts