Files
tldr/pages.tr/linux/dnf.md
2024-01-02 17:34:43 +01:00

33 lines
659 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# dnf
> RHEL, Fedora ve CentOS için paket yönetim aracı (yum'un yerini alır).
> Daha fazla bilgi için: <https://dnf.readthedocs.io>.
- Kurulu paketleri kullanılabilir en yeni sürümlere yükselt:
`sudo dnf upgrade`
- Anahtar kelimeler kullanarak paket ara:
`dnf search {{anahtar_kelimeler1 anahtar_kelimeler2 ...}}`
- Bir paketin ayrıntılarını göster:
`dnf info {{paket}}`
- Yeni bir paket kur:
`sudo dnf install {{paket1 paket2 ...}}`
- Bir paketi kaldır:
`sudo dnf remove {{paket1 paket2 ...}}`
- Kurulu paketleri listele:
`dnf list --installed`
- Verilen dosyayı hangi paketlerin sağladığını bul:
`dnf provides {{dosya}}`