Home | Public Key | HowTos | Links | Vital Signs

vanity head shot Home Public Key Public Key Links Vital Signs Valid XHTML 1.0 Transitional Valid CSS

Interesting links

Internet Access

In the Greater Louisville and Lexington areas, the premier old-school, no nonsense isp Iglou Internet Services offers dsl access, as well as dial-up access, with NO PROPRIETARY SOFTWARE REQUIRED!. They even offer UNIX SHELL ACCESS!

Hackers

Richard Stallman's Home Page

Eric Raymond's Home Page

Political

Net Neutrality

Tricks

Handy Sed Tricks NOTE: To input the '\t' (TAB character) from the commandline in bash, first hit Ctrl-V, then hit Ctrl-I.

Odds and Ends

_Linux_Kernel_in_a_Nutshell_ free for download! http://www.kroah.com/lkn/

From the above link, we see this very useful script for finding the kernel modules we need for a build:

#!/bin/bash
# find_all_modules.sh
#
#  Let the kernel tell us what we need
#  Now that we have gone through all of the steps of poking around in sysfs and
#  following symlinks to module names, here is a very simple script that will do all of
#  that work, in a different way:

for i in `find /sys/ -name modalias -exec cat {} \;`; do
   /sbin/modprobe --config /dev/null --show-depends $i;
   done | rev | cut -f 1 -d '/' | rev | sort -u

exit 0