X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=c62e22a1c794a2a090244e3b27735b98cb567cec;hb=ff31f67f4e522a2b68a8b8aa0ca51aca74a69124;hp=3ff381bf88a0abec8e03fb018213812ee47d1807;hpb=cd7ed4463cc209cf06ea07a4e397dc39148c0901;p=grml-tips.git diff --git a/grml_tips b/grml_tips index 3ff381b..c62e22a 100644 --- 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 a 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 +--