Add 'Install Archlinux using Grml'
[grml-tips.git] / grml_tips
index 2b31c32..1d2db86 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -627,7 +627,7 @@ Read BIOS:
 -- 
 Read HTTP via netcat:
 
-echo "GET / HTTP/1.0\r\n\r\n" | netcat $DOMAIN 80
+echo -e "GET / HTTP/1.1\r\nHost: $DOMAIN\r\n\r\n" | netcat $DOMAIN 80
 -- 
 Get X ressources for specific program:
 
@@ -3081,6 +3081,10 @@ btrace /dev/sda0
 Convert Flash to Avi:
 
 % ffmpeg -i input.flv output.avi
+
+Extract MP3 from Flash file:
+
+% for i in *.flv; do ffmpeg -i $i -acodec copy ${i%.flv}.mp3 ; done
 -- 
 Usage example for cryptsetup / -luks encrypted partition on LVM:
 
@@ -3176,3 +3180,13 @@ Simple mailserver with python:
 
 % python -m smtpd -n -c DebuggingServer localhost:1025
 -- 
+finger via netcat:
+
+echo $USER | nc $HOST 79
+-- 
+Install Archlinux using Grml:
+
+https://wiki.archlinux.org/index.php/Install_from_Existing_Linux
+or
+wget http://tokland.googlecode.com/svn/trunk/archlinux/arch-bootstrap.sh
+--