Monthly Archives: September 2006

Third Party Drivers in Remote Windows Installation Comments Off

There is this great software for doing remote unattended Windows installs called, well, Unattended. It allows you to boot/install different windows versions without any intervention which is great if you are doing a number of Windows installs. This is a bit different than MSFN’s Unattended install which mainly is done off of CD media. MSFN’s [...]

Dead linux users? View Comments

Not dead as in dead, but dead as in the user has logged out of the system and for some reason their shell is still open. This might happen if your system crashes before you can log out, there are network problems and you are disconnected, or a number of other reasons. This article explains how to log these “dead” shell users out.

Block brute force password attempts via SSH View Comments

If you are a system administrator of a linux system, you may find the following log entries familiar: Sep 15 02:00:30 sol sshd[16364]: Failed password for invalid user test from ::ffff: 61.167.x.x port 53382 ssh2 Sep 15 02:00:30 sol sshd[16365]: Failed password for invalid user test from ::ffff: 61.167.x.x port 53394 ssh2 Sep 15 02:00:30 [...]

PVR Sweetness: Envive E-Center Pro Comments Off

You have to check out the Envive E-Center Pro [eHomeUpgrade] home theater machine. It comes with Windows XP Media Center Edition (Vista Ultimate Ready) but I would rather throw Beyond TV on this puppy. Check out these beefy stats… E-Center Pro Features: Intel Viiv Certified Platform utilizing Intel Core 2 Duo Processors Up to 8GB [...]

Linux: Find text in a large number of files Comments Off

If you need to find a string in a file, you would typically use: grep -H “string to find” filename.ext However, grep doesn’t handle a large number of files well. If you specify grep “string” * or even grep “string” `find ./`you may find yourself facing this error: bash: /bin/grep: Argument list too long If [...]