0Pricing
Linux Command Line Mastery · Lección

Supervisión de recursos del sistema: `df`, `du`, `free`

Compruebe el espacio en disco, el tamaño de los directorios y el uso de memoria para mantener su sistema optimizado.

Supervisión de recursos del sistema: `df`, `du`, `free` es una lección gratuita de Linux Command Line Mastery en CoddyKit. Esta es la lección 3 de 4. Puedes leer la lección completa abajo gratuitamente — luego la practicas en el navegador con un editor de código integrado y un tutor de IA 24/7. Forma parte de la ruta de aprendizaje de Linux Command Line Mastery, y tu progreso se sincroniza en la web y la app de CoddyKit. El curso de Linux Command Line Mastery incluye 4 lecciones en total.

Partes de esta lección aún no han sido traducidas y se muestran en inglés.

Why Monitor System Resources?

Keeping an eye on your system's resources is crucial for smooth operation. Just like a car needs fuel and oil, your computer needs enough disk space and memory to run efficiently.

Ignoring these can lead to slow performance, crashes, or even data loss.

Check Disk Space with `df`

The df command, short for "disk free", reports the amount of available disk space used by file systems.

It's your go-to command to see how much room is left on your partitions.

`df` Command in Action

Let's try df with the -h option for human-readable output. This makes sizes like gigabytes (GB) and megabytes (MB) easy to understand.

Run this command in your terminal:

df -h

Interpreting `df` Results

The output of df -h shows several columns:

  • Filesystem: The name of the disk partition.
  • Size: Total capacity of the partition.
  • Used: Space currently occupied.
  • Avail: Remaining free space.
  • Use%: Percentage of disk space used.
  • Mounted on: Where the filesystem is accessible in the directory tree.

Disk Usage with `du`

While df shows overall disk free space, du ("disk usage") estimates file space usage, primarily for specific files or directories.

It helps you find out which folders are taking up the most space.

`du` on a Directory

To see the total size of a directory in a human-readable format, use -s (summary) and -h (human-readable) with du. Replace /var/log with any directory you want to check.

du -sh /var/log

Detailed `du` Output

Want to see the size of subdirectories within a folder? Use --max-depth=N to limit the depth of the output. Here, we'll see direct subdirectories (depth 1).

du -h --max-depth=1 /home/user

Monitor Memory with `free`

Memory (RAM) is vital for your system's speed. The free command displays the total amount of free and used physical and swap memory in the system.

Keeping an eye on free memory helps prevent slowdowns.

`free -h` in Practice

Similar to df, using the -h option with free provides output that's much easier to read. It shows memory in KB, MB, or GB.

free -h

Resource Monitoring Check

You're running low on disk space and want to find which large directories are consuming it. Which command is best suited for this task?

Recap: System Resources

Great job! In this lesson, you learned how to monitor your Linux system's vital resources:

  • df: Check overall disk free space.
  • du: Estimate disk usage for files and directories.
  • free: Monitor physical and swap memory usage.

These commands are essential tools for maintaining a healthy and optimized system!

Preguntas frecuentes

¿La lección «Supervisión de recursos del sistema: `df`, `du`, `free`» es gratis?

Sí — el texto completo de «Supervisión de recursos del sistema: `df`, `du`, `free`» es gratis para leer aquí en la web. Para practicarla de forma interactiva (editor de código integrado y tutor de IA 24/7) y desbloquear el resto del curso de Linux Command Line Mastery, actualiza a CoddyKit PRO. El curso de Linux Command Line Mastery incluye 4 lecciones en total.

¿Qué aprenderé en «Supervisión de recursos del sistema: `df`, `du`, `free`»?

Compruebe el espacio en disco, el tamaño de los directorios y el uso de memoria para mantener su sistema optimizado. Practicas Linux Command Line Mastery con código real que ejecutas directamente en el navegador, y un tutor de IA 24/7 responde tus preguntas mientras trabajas en la lección.

¿Necesito experiencia previa para empezar Linux Command Line Mastery?

No se requiere experiencia previa. Linux Command Line Mastery en CoddyKit está estructurado para principiantes hasta estudiantes avanzados, así que puedes empezar aquí o desde el inicio y avanzar a tu ritmo. Esta es la lección 3 de 4.

¿Cuánto tiempo toma la lección «Supervisión de recursos del sistema: `df`, `du`, `free`»?

La mayoría de las lecciones de CoddyKit toman alrededor de 5–10 minutos. Cada una es compacta e interactiva, así que avanzas constantemente y retomas exactamente por donde dejaste en la web y la app.

¿Puedo escribir y ejecutar código en esta lección de Linux Command Line Mastery?

Sí. Cada lección de Linux Command Line Mastery incluye un editor de código integrado, así que escribes y ejecutas código real directamente en tu navegador y obtienes retroalimentación instantánea de IA — sin configuración local necesaria.

Todas las lecciones de este curso

  1. Comprensión de los procesos: `ps`, `top`, `htop`
  2. Gestión de procesos: `kill`, `bg`, `fg`
  3. Supervisión de recursos del sistema: `df`, `du`, `free`
  4. Prioridades de procesos con nice, renice y señales
← Volver a Linux Command Line Mastery