md's profileMy WorksBlogLists Tools Help

Blog


    October 25

    How to Install Grub If corrupted or after windows installation.

    Steps are given bellow:
    1. Boot your system with Debian Bootable CD   
    ** Important: Let the boot process complete so the Hard Drive can Load.
    2. Press ALT+F2 ie. go to console 2.

     mkdir /debian
     mount /dev/sdx /debian
     chroot /debian
     grub
     root (hd0,0)
     setup (hd 0)


    October 15

    Stop Double Bounce in qmail!!!

    spam has been a great problem now a days. If you use qmail u must experiencing some irritating double bounce problem.
    here is the little tricks to tune your qmail…

    create a dummy mail address like dump.mail@yourdomain.com

    Then edit .qmail file of the address that u have created that is dump.mail
    remove ./Maildir
    and add the following
    |exit 0
    then add the dump.mail@yourdomain.com to the /var/qmail/control/doublebouceto
    Ohhhhhhhh… relief!! for a while…..

    October 09

    valid User Check in Qmail

    Hi all, here is little tuning for small qmail box with for valid user checking.

    download patch to qmailsource directoryor anywhere you want.

    wget http://code.dogmap.org/qmail/qmail-1.03-realrcptto-2006.12.10.patch
    patch < qmail-1.03-realrcptto-2006.12.10.patch

    make
    qmailctl stop
    make setup check

    add the following at at /etc/tcp.smtp

    :allow,QMAILRRTDENYALL="1"

    save and exit.

    qmailctl cdb
    qmailctl start

    WOW its works for me hope it will for you....

    hwclock Problem..in debian etch..

    Hi all...i have continiously facing the thing that your clock setting may changed when your debian box reboot.

    Here is the simple solution to get hold of it......

    First Check using

    hwclock

    Output:

    select() to /dev/rtc to wait for clock tick timed out 

    So Lets Do the Trick....

    mv /sbin/hwclock /sbin/hwclock.dist

    touch /sbin/hwclock vi /sbin/hwclock

    add the following:
    #!/bin/sh /sbin/hw
    clock.dist --directisa "$@"
    save & exit
    chmod +x /sbin/hwclock
    vi /etc/default/rcS
    append the following line
    HWCLOCKPARS="--directisa"
    save and exit
    Thats all...done.