X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=d0ac9e04c5c97472f2f83ceedbce4cb709a30482;hb=c12a0a17239d1fd0180a7a560eb488cdeabeaa59;hp=50fb3128c3f2eef65e0b69beb887bc88e403abf1;hpb=28c33c0d6b3c24e3fc81e30f8f9d0be0c8925619;p=grml-tips.git diff --git a/grml_tips b/grml_tips index 50fb312..d0ac9e0 100644 --- 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 +--