Blog Archives

Quick and Easy Passwordless public-key auth

Need passwordless auth with ssh? Need it really really fast? 3 steps and you’re done. ssh-keygen -t rsa      (don’t enter a passphrase) ssh-copy-id -i ~/.ssh/id_rsa user@remotehost ssh user@remotehost Wasn’t that easy?

Tagged with: ,
Posted in Linux

Using a DRAC II on CentOS 5

This post chronicles my adventures trying to get a DRAC II card operational on my poweredge 4300 server running CentOS 5. This post also applies to most other linux distros, especially redhat-based distros. I will also document setting up remote

Tagged with: , ,
Posted in Linux

IRC via Telnet

Ever wanted to get on IRC without a client on the command line? Well you can, and it’s pretty easy, using IRC’s protocol syntax. All you need is a box with or without X, the telnet program (included by default

Tagged with: , ,
Posted in Linux

Ndiswrapper in a few lines

ndiswrapper -i yourdriver.inf ndiswrapper -l  #Ensure that it says “Driver Installed” and “Hardware Present” ndiswrapper  -m ndiswrapper -ma ndiswrapper -mi modprobe ndiswrapper …And you’re good to go! Feel free to run /etc/init.d/network restart if you feel like it.

Tagged with: ,
Posted in Linux