From 8e24b6da3574d39512697df4d9ac36f12ec946fb Mon Sep 17 00:00:00 2001 From: piccihud Date: Sun, 16 Apr 2023 14:21:48 +0200 Subject: [PATCH] add hdparm in smartctl.md --- smartctl.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/smartctl.md b/smartctl.md index 7993136..6a0eecb 100644 --- a/smartctl.md +++ b/smartctl.md @@ -180,6 +180,32 @@ Probe time: 3'23" Reset: 0us / 1 = 0us ``` +### Testare la velocità del disco + +Il comando `hdparm` può essere utilizzato per misurare le prestazioni del disco rigido, inclusa la velocità di lettura e scrittura reale e la velocità della cache. + + +Ad esempio, per misurare le prestazioni del disco rigido, è possibile utilizzare il seguente comando: + +```bash +hdparm -t /dev/sda + + +sudo hdparm -t /dev/nvme0n1 + +/dev/nvme0n1: + Timing buffered disk reads: 3390 MB in 3.00 seconds = 1129.60 MB/sec +``` +Con l'opzione `-T` viene testata anche la cache: + +```bash +sudo hdparm -Tt /dev/nvme0n1 + +/dev/nvme0n1: + Timing cached reads: 19464 MB in 2.00 seconds = 9748.45 MB/sec + Timing buffered disk reads: 3446 MB in 3.00 seconds = 1148.21 MB/sec +``` + ## Collegamenti - [https://guide.debianizzati.org/index.php/Gestire_gli_HD:_stato_di_salute,_badblocks_e_ripristino_dati](https://guide.debianizzati.org/index.php/Gestire_gli_HD:_stato_di_salute,_badblocks_e_ripristino_dati)