- Published:
- September 24, 2006 – 9:40 pm
- Author:
- By Dave
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 site is still a great source of information on these types of installs but we are focusing on the network Unattended software since we are too lazy to have to/want to physically be at the datacenter to do the installs! If the windows included drivers.cab does not include your drivers, then once unattended (I’ll refer to the sourceforge network version of unattended from now on) installs windows, you will not be able to use the network card to access the PC any more. Therefore, you need a way to install 3rd party drivers directly into….
Categories: System Administration,Windows
Tagged: USD
- Published:
- September 22, 2006 – 8:04 am
- Author:
- By Dave
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.
Categories: Linux,System Administration
Tagged: 17033, Linux, ssh server
- Published:
- September 20, 2006 – 11:40 pm
- Author:
- By Dave
If you are a system administrator of a linux system, you may find the following log entries familiar: 12345Sep 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 sol sshd[16366]: Failed password for invalid user test from ::ffff:61.167.x.x port 53396 ssh2 Sep 15 02:00:28 sol sshd[16366]: Invalid user test from ::ffff: 61.167.x.x Sep 15 02:00:28 sol sshd[16370]: Invalid user test from ::ffff:61.167.x.x Many, many times over. These are caused by an brute force attack from the remote host. Most likely this is another compromised machine, checking your machine for easy to guess username and password combinations. It could be someone manually trying to run a password cracking program on your ssh server too. In either case, the remote system really has no business….
Categories: Linux,Programs,Security,Shell,System Administration
Tagged: firewall, linux system, ssh server
- Published:
- September 19, 2006 – 10:42 pm
- Author:
- By Dave
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 DDR2 @ 677MHz or 4GB of DDR2 @ 800MHz Memory Windows Media Center 2005, Vista Ultimate Ready Also available with EnviveOS 2 NTSC Tuners and 2 ATSC Tuners under MCE 2005 4 NTSC Tuners and 4 ATSC Tuners under EnviveOS* 500GB to 4.5TB (6 x 750GB SATAII) of Storage, RAID Optional DVI/HDMI Video Output with HDCP Support, Optional Dolby Home Theater Certified High Definition Audio featuring 7.1 Audio Output with SPDIF Dual Layer DVD+/- RW Standard, Blu-ray Disc Drive optional, HD-DVD drive Available Late Q4 ‘06 Rack mounting Kit, Optional Gigabit (10/100/1000 Mbits/sec) LAN powered….
Categories: Site Updates
Tagged: 2 Duo Processors, Gigabit, HDMI, Intel, Media Center, RAID, Windows Media Center
- Published:
- September 17, 2006 – 6:14 pm
- Author:
- By Dave
If you need to find a string in a file, you would typically use: 1grep -H "string to find" filename.ext However, grep doesn’t handle a large number of files well. If you specify 1grep "string" * or even 1<em>grep "string" `find ./`</em> you may find yourself facing this error: 1bash: /bin/grep: Argument list too long If you need to search for a string in a lot of files then you can use a simple bash script to do the searching for you. In this sample, I am looking for a string “sample string” in a directory named “./sample/”: 1for i in `find ./sample/`; do grep -H "sample string" $i; done This uses the find command to do the searching. It actually returns a list of filenames, which we can then grep one-by-one. The -H option tells grep to let us know the filename it found the string in so we….
Categories: Site Updates
Tagged: Linux
- Published:
- September 17, 2006 – 5:07 pm
- Author:
- By Dave
Here is a handy little shortcut I recently figured out (it took me long enough, didn’t it!). You can mount an ISO image as a directory in linux. Very nice for when you are remote and want to have a CD on that system. 1mount -t iso9660 -o loop imagename.iso /mnt/isoimage
Categories: Linux,System Administration
Tagged: Linux
- Published:
- September 16, 2006 – 8:36 am
- Author:
- By Dave
Don’t you hate it when your browser locks up because you unknowlingly clicked on a PDF File? Let’s face it – Adobe’s PDF Format rocks but the reader takes way to long to load and also locks your PC up. Foxit Software just released Foxit PDF Reader 2.0. If you haven’t tried it already, you need to get this software (Windows Only). Trust me, you won’t be dissapointed. Download Foxit PDF Reader 2.0
Categories: Programs,System Administration,Windows
Tagged: adobe, Foxit Software