From e3af8903ac9e1aaba7f704727449fe258f40b048 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 13 Feb 2011 08:06:30 +1100 Subject: [PATCH] README remove strace from example --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 6bc48c6..076b2d0 100644 --- a/README +++ b/README @@ -95,7 +95,7 @@ The cat command, which allows you to read/dump a iSCSI LUN to a file : $ LD_PRELOAD=./bin/ld_iscsi.so cat iscsi://127.0.0.1:3262/iqn.ronnie.test/2 >copy_of_iscsi_lun Or using dd even : -LD_PRELOAD=./bin/ld_iscsi.so strace -o x -f dd if=iscsi://127.0.0.1:3262/iqn.ronnie.test/2 of=copy_of_LUN bs=10M count=1 bs=1M count=10 +LD_PRELOAD=./bin/ld_iscsi.so dd if=iscsi://127.0.0.1:3262/iqn.ronnie.test/2 of=copy_of_LUN bs=10M count=1 bs=1M count=10 The LD_PRELOAD hack is incomplete and needs more functions to be intercepted before becomming fully functional. Patches welcome!