Wednesday, March 30, 2011

fix for disappearing system tray icons

XP : HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\TrayNotify
VISTA/7: HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify

- Setelah itu delete IconStreams dan PastIconsStream
- Restart explore.exe (smadav-tool-system editor-apply & restart explore.exe)

Tuesday, March 29, 2011

rndc-OpenBSD 4.8

Generate configuration

#rndc-confgen
# Start of rndc.conf
key "rndc-key" {
        algorithm hmac-md5;
        secret "OOHUU7Jfc1lYydmaF+y+NA==";
};

options {
        default-key "rndc-key";
        default-server 127.0.0.1;
        default-port 953;
};
# End of rndc.conf

# Use with the following in named.conf, adjusting the allow list as needed:
# key "rndc-key" {
#       algorithm hmac-md5;
#       secret "OOHUU7Jfc1lYydmaF+y+NA==";
# };
#
# controls {
#       inet 127.0.0.1 port 953
#               allow { 127.0.0.1; } keys { "rndc-key"; };
# };
# End of named.conf

Buat file rndc.conf yg disimpan di /etc
#nano -w /etc/rndc.conf
key "rndc-key" {
        algorithm hmac-md5;
        secret "OOHUU7Jfc1lYydmaF+y+NA==";
};

options {
        default-key "rndc-key";
        default-server 127.0.0.1;
        default-port 953;
};

Sisipkan hasil confgen ke /var/named/etc/named.conf
#nano -w /var/named/etc/named.conf
 key "rndc-key" {
       algorithm hmac-md5;
       secret "OOHUU7Jfc1lYydmaF+y+NA==";
  };

  controls {
       inet 127.0.0.1 port 953
               allow { 127.0.0.1; } keys { "rndc-key"; };
  };

Coba hasilnya ...
#rndc reload
server reload successful