X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=e30244ea048ca2688096e347e849c6d021ad88ce;hb=6365875c9bf3f74073be81d2cce795f8bb739312;hp=50fb3128c3f2eef65e0b69beb887bc88e403abf1;hpb=28c33c0d6b3c24e3fc81e30f8f9d0be0c8925619;p=grml-tips.git diff --git a/grml_tips b/grml_tips index 50fb312..e30244e 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/ @@ -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 +--