Apr 05 2012
Archive for the 'Misc' Category
Mar 11 2011
MRemote multi-tab remote connection manager
Not a technical post but a useful piece of software… I was pissed off having so many windows on my desktop while connecting to different remote services. Till I found MRemote that lets you manage all your network connections in a single multi tab window. You can create Remote desktop, SSH, telnet, VNC and many […]
Oct 05 2010
Force HTTPS Redirect in Apache
Configure Apache to redirect HTTP requests to HTTPS protocol. This can be achieved with mod_rewrite. RewriteCond %{HTTPS} off filters incoming requests which protocol isn’t HTTPS.
Aug 16 2010
GLPI Ticket User Group Auto Assignment
GLPI user has to select the group he belongs to when creating a ticket or else the field remains empty.This stored procedure automatically assigns all tickets to the user’s group. Setup a cron job on your Mysql server to run it as often as you need. Also check out how to do a full hardware […]
Oct 13 2009
Command History with Arrow Keys in ksh
Arrows aren’t used in ksh as a default. To enable command history like in Bash, add the following lines in the .profile or .kshrc file: ^P, ^N, etc aren’t one single character. Enter Ctrl-V and Ctrl-P to display them in vi. Auto-completion is only available for files, not commands. Press either twice on the escape key, […]