X-Git-Url: https://git.grml.org/?a=blobdiff_plain;ds=inline;f=grml_tips;h=93b3037d1470abd6b14ce7196f2ea38828df9520;hb=1250703e8644b41244dfc58171a0aa4c9272e5b6;hp=3ff381bf88a0abec8e03fb018213812ee47d1807;hpb=cd7ed4463cc209cf06ea07a4e397dc39148c0901;p=grml-tips.git diff --git a/grml_tips b/grml_tips index 3ff381b..93b3037 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,21 @@ 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 -o Dir::Etc::sourceparts=/doesnotexist update +apt-get upgrade +-- +Install Centos into a directory: + +% febootstrap centos-5 directory http://mirror.centos.org/centos-5/5.3/os/i386/ +-- +Install Fedora into a directory: + +% febootstrap fedora-11 target_directory +--