-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux/*: add and update Indonesian translations (#15508)
- Loading branch information
1 parent
b058b63
commit 89a1fb0
Showing
7 changed files
with
87 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# a2disconf | ||
|
||
> Matikan suatu konfigurasi piranti peladen Apache yang diatur oleh suatu berkas dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2disconf.8>. | ||
- Matikan konfigurasi yang diatur dalam suatu berkas: | ||
|
||
`sudo a2disconf {{berkas_konfigurasi}}` | ||
|
||
- Jangan menampilkan pesan-pesan informatif selama melakukan operasi: | ||
|
||
`sudo a2disconf --quiet {{berkas_konfigurasi}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# a2dismod | ||
|
||
> Matikan suatu modul piranti peladen Apache dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2dismod.8>. | ||
- Matikan suatu modul: | ||
|
||
`sudo a2dismod {{modul}}` | ||
|
||
- Jangan menampilkan pesan-pesan informatif selama melakukan operasi: | ||
|
||
`sudo a2dismod --quiet {{modul}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# a2dissite | ||
|
||
> Matikan fungsi peladenan suatu host maya (virtual host) pada piranti peladen Apache dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2dissite.8>. | ||
- Matikan suatu host maya: | ||
|
||
`sudo a2dissite {{host_maya}}` | ||
|
||
- Jangan menampilkan pesan-pesan informatif selama melakukan operasi: | ||
|
||
`sudo a2dissite --quiet {{host_maya}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# a2enconf | ||
|
||
> Nyalakan suatu konfigurasi piranti peladen Apache yang diatur oleh suatu berkas dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2enconf.8>. | ||
- Nyalakan konfigurasi yang diatur dalam suatu berkas: | ||
|
||
`sudo a2enconf {{berkas_konfigurasi}}` | ||
|
||
- Jangan menampilkan pesan-pesan informatif selama melakukan operasi: | ||
|
||
`sudo a2enconf --quiet {{berkas_konfigurasi}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# a2enmod | ||
|
||
> Nyalakan suatu modul piranti peladen Apache dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2enmod.8>. | ||
- Nyalakan suatu modul: | ||
|
||
`sudo a2enmod {{modul}}` | ||
|
||
- Jangan menampilkan pesan-pesan informatif selama melakukan operasi: | ||
|
||
`sudo a2enmod --quiet {{modul}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# a2ensite | ||
|
||
> Izinkan sebuah host maya (virtual host) Apache pada OS berbasis Debian. | ||
> Nyalakan fungsi peladenan suatu host maya (virtual host) pada piranti peladen Apache dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2ensite.8>. | ||
- Izinkan sebuah host maya: | ||
- Nyalakan suatu host maya: | ||
|
||
`sudo a2ensite {{host_maya}}` | ||
|
||
- Jangan tampilkan pesan informatif: | ||
- Jangan menampilkan pesan-pesan informatif selama melakukan operasi: | ||
|
||
`sudo a2ensite --quiet {{host_maya}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# a2query | ||
|
||
> Dapatkan konfigurasi yang dipakai saat ini (secara runtime) dari piranti peladen Apache dalam sistem operasi berbasis Debian. | ||
> Informasi lebih lanjut: <https://manned.org/a2query>. | ||
- Tampilkan daftar modul Apache yang sedang aktif: | ||
|
||
`sudo a2query -m` | ||
|
||
- Cek apakah suatu modul Apache sedang aktif: | ||
|
||
`sudo a2query -m {{nama_modul}}` | ||
|
||
- Tampilkan daftar host maya (virtual hosts) yang sedang aktif: | ||
|
||
`sudo a2query -s` | ||
|
||
- Tampilkan jenis modul Multi Processing Module yang sedang aktif: | ||
|
||
`sudo a2query -M` | ||
|
||
- Tampilkan versi piranti peladen Apache: | ||
|
||
`sudo a2query -v` |