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

38 lines
953 B
Markdown
Raw 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.

# apt-get
> Debian ve Ubuntu paket yönetim aracı.
> Paket aramak için `apt-cache` komutunu kullanın.
> Daha fazla bilgi için: <https://manned.org/apt-get.8>.
- 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`