From 035eb68c65a13b290c012a2ff2bc280b18eec8cf Mon Sep 17 00:00:00 2001 From: "Moch. Bima Pangestu" Date: Thu, 7 Mar 2024 18:18:45 +0700 Subject: [PATCH] apt-get: add Indonesian translation (#12359) * apt-get: add Indonesian translation * apt-get: fix missed translation Co-authored-by: K.B.Dharun Krishna * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-get: fix missed translation Co-authored-by: Reinhart Previano Koentjoro --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Reinhart Previano Koentjoro --- pages.id/linux/apt-get.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages.id/linux/apt-get.md diff --git a/pages.id/linux/apt-get.md b/pages.id/linux/apt-get.md new file mode 100644 index 000000000..fa24ade3a --- /dev/null +++ b/pages.id/linux/apt-get.md @@ -0,0 +1,37 @@ +# apt-get + +> Manajemen paket untuk Debian dan Ubuntu. +> Cari paket menggunakan `apt-cache`. +> Informasi lebih lanjut: . + +- 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`