31 lines
409 B
Markdown
31 lines
409 B
Markdown
---
|
|
title: Hardware
|
|
description: Diagnostic of hardware problems
|
|
published: true
|
|
date: 2025-05-11T09:59:07.217Z
|
|
tags:
|
|
editor: markdown
|
|
dateCreated: 2025-01-06T11:31:14.429Z
|
|
---
|
|
|
|
# Hardware
|
|
Diagnostics of hardware problems in Linux
|
|
|
|
|
|
## Disk Space
|
|
|
|
analyses disk space with ncdu
|
|
|
|
```
|
|
ncdu
|
|
```
|
|
|
|
## Battery
|
|
Check the batteries health
|
|
```
|
|
sudo upower -i $(upower -e | grep BAT)
|
|
```
|
|
|
|
```
|
|
sudo tlp-stat -b
|
|
``` |