Add grml-stable repository tip, update debian packaging, drop .hgtags
[grml-tips.git] / grml_tips
index 3ff381b..c62e22a 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -1271,9 +1271,17 @@ via using grml nodma at the bootprompt.
 -- 
 Write a Microsoft compatible boot record (MBR) using ms-sys
 
-Write a Windows 2000/XP/2003 MBR to device:
+Write a Windows 2000/XP/2003 MBR to device:
 
 # ms-sys -m /dev/ice
+
+Notice: grab ms-sys from http://ms-sys.sourceforge.net/ - demo:
+
+ wget http://surfnet.dl.sourceforge.net/sourceforge/ms-sys/ms-sys-2.1.3.tgz
+ unp ms-sys-2.1.3.tgz
+ cd ms-sys-2.1.3
+ make
+ ./bin/ms-sys ...
 -- 
 Use a Vodafone 3G Datacard (UMTS) with Linux:
 
@@ -3124,7 +3132,13 @@ deb http://localhost:9999/debian  unstable  main contrib non-free
 use approx in grml-debootstrap like:
 % grml-debootstrap -r lenny -t /dev/sda1 -m http://127.0.0.1:9999/debian
 -- 
-Simple webserver with python
+Simple webserver with python:
 
 % python -m SimpleHTTPServer
 -- 
+Upgrade only packages from the grml-stable Debian repository:
+
+echo 'deb http://deb.grml.org/ grml-stable main' > /etc/apt/grml-stable.list
+apt-get -o Dir::Etc::SourceList=/etc/apt/grml-stable.list update
+apt-get upgrade
+--