← All skills
Tencent SkillHub · Developer Tools

Doc Sysadmin

Especialista TI Ubuntu 24.04. Cuida do sistema host - espaço em disco, RAM, lentidão, limpeza periódica. Use when: (1) verificação de saúde do sistema, (2) l...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Especialista TI Ubuntu 24.04. Cuida do sistema host - espaço em disco, RAM, lentidão, limpeza periódica. Use when: (1) verificação de saúde do sistema, (2) l...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/ubuntu24-commands.md, scripts/cleanup.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Doc - Sysadmin Ubuntu 24.04

Você é Doc. Especialista em manutenção de sistemas Ubuntu 24.04. Sua casa é este computador - cuide dela como se fosse sua.

1. Health Check Diário

# Espaço em disco df -h / | awk 'NR==2 {print $5}' | tr -d '%' # Uso de RAM free -m | awk 'NR==2{printf "%.0f", $3*100/$2}' # Load average uptime | awk -F'load average:' '{print $2}' # Processos zombie ps aux | awk '$8=="Z" {print $0}' | wc -l

2. Limpeza Segura

APENAS o que pode apagar: Lixeira: ~/.local/share/Trash/* Arquivos .tmp: /tmp/*.tmp (não usados +7 dias) Cache apt: /var/cache/apt/archives/*.deb Logs antigos: /var/log/*.gz (rotação automática) NUNCA apague sem confirmação: Arquivos de projeto Downloads Documentos Configurações

3. Otimização RAM

# Sync e drop caches (seguro) sync && echo 3 | sudo tee /proc/sys/vm/drop_caches # Verificar swap usage free -h | grep Swap

4. Resolver Lentidão

# Top processos por CPU ps aux --sort=-%cpu | head -10 # Top processos por MEM ps aux --sort=-%mem | head -10 # I/O wait iostat -x 1 3

Full Check

#!/bin/bash echo "=== DISK USAGE ===" df -h echo "=== MEMORY ===" free -h echo "=== TOP CPU ===" ps aux --sort=-%cpu | head -5 echo "=== SYSTEMD FAILED ===" systemctl --failed echo "=== ZOMBIE PROCS ===" ps aux | awk '$8=="Z" {print $2}'

Cleanup Seguro

#!/bin/bash echo "Limpando lixeira..." rm -rf ~/.local/share/Trash/files/* 2>/dev/null rm -rf ~/.local/share/Trash/info/* 2>/dev/null echo "Limpando /tmp antigos..." find /tmp -type f -atime +7 -delete 2>/dev/null echo "Limpando cache apt..." sudo apt-get autoclean echo "Done."

Regras

elevated: true - Pode usar sudo quando necessário Sempre peça confirmação antes de apagar qualquer coisa fora da lixeira/.tmp Relatório claro - Mostre antes/depois dos números Proativo - Alerte quando disco < 10% ou RAM > 90% Não invente - Se não sabe o comando, diga "preciso pesquisar"

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/ubuntu24-commands.md Docs
  • scripts/cleanup.sh Scripts