X-Git-Url: http://git.grml.org/?p=grml-tips.git;a=blobdiff_plain;f=grml_tips;h=4fa526361d41e0573e0c2fbaf905600fa4fb113c;hp=4957e8b61411db08e230bcf2f24d7bcf9a5121da;hb=4c8e7332cd1a7b92a85de64d90273ad5845821df;hpb=a47c53ab7e201864c4605343a2ab24a32521c6a9 diff --git a/grml_tips b/grml_tips index 4957e8b..4fa5263 100644 --- a/grml_tips +++ b/grml_tips @@ -3065,3 +3065,26 @@ mount -t debugfs none /sys/kernel/debug # is a convenient wrapper arround blktrace and blkparse btrace /dev/sda0 -- +Convert Flash to Avi: + +% ffmpeg -i input.flv output.avi +-- +Usage example for cryptsetup / -luks encrypted partition on LVM: + +volume group name: x61 +logical volume name: home + +echo "grml-crypt_home /dev/mapper/x61-home none luks" >> /etc/crypttab +Start cryptdisks +mount /dev/mapper/grml-crypt_home /mnt/test +-- +fdisk/parted/... complains with something like +'unable to open /dev/sda - unrecognised disk label'?! + +See http://grml.org/faq/#fdisk => + +* use /sbin/fdisk.distrib from util-linux +* switch to sfdisk, cfdisk,... +* use parted's mklabel command (but please read the + parted manual before executing this command) +--