add hdparm in smartctl.md

This commit is contained in:
piccihud 2023-04-16 14:21:48 +02:00
parent 6d0a1003f1
commit 8e24b6da35
1 changed files with 26 additions and 0 deletions

View File

@ -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)