mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:22:09 +02:00
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>
This commit is contained in:
parent
05ebb39746
commit
035eb68c65
1 changed files with 37 additions and 0 deletions
37
pages.id/linux/apt-get.md
Normal file
37
pages.id/linux/apt-get.md
Normal 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`
|
Loading…
Add table
Reference in a new issue