0Pricing
Linux Command Line Mastery · Ders

Sistem Kaynaklarını İzleme: `df`, `du`, `free`

Sisteminizi en iyi durumda tutmak için disk alanını, dizin boyutlarını ve bellek kullanımını denetleyin.

Sistem Kaynaklarını İzleme: `df`, `du`, `free`, CoddyKit'te ücretsiz bir Linux Command Line Mastery dersidir. Bu, 4 dersinin 3. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Linux Command Line Mastery öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Linux Command Line Mastery kursu toplamda 4 dersten oluşur.

Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.

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!

Sıkça Sorulan Sorular

“Sistem Kaynaklarını İzleme: `df`, `du`, `free`” dersi ücretsiz mi?

Evet — “Sistem Kaynaklarını İzleme: `df`, `du`, `free`” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Linux Command Line Mastery kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Linux Command Line Mastery kursu toplamda 4 dersten oluşur.

“Sistem Kaynaklarını İzleme: `df`, `du`, `free`” dersinde ne öğreneceğim?

Sisteminizi en iyi durumda tutmak için disk alanını, dizin boyutlarını ve bellek kullanımını denetleyin. Linux Command Line Mastery ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.

Linux Command Line Mastery öğrenmeye başlamak için deneyim gerekli mi?

Önceden deneyim gerekmez. CoddyKit'te Linux Command Line Mastery, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 3. dersidir.

“Sistem Kaynaklarını İzleme: `df`, `du`, `free`” dersi ne kadar sürer?

Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.

Bu Linux Command Line Mastery dersinde kod yazıp çalıştırabilir miyim?

Evet. Her Linux Command Line Mastery dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.

Bu kursun tüm dersleri

  1. Süreçleri Anlama: `ps`, `top`, `htop`
  2. Süreçleri Yönetme: `kill`, `bg`, `fg`
  3. Sistem Kaynaklarını İzleme: `df`, `du`, `free`
  4. nice, renice ve Sinyallerle İşlem Öncelikleri
← Linux Command Line Mastery Sayfasına Dön