tldr/pages.tr/linux/apt-get.md

38 lines
978 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.

# apt-get
> Debian ve Ubuntu paket yönetim aracı.
> Paket aramak için `apt-cache` komutunu kullanın.
> Daha fazla bilgi için: <https://manpages.debian.org/latest/apt/apt-get.8.html>.
- Kullanılabilir paket ve versiyon listesini güncelleyin (diğer `apt-get` komutlarını çalıştırmadan önce kullanmanız önerilir):
`apt-get update`
- Bir paket yükleyin veya son sürüme güncelleyin:
`apt-get install {{paket}}`
- Bir paketi silin:
`apt-get remove {{paket}}`
- Bir paketi ve konfigürasyon dosyalarını silin:
`apt-get purge {{paket}}`
- Yüklü paketlerin hepsini son sürümlerine yükseltin:
`apt-get upgrade`
- Yerel depoyu temizleyin - kullanılmayan gereksiz paket dosyalarını (.deb) silin:
`apt-get autoclean`
- Artık gerekmeyen paketleri silin:
`apt-get autoremove`
- Yüklenmiş paketleri yükseltin (`upgrade` gibi), ancak gereksiz paketleri silin ve yeni bağımlılıkları memnun edecek ek paketler kurun:
`apt-get dist-upgrade`