-
Archives
- January 2010
- September 2009
- July 2009
- March 2009
- November 2008
- October 2008
- June 2008
- May 2008
- March 2008
- January 2008
- November 2007
- October 2007
- September 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
-
Meta
Category Archives: Linux
Installing java on CentOS
You’d think it would be harder, but it’s not. Not that it’s documented well anywhere, which is why I’m writing this. Go to java.com. Download the linux RPM installer for your cpu type. sh /path/to/downloaded.rpm.bin follow the bouncing ball. And … Continue reading
Posted in Computers, Linux
Leave a comment
Radmind Wizardry
How to add support for new hardware to an existing base load These directions describe how to add support for new hardware into an existing base load
cat a binary and screw up your terminal?
via unixtips.org When your term can’t display the correct char after you cat a binary file try the following command to reset it: echo CTRL-V ESC c
crib sheet: ssh single-login/no password
via: Robert Citek – crib sheet: ssh single-login/no password ( was Re: ssh-keygen ) How to set up a no-password ssh connection from A to B, where A && B == trusted machines
Posted in Computers, Linux, Mac OS X
3 Comments
deleting files with find
To delete files matching *searchstring*, use the following: user# find . -name “*searchstring*” -exec rm {} ; Probably a good idea to run it without -exec rm {} ; first to see what you’d be deleting. Oh, and the space … Continue reading
Rebuilding Ethernet drivers on a DL360 GL2
Quick notes for updating the bcm5700 driver on RedHat EL3 after updating the kernel…
Fedora Myth(TV)ology :: Welcome
Fedora Myth(TV)ology :: Welcome Getting MythTV running on Fedora – couldn’t get much more focused than that, huh? Pretty cool…
new vlan setup on redhat el3
1. create a startup script in /etc/sysconfig/network-scripts, using another vlan’d interface as a template (ifcfg-ethX.vlan) 2. create a routing table in /etc/sysconfig/network-scripts, using another vlan’d route as a template (route-ethX.vlan) 3. add the new route to /etc/iproute2/rt_tables using an unused … Continue reading
Setting MAC address on a VLAN interface, source-based routing, and kernel set routes
here’s a synopsis of what I’ve found, and how I got things working as desired (I know there are others in similar situations with VLAN that might find this useful)