tldr/pages.tr/linux/pacman-remove.md

34 lines
997 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# pacman --remove
> Arch Linux paket yönetim aracı.
> Ayrıca bakınız: `pacman`.
> Daha fazla bilgi için: <https://man.archlinux.org/man/pacman.8>.
- Bir paket ve bağlılıklarını sil:
`sudo pacman --remove --recursive {{paket_ismi}}`
- Bir paketi ve onun hem bağlılıklarını, hem de konfigürasyon dosyalarını sil:
`sudo pacman --remove --recursive --nosave {{paket_ismi}}`
- Bir paketi telkin olmaksızın sil:
`sudo pacman --remove --noconfirm {{paket_ismi}}`
- Yetim (başka bir pakete bağlılık olarak indirilmiş ancak herhangi bir paket tarafından gerektirilmeyen) paketleri sil:
`sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)`
- Bir paketi ve ona bağlı olan tüm öbür paketleri sil:
`sudo pacman --remove --cascade {{paket_ismi}}`
- (Bir paketin silinme durumunda) Etkilenecek paketleri (silmeden) listele:
`pacman --remove --print {{paket_ismi}}`
- Bu alt komut için yardım göster:
`pacman --remove --help`