Free networking video tutorials

Had this one on quite a while ago, but since it got lost with my old s9y stuff ill repost it 😉

cbt4free.org features some very good video tutorials for various network administration tasks such as DNS and Webservers in both Linux and Windows environments. These videos will only supply you with very basic knoledge but are a good start.

You will also get an impression on the differences of administrating a Linux and a Windows Server (in case you havent noticed yet 😉 )

Asus Eee sales starting in Taiwan

Asus has released its ultra mobile low cost notebook eee 701 in 4 different versions varying in the amount of Ram and the size of the solide state hard disk. Sales are so far limited to Taiwan but the eee will definitely hit the European market this year.

The cheapest eee features 256 MB of DDR2 ram and a 2GB solid state disk at around 170€ whereas the top model consists of a 4GB solid state disk and 512 MB ram at around 300€. So far, these are the prices in Taiwan so there is no definite price tag for the market in Europe yet. The batteries will be between 4800 and 5200 mA which should keep the notebook powered on between 2,8 and 3,5 hours.

Check out these videos on youtube on the eee presentations so far:

Asus Eee 701 Preview

Asus Eee PC Live Demo

Visualizing logfiles

glTail is an attempt at visualizing logfiles in an interesting, animated way.

The script was written in ruby and uses opengl to display the log animations.

Not quite informative put perhaps a nice artistic attempt. In the real world, nothing beats the standard tools such as grep, tail and otherswhen it comes to analyzing log files.

Check out glTail at fudgie.org

Here is a video to get a first view…

[q&d] annoying system bell

The system bell is one of the most annoying features on many Linux installations. When an error occurs regarding keyboard input, the system will response with an annoying beep. If you use the tab function on the console this feature can drive you crazy….

There are 2 ways to shut up your box:

In order to change the setting system-wide, add following line to /etc/inputrc:

bell-style none

you can also receive a visible response (flashing screen) by setting the parameter to:

bell-style visible

If you want to change this setting for a specific user, go to a users home directory and create the file .inputrc and add one of the above options to the configuration file.

[q&d]: Generating a squid acl arplist from dhcp.conf

Here is a quick and dirty method for creating an arplist for a squid acl rule from static dhcp.conf entries:

cat /etc/dhcp3/dhcp.conf | grep 00: | cut -d " " -f5 | cut -d ";" -f1 > /etc/squid/arplist

Lets take a closer look at a default dhcp.conf entry for static adressing:

host mypc {
hardware ethernet 00:01:02:03:04:05;
fixed-address 192.168.1.10;
}

  • grep will fish out the mac addresses with the identifier 00:
  • the first cut will reduce output to 00:01:02:03:04:05;
  • the second cut removes the semi column from the output
  • output is written into a file

If you are using customized config files, you will need to apply the command properly (duh!)

Including the acl list in your squid.conf

acl mylist arp "/etc/squid/arplist"
http_access allow
mylist

Plug and … be happy/surprised/whatever

Just bought a random 12€ 5.1 surround pci sound card at a hardware retailer in order to provide my moms ubuntu workstation with sound functionality.

Well, inserting the sound card in the motherboard was just about it…

Finally, plug and play is working the way it always was intended to (since 1995 😉 )

Btw. Gutsy has now reach final beta stage and is due to be released on October 18th.