From: Michael Prokop Date: Mon, 16 Jul 2007 19:16:23 +0000 (+0200) Subject: Added LinuxBIOS tip X-Git-Tag: 0.4.3~7 X-Git-Url: http://git.grml.org/?p=grml-tips.git;a=commitdiff_plain;h=6a0c429f760ae3bfcac1f6e0225e2289d939aeb9 Added LinuxBIOS tip --- diff --git a/debian/changelog b/debian/changelog index 276ca7f..29bc6ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +grml-tips (0.4.3) unstable; urgency=low + + * Added LinuxBIOS tip. + + -- Michael Prokop Mon, 16 Jul 2007 21:16:13 +0200 + grml-tips (0.4.2) unstable; urgency=low * Added some further tips (SSL debugging, lilo/grub, screenshot,...). diff --git a/grml_tips b/grml_tips index c1633bc..eca0b6d 100644 --- a/grml_tips +++ b/grml_tips @@ -2673,4 +2673,19 @@ iptables -A FORWARD -i eth0 -o eth0 -d hostB -p tcp --dport portB -j ACCEPT iptables -A FORWARD -i eth0 -o eth0 -s hostB -p tcp --sport portB -j ACCEPT iptables -t nat -A POSTROUTING -p tcp -d hostB --dport portB -j SNAT --to-source hostA -- +Flash BIOS without DOS/Windows: +Dump flash info and set the flash chip to writable: +# flashrom + +Backup the original BIOS: +# flashrom -r backup.bin + +Notice: the following step will overwrite your current BIOS! +So make sure you really know what you are doing. + +Flash the BIOS image: +# flashrom -wv newbios.bin + +Also check out LinuxBIOS: http://linuxbios.org/ +--