From 6ba1707fea7fee66298973cb7641a9f21dd2c18b Mon Sep 17 00:00:00 2001 From: "Moch. Bima Pangestu" Date: Thu, 7 Mar 2024 18:20:20 +0700 Subject: [PATCH] add-apt-repository, apt-cache: add Indonesian translation (#12357) * add-apt-repository: add Indonesian translation * apt-cache: add Indonesian translation * add-apt-repository: fix missed translation * apt-cache: fix missed translation * apt-cache: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * add-apt-repository: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-cache: fix missed translation Co-authored-by: K.B.Dharun Krishna * add-apt-repository: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * add-apt-repository: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * add-apt-repository: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * add-apt-repository: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * add-apt-repository: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-cache: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-cache: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-cache: fix missed translation Co-authored-by: Reinhart Previano Koentjoro * apt-cache: fix missed translation Co-authored-by: Reinhart Previano Koentjoro --------- Co-authored-by: Reinhart Previano Koentjoro Co-authored-by: K.B.Dharun Krishna --- pages.id/linux/add-apt-repository.md | 20 ++++++++++++++++++++ pages.id/linux/apt-cache.md | 24 ++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 pages.id/linux/add-apt-repository.md create mode 100644 pages.id/linux/apt-cache.md diff --git a/pages.id/linux/add-apt-repository.md b/pages.id/linux/add-apt-repository.md new file mode 100644 index 0000000000..68dd0215b6 --- /dev/null +++ b/pages.id/linux/add-apt-repository.md @@ -0,0 +1,20 @@ +# add-apt-repository + +> Kelola definisi repositori `apt`. +> Informasi lebih lanjut: . + +- Tambah repositori `apt` baru: + +`add-apt-repository {{repositori}}` + +- Hilangkan sebuah repositori `apt`: + +`add-apt-repository --remove {{repositori}}` + +- Perbarui cache paket setelah menambahkan sebuah repositori: + +`add-apt-repository --update {{repositori}}` + +- Izinkan sumber paket untuk diunduh dari repositori: + +`add-apt-repository --enable-source {{repositori}}` diff --git a/pages.id/linux/apt-cache.md b/pages.id/linux/apt-cache.md new file mode 100644 index 0000000000..7d341378af --- /dev/null +++ b/pages.id/linux/apt-cache.md @@ -0,0 +1,24 @@ +# apt-cache + +> Pencari paket untuk Debian dan Ubuntu. +> Informasi lebih lanjut: . + +- Cari paket di sumber yang sudah dimiliki: + +`apt-cache search {{query}}` + +- Tampilkan informasi tentang sebuah paket: + +`apt-cache show {{paket}}` + +- Tampilkan apakah sebuah paket sudah terinstal dan paling terbaru: + +`apt-cache policy {{paket}}` + +- Tampilkan dependensi sebuah paket: + +`apt-cache depends {{paket}}` + +- Tampilkan paket yang bergantung pada paket tertentu: + +`apt-cache rdepends {{paket}}`