Fix typo in donation tag
[grml-tips.git] / grml_tips
index 50fb312..d0ac9e0 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -342,11 +342,11 @@ See: http://www.michael-prokop.at/computer/samsung_x20.html
 -- 
 Development information regarding grml:
 
-  http://grml.supersized.org/
+  http://blog.grml.org/
 
 Tags: blog, grml, developmnet
 -- 
-Contact grml team:
+Contact Grml team:
 
 #grml on irc.freenode.org - http://grml.org/irc/
 http://grml.org/contact/
@@ -363,7 +363,7 @@ Help us - donate!
 
 http://grml.org/donations/
 
-Tags: grml, dontations
+Tags: grml, donation
 -- 
 Commercial support / system administration / adjusted live-cds:
 
@@ -503,7 +503,7 @@ Grep with highlighting:
 % grep --color=auto ...
 % hgrep ...
 
-Tags: grep, color, highlighte
+Tags: grep, color, highlight
 -- 
 Extract matches when grepping:
 
@@ -601,7 +601,7 @@ or
 # loadkeys i386/qwertz/de-latin1-nodeadkeys.kmap.gz # console
 % setxkbmap de                                      # X11
 
-Tags: languae, keyboard, configuration
+Tags: language, keyboard, configuration
 -- 
 Switch setting of caps-control key (switch between ctrl + shift) on keyboard:
 
@@ -3469,3 +3469,28 @@ https://wiki.archlinux.org/index.php/Install_from_Existing_Linux
 or
 wget http://tokland.googlecode.com/svn/trunk/archlinux/arch-bootstrap.sh
 -- 
+Export blockdevices via AoE (ATA over Ethernet):
+
+% vblade -m 11:22:33:44:55:66 160 2 eth0 /dev/sdb1
+
+Allow the host with the mac address 11:22:33:44:55:66 to access /dev/sdb1
+via eth0, using the shelf and slot numbers 160 and 2. These numbers are
+arbitrary but should be unique within the network.
+
+A word of warning: AoE is prone to all kind of nasty ethernet attacks,
+especially arp spoofing. Do not use in hostile networks.
+
+Tags: aoe, blockdevice, export, server
+-- 
+Access blockdevices via AoE (ATA over Ethernet):
+
+% sudo aoe-discover
+
+and the device should show up under /dev/etherd/. If your shelf and
+slot numbers re 160 and 2 the device will be /dev/etherd/e160.2
+
+A word of warning: AoE is prone to all kind of nasty ethernet attacks,
+especially arp spoofing. Do not use in hostile networks.
+
+Tags: aoe, blockdevice, export, client
+--