Mulia Dengan Manhaj Salaf

Filed in Books 1 Comment

Allah Yang Mahamulia telah menurunkan kitab-Nya yang mulia melalui Malaikat Jibril ‘alaihis salam yang mulia kepada Rasul-Nya yang mulia Muhammad shallallaahu ‘alaihi wa sallam.
Allah Ta’ala berfirman, “Dan sungguh, inilah jalan-Ku yang lurus. Maka ikutilah! Jangan kamu ikuti jalan – jalan (yang lain) yang akan mencerai – beraikan kamu dari jalan-Nya. Demikianlah Dia memerintahkan kepadamu agar kamu bertaqwa”. (QS. Al-An’am:153)

Continue Reading

Fatwa – Fatwa Zakat

Filed in Books Leave a comment

Zakat merupakan ibadah maliyah (berkaitan dengan harta) yang Allah Ta’ala wajibkan kepada umat Islam sebagaimana tersebut dalam firman-Nya “Ambillah zakat dari harta mereka, guna membersihkan dan menyucikan mereka.” (QS. At-Taubah[9]:103).
Continue Reading

How to Stop Worrying and Start Living

Filed in International Books Leave a comment

THIS BOOK CAN CHANGE YOUR LIFE!
Through Dale Carnegie’s six-million-copy bestseller, recently revised, millions of people have been helped to overcome the worry habit. Dale Carnegie offers a aset of practical formulas you can ut to work today, in the fast paced world of the 1990s – formulas that will last a lifetime!

Continue Reading

Secure Shell – SSH

Filed in Linux System Leave a comment

Dynamic Port Forwarding :

ssh -D 1080 aji@proxy2.bpk.go.id

Date and Time

Filed in Linux System Leave a comment

Set localtime:
#ln -sf /usr/share/zoneinfo/Asia/Jakarta /etc/localtime

Check timezone:
#cat /etc/timezone

Check date and timezone:
#date -R

Mysql Commands

Filed in Network and Server 1 Comment

Reset root password
1. Stop mysql server
/etc/init.d/mysql stop
2. Start mysql server with safe mode and skip grant tables
#mysqld_safe –skip-grant-table
Continue Reading

Using update-rc.d

Filed in Linux System Leave a comment

Remove a service from all runlevel:
update-rc.d -f ssh remove

Tips for Postfix

Filed in Network and Server Leave a comment

Viewing current queue:
postqueue -p

Delete all deferred messages:
postsuper -d ALL deferred

Delete all message from admin@yahoo.com:
postqueue -p | grep admin@yahoo.com | cut -c 0-12 | tr -d [:blank:] |postsuper -d -

Whitelist IP:
Create or edit file: /etc/postfix/rbl_client_exceptions, then add IP that you want to whitelist. For example 98.139.91.0/32, you can write:
98.139.91 OK

Then, run this command:
postmap /etc/postfix/rbl_client_exceptions

Finally, restart postfix:
/etc/init.d/postfix restart

Iptables (Scratch)

Filed in Network and Server Leave a comment

I just want to access my web server from my local address:

iptables -I INPUT -p tcp --dport 80 -s ! 127.0.0.1 -j DROP -m comment --comment "Only for local address"

Squid’s General Information

Filed in Information Technology Leave a comment

Setting up a proxy configuration:
# export http_proxy=”http://username:password@host:port”

Reloading Squid’s configuration:
# squid -k reconfigure

TOP