apt-get: add Indonesian translation (#12359)

* apt-get: add Indonesian translation

* apt-get: fix missed translation

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

* apt-get: fix missed translation

Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Reinhart Previano Koentjoro <reinhart_previano@yahoo.com>
main
Moch. Bima Pangestu 2024-03-07 18:18:45 +07:00 committed by GitHub
parent 05ebb39746
commit 035eb68c65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 37 additions and 0 deletions

37
pages.id/linux/apt-get.md Normal file
View File

@ -0,0 +1,37 @@
# apt-get
> Manajemen paket untuk Debian dan Ubuntu.
> Cari paket menggunakan `apt-cache`.
> Informasi lebih lanjut: <https://manpages.debian.org/latest/apt/apt-get.8.html>.
- Perbarui daftar paket yang tersedia beserta versinya (hal ini direkomendasikan untuk dijalankan sebelum menjalankan perintah `apt-get` yang lain):
`apt-get update`
- Pasang sebuah paket, atau perbarui ke versi terbaru yang tersedia:
`apt-get install {{paket}}`
- Hapus sebuah paket:
`apt-get remove {{paket}}`
- Hapus sebuah paket dan file konfigurasinya:
`apt-get purge {{paket}}`
- Perbarui semua paket yang terpasang ke versi terbaru yang tersedia:
`apt-get upgrade`
- Bersihkan repositori lokal, hapus file paket (`.deb`) yang sebelumnya gagal diunduh dan tidak bisa diunduh kembali:
`apt-get autoclean`
- Hapus semua paket yang tidak diperlukan kembali:
`apt-get autoremove`
- Perbarui paket yang terinstal (mirip `upgrade`), namun hapus paket yang tidak dipakai kembali dan pasang paket tambahan untuk memenuhi dependensi baru:
`apt-get dist-upgrade`