
* wl-copy, wl-paste: fix invalid command options --paste-once is valid for wl-copy, not valid for wl-paste --clear is not valid for wl-paste * wl-copy, wl-paste: add Turkish translation * atool: add Turkish translation * dnf: add Turkish translation
37 lines
709 B
Markdown
37 lines
709 B
Markdown
# dnf
|
||
|
||
> RHEL, Fedora ve CentOS için paket yönetim aracı (yum'un yerini alır).
|
||
> Daha fazla bilgi: <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_kelimeler}}`
|
||
|
||
- Bir paketin ayrıntılarını göster:
|
||
|
||
`dnf info {{paket}}`
|
||
|
||
- Yeni bir paket kur:
|
||
|
||
`sudo dnf install {{paket}}`
|
||
|
||
- Yeni bir paket kur ve tüm soruları otomatik evet olarak yanıtla:
|
||
|
||
`sudo dnf -y install {{paket}}`
|
||
|
||
- Bir paketi kaldır:
|
||
|
||
`sudo dnf remove {{paket}}`
|
||
|
||
- Kurulu paketleri listele:
|
||
|
||
`dnf list --installed`
|
||
|
||
- Verilen dosyayı hangi paketlerin sağladığını bul:
|
||
|
||
`dnf provides {{dosya}}`
|