Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
linux/hdparm Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# hdparm
> Get and set SATA and IDE hard drive parameters.
> More information: <https://manned.org/hdparm>.
- Request the identification info of a given device:
`sudo hdparm -I /dev/{{device}}`
- Get the Advanced Power Management level:
`sudo hdparm -B /dev/{{device}}`
- Set the Advanced Power Management value (values 1-127 permit spin-down, and values 128-254 do not):
`sudo hdparm -B {{1}} /dev/{{device}}`
- Display the device's current power mode status:
`sudo hdparm -C /dev/{{device}}`
- Force a drive to immediately enter standby mode (usually causes a drive to spin down):
`sudo hdparm -y /dev/{{device}}`
- Put the drive into idle (low-power) mode, also setting its standby timeout:
`sudo hdparm -S {{standby_timeout}} {{device}}`
- Test the read speed of a specific device:
`sudo hdparm -tT {{device}}`