From 53900dfcb5c6a4ca7f35208765243bebd85b5f7f Mon Sep 17 00:00:00 2001 From: jdubois Date: Fri, 3 Apr 2020 14:45:20 +0200 Subject: [PATCH] Correction dd tailles de fichiers dummy --- TipsShell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TipsShell.md b/TipsShell.md index 17de0473..b77d3aea 100644 --- a/TipsShell.md +++ b/TipsShell.md @@ -545,13 +545,13 @@ Pour tester les performances d'un FTP ou autre on a besoin d'envoyer un fichier Pour un fichier de 10Mio : ~~~ -dd if=/dev/zero of=10M.bin bs=1024 count=0 seek=$[1024*100] +dd if=/dev/zero of=10M.bin bs=1024 count=0 seek=$[1024*10] ~~~ Pour 100Mio : ~~~ -dd if=/dev/zero of=100M.bin bs=1024 count=0 seek=$[1024*1000] +dd if=/dev/zero of=100M.bin bs=1024 count=0 seek=$[1024*100] ~~~ Pour 1Gio :