Category O/S

install firegl 5600 server 2008

Installing drivers for the firegl 5600 on windows server 2008 can be a bitch.  Here’s the fast and easy solution! Steps: Download the Drivers from HP’s website (click here) Extract the .exe with 7zip Press Window Key + Pause Break…

TouchSmart 4 fix 9993 error

That error occurs because of HP’s script to block folks from installing the app. Here’s the fix The easiest way around this is to just install the application update 1. download the update (first link below) to your machine (file…

fix 401.3 IIS WordPress PHP Upload

How do you fix 401.3 IIS WordPress PHP Upload ? Issue After uploading a file via WordPress you get prompted for username and password (due to IIS 6 and php being the backend). Details On a Microsoft platform utilizing IIS,…

howto install gnome centos

howto install gnome centos? yum install groupinstall gnome-desktop alternatively: To install KDE Desktop, type this: yum groupinstall “X Window System” “KDE (K Desktop Environment)”   To install Gnome Desktop, type this: yum groupinstall “X Window System” “GNOME Desktop Environment”  …

linux eternal bash history all users secured

I use this on my unix/linux boxes for eternal bash history for all users (place in /etc/bashrc) if [ “$BASH” ]; then export HISTTIMEFORMAT=”%Y-%m-%d_%H:%M:%S ” export PROMPT_COMMAND=”${PROMPT_COMMAND:+$PROMPT_COMMAND ; }”‘echo “`date +’%y.%m.%d-%H:%M:%S:’`” $USER “(“$ORIGINAL_USER”)” “COMMAND: ” “$(history 1 | cut -c8-)”…