Added tip: Show what happens on /dev/sda0
[grml-tips.git] / grml_tips
index 5cce08e..4957e8b 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -3057,3 +3057,11 @@ umount -l /cdrom
 eject /dev/cdrom
 echo b > /proc/sysrq-trigger
 -- 
+Show what happens on /dev/sda0:
+
+# mount the debugfs to relay kernel info to userspace
+mount -t debugfs none /sys/kernel/debug
+
+# is a convenient wrapper arround blktrace and blkparse
+btrace /dev/sda0
+--