# Proxmox - Apps Essenciais

* Uma listagem de Aplicativos e Serviços essenciais para instalar em seu Proxmox
    
* A ideia desta parte é listar aplicativos essenciais, para o dia a dia, que facilitam a vida, gerenciamento, manutenção e configuração de seu ambiente.
    

## lm-sensors

* **lm-sensors** - Verificação de Temperatura
    
    * exibição em texto da temperatura atual dos dispositivos que tiverem suporte e dependendo do seu sistema e hardware, tais como cpu, ssd, nvme, etc
        

```bash
apt install lm-sensors
```

```plaintext
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libsensors-config libsensors5
Suggested packages:
  fancontrol read-edid i2c-tools
The following NEW packages will be installed:
  libsensors-config libsensors5 lm-sensors
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 146 kB of archives.
After this operation, 518 kB of additional disk space will be used.
Do you want to continue? [Y/n]
```

* execução:
    

```bash
sensors
```

```plaintext
acpitz-acpi-0
Adapter: ACPI interface
temp1:        +27.8°C  (crit = +110.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +56.0°C  (high = +105.0°C, crit = +105.0°C)
Core 0:        +53.0°C  (high = +105.0°C, crit = +105.0°C)
Core 1:        +53.0°C  (high = +105.0°C, crit = +105.0°C)
Core 2:        +53.0°C  (high = +105.0°C, crit = +105.0°C)
Core 3:        +53.0°C  (high = +105.0°C, crit = +105.0°C)
Core 4:        +56.0°C  (high = +105.0°C, crit = +105.0°C)
Core 5:        +56.0°C  (high = +105.0°C, crit = +105.0°C)
Core 6:        +56.0°C  (high = +105.0°C, crit = +105.0°C)
Core 7:        +56.0°C  (high = +105.0°C, crit = +105.0°C)

nvme-pci-0100
Adapter: PCI adapter
Composite:    +47.9°C  (low  = -273.1°C, high = -273.1°C)
                       (crit = +124.8°C)
```

## htop

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1695321030070/d7b11140-265e-442f-ac38-6cf41db53a63.png align="center")

* **htop** - verificação de processos
    
    * Extremamente Leve e útil para ver carga e processos
        

```bash
apt install htop
```

```plaintext
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libnl-genl-3-200
The following NEW packages will be installed:
  htop libnl-genl-3-200
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 174 kB of archives.
After this operation, 446 kB of additional disk space will be used.
Do you want to continue? [Y/n]
```

* execução
    

```bash
htop
```

## s-tui

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1695321054124/a3a60a91-b381-4e81-9bfd-cdcd6f77b588.png align="center")

* **s-tui** - ótimo visualizador de processos, temperatura, consumo de energia, etc
    
    * utiliza python3, mas vale a pena
        
    * costumo retirar a exibição de todas as linhas (Cores) em resumo (sumaries) na lateral esquerda e deixar só o principal de cada categoria (Acpitz, PackageId, Avg Composite), ajudando na visualização geral
        
    * lembre-se de salvar as alterações, basta usar as setas e navegar nos menus do lado esquerdo
        

```bash
apt install s-tui
```

```plaintext
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  python3-psutil python3-urwid
Suggested packages:
  python-psutil-doc python-urwid-doc stress-ng | stress
The following NEW packages will be installed:
  python3-psutil python3-urwid s-tui
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 404 kB of archives.
After this operation, 2,122 kB of additional disk space will be used.
Do you want to continue? [Y/n]
```

* execução
    

```bash
s-tui
```

### Sugestões !?

Você conhece algum aplicativo que não está nesta listagem, deixe nos comentários, adoraria ler sua sugestão! 🙂👍

%%[buycoffee-fabio]
