Some systems engineers and admins are reluctant to embrace version control, I aim to show it’s not a black art, and should be in the toolbox of all admins. The simplest thing to say about using git with github is that they combine to provide tools and a place for storing your code, scripts, config … Continue reading How to start using Git with Github as a Sysadmin
Posts
Cloud services for small business
The maturity and availability of cloud services at both infrastructure and application layers reinforces my view that now can be a time of technology led transition. Many business and individuals are looking at cloud offerings with the mandate to examine them for applicability to their own requirements. There are a few common points which might server as a … Continue reading Cloud services for small business
Looking at Chromebooks
Today Google unveils a new Chromebook in the form of 14" HP Pavilion Chromebook. It seems they may be gaining traction. For the curious, I have put together a small summary from my notes after attending a Google presentation on the subject. The Chromebook as an IT concept is an interesting thing as it steps … Continue reading Looking at Chromebooks
Conditionally setting DISPLAY variables in bash
A tiny snippet of useful bash shell code today, to help with setting your DISPLAY variable if integrating Cygwin/X into your Windows environment, add it to a .bashrc for effect. Launching X apps from the ‘Cygwin Terminal’ is smoothed as a result. #RT Check for XWin and set DISPLAY if present. ps -a | grep … Continue reading Conditionally setting DISPLAY variables in bash
Using the Unix Epoch timestamp for file naming
Another aide-mémoire today, illustrated via a small script. I was musing on file version numbering (yes I know about SVN et al, but sometimes they are overkill) and considered using the time represented as the number of seconds elapsed since the Unix Epoch, seems like a simple approach wrapped into the file and filename, what … Continue reading Using the Unix Epoch timestamp for file naming