Marshall's Weblog

Embiggen Your Mind

Marshall's Weblog header image 4

Entries Tagged as 'Linux'

Unix Haters Handbook

March 27th, 2006 · No Comments

I just found out that the The Unix Haters Handbook is available free for download. It is a compilation of material from users of Unix systems who were frustrated with the way Unix worked.

[Read more →]

Tags: Books · Linux

V for Very Entertaining

March 26th, 2006 · No Comments

I went and saw V for Vandetta on Saturday. It reminded me a lot of 1984, which is still probably the most engrossing and grimm book I have ever read. Overall, the story was great, the cinematography was amazing, and the acting was adequate.
Sticking with the Alan Moore theme (the original creator of V), [...]

[Read more →]

Tags: Books · Linux · Movies · Random Linkage

System Administrators Song

January 3rd, 2006 · 1 Comment

You never know when you will need to make your sys-admin laugh.

[Read more →]

Tags: Linux · Mac

Immutable Files in Linux

November 13th, 2005 · No Comments

Oops, looks like I never posted this…
I did this on my Linux box a while back and could not figure out how to unset it months later when I actually wanted to delete the file.

[Read more →]

Tags: Linux

World of Warcraft

June 13th, 2005 · No Comments

Here is a funny video about the WOW effect. (May not be work safe, you definately need to hear the sound)
The neat thing about the video is that it runs on Flumotion’s streaming server ans is viewable through a java applet in your web browser (unless you are using lynx).

[Read more →]

Tags: Linux · Random Linkage

2004 POV-Ray Competition

May 31st, 2005 · No Comments

The 2004 POV-Ray Competition results are up, complete with the source for the renderings.

[Read more →]

Tags: Linux · Random Linkage

Searching in Files Using awk and grep

May 18th, 2005 · 2 Comments

Sometimes it is handy to have a list of files which contain a certain string (or a regex). You can combine grep and awk in the following manner:
grep -H “string to search for” *.txt | awk -F: ‘{ print $1 }’
The -H option in grep makes it display the file name before the text that [...]

[Read more →]

Tags: Linux · Programming