How to configure OpenSSH on Windows 7

I needed a simple ssh client for windows. Here’s what I did when installing OpenSSH, this worked for me, so hopefully will work for your install of ssh as well 🙂 Get OpenSSH for windows from sourceforge.net (http://sourceforge.net/projects/sshwindows/files/OpenSSH%20for%20Windows%20-%20Release/) Run the installer, accept defaults of set the options to your liking. Now SSH is installed but […]

Continue reading


How to convert UNIX datetime value to date/time string in OpenOffice Calc or Excel

To convert a UNIX datetime value to date/time string in OpenOffice Calc or Excel use this formula (assumes your datetime stamp is in the A1 cell of the current spreadsheet): =A1/86400+DATEVALUE(“1/1/1970”) If you want to test the above you may use the following simple C program: ======= #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> […]

Continue reading