Network Time Protocol Sync with External Server on Windows Server

configure / set network time server : net time /setsntp:0.pool.ntp.org start the network time services : net stop w32time net start w32time check whether network time is in sync : net time /querysntp

windows 2000 – command line (cmd) command auto completion

By default, windows 2k server does not activate this function. Do this to activate it : start regedit goto HKEY_LOCAL_MACHINESOFTWAREMicrosoftCommand Processor change the keyword “CompletionChar” from 64 to 9 close all command line window and start and new window Voila!

mount hfsplus (mac os file system) under Debian linux

Have an external hard disk with hfsplus or hfs+ partition on it? This is how you can mount it under linux (specifically, Debian) : in os x : disable journaling in the partition/external hdd in disk utility or use run…

How To Generate a Certificate Signing Request (CSR) for an SSL Certificate

This short tutorial is for Apache2.x + OpenSSL It’s advice to make a special directory for certificate for easy management and control. Create a new directory; mkdir -p /path-to-dir/sslcerts/example.takizo.com And now cd to your working directory to start generate CSR…

Generate apache SSL Sign Key

Quick Tips for Apache’s SSL generate new key openssl req -new > takizo.cert.csr disable passphrase for generated the key: openssl rsa -in privkey.pem -out takizo.cert.key convert request into signed cert openssl x509 -in takizo.cert.csr -out takzio.cert.crt -req -signkey takizo.cert.key -days…