-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0968ac5
commit db3d9b7
Showing
79 changed files
with
2,333 additions
and
233 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
...cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md
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,14 @@ | ||
--- | ||
title: Doplňování příkazového řádku | ||
sidebar_position: 5 | ||
--- | ||
|
||
Chcete-li si usnadnit orientaci v různých a někdy docela dlouhých příkazech, můžete použít funkci doplňování příkazového řádku. | ||
|
||
Chcete-li to povolit, podívejte se na nápovědu bash-completion, která se zobrazí po instalaci nebo aktualizaci AdGuard VPN pro Linux: | ||
|
||
![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) | ||
|
||
Chcete-li tuto funkci použít, stačí začít psát požadovaný příkaz a stisknout klávesu Tab ↹ — příkaz se automaticky doplní o potřebné slovo nebo se zobrazí výběr možností doplnění. | ||
|
||
![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) |
76 changes: 76 additions & 0 deletions
76
i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md
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,76 @@ | ||
--- | ||
title: Výjimky | ||
sidebar_position: 7 | ||
--- | ||
|
||
Funkce _Výjimky_ umožňuje rozhodnout, které přenosy domén mají být vyloučeny ze směrování VPN. To se hodí v případě, že pro některé webové stránky VPN nepotřebujete, protože vám to ušetří práci s neustálým zapínáním a vypínáním VPN. | ||
|
||
Stejně jako v AdGuard VPN pro jiné platformy můžete i v AdGuard VPN pro Linux používat výjimky ve dvou režimech: Obecný (VPN je povolena pro všechny domény kromě těch, které jsou v seznamu výjimek) a selektivní (VPN je povolena pouze pro domény v seznamu výjimek). | ||
|
||
:::note | ||
|
||
Každý režim má svůj vlastní seznam výjimek. | ||
|
||
::: | ||
|
||
![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) | ||
|
||
### Jak používat | ||
|
||
Chcete-li zobrazit všechny příkazy související s výjimkami, zadejte: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions -h | ||
``` | ||
|
||
Chcete-li přidat doménu do seznamu výjimek aktuálního režimu, zadejte: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions add %domain_name% | ||
``` | ||
|
||
:::tip | ||
|
||
Podporované vstupní formáty: `domain.com`, `sub.domain.com`, `www.domain.com`. Chcete-li přidat dvě nebo více výjimek najednou, uveďte je odděleně čárkou. Pro zástupné znaky použijte dvojité uvozovky: `"*.domain.com"` | ||
|
||
Příklad příkazu: `adguardvpn-cli site-exclusions add https://www.google.com/` | ||
|
||
::: | ||
|
||
Chcete-li odebrat doménu ze seznamu výjimek, zadejte: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions remove %domain_name% | ||
``` | ||
|
||
Chcete-li zobrazit aktuální seznam výjimek, zadejte: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions show | ||
``` | ||
|
||
Chcete-li odstranit všechny výjimky, zadejte: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions clear | ||
``` | ||
|
||
Chcete-li změnit režim výjimek, zadejte: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions mode %mode_name% | ||
``` | ||
|
||
(Nebo můžete zkontrolovat aktuální režim pomocí `adguardvpn-cli site-exclusions mode`) | ||
|
||
kde %mode_name% je `obecný` nebo `selektivní` režim. | ||
|
||
:::note | ||
|
||
Výše uvedené příkazy (`add`, `remove`, `show`, `clear`) se použijí v seznamu výjimek aktuálního režimu. Chcete-li provést příkaz pro konkrétní režim, přidejte např. `--for-mode %mode_name% type`: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% | ||
``` | ||
|
||
::: |
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
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
14 changes: 14 additions & 0 deletions
14
...da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md
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,14 @@ | ||
--- | ||
title: Command-line completion | ||
sidebar_position: 5 | ||
--- | ||
|
||
To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. | ||
|
||
To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: | ||
|
||
![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) | ||
|
||
To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. | ||
|
||
![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) |
76 changes: 76 additions & 0 deletions
76
i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md
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,76 @@ | ||
--- | ||
title: Exclusions | ||
sidebar_position: 7 | ||
--- | ||
|
||
The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. | ||
|
||
Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). | ||
|
||
:::note | ||
|
||
Each mode has its own list of exclusions. | ||
|
||
::: | ||
|
||
![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) | ||
|
||
### How to use | ||
|
||
To view all exclusion-related commands, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions -h | ||
``` | ||
|
||
To add a domain to the exclusion list of the current mode, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions add %domain_name% | ||
``` | ||
|
||
:::tip | ||
|
||
Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` | ||
|
||
Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` | ||
|
||
::: | ||
|
||
To remove a domain from the list of exclusions, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions remove %domain_name% | ||
``` | ||
|
||
To view the current exclusion list, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions show | ||
``` | ||
|
||
To remove all exclusions, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions clear | ||
``` | ||
|
||
To change the Exclusions mode, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions mode %mode_name% | ||
``` | ||
|
||
(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) | ||
|
||
where %mode_name% is `general` or `selective`. | ||
|
||
:::note | ||
|
||
The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% | ||
``` | ||
|
||
::: |
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
14 changes: 14 additions & 0 deletions
14
...de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md
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,14 @@ | ||
--- | ||
title: Command-line completion | ||
sidebar_position: 5 | ||
--- | ||
|
||
To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. | ||
|
||
To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: | ||
|
||
![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) | ||
|
||
To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. | ||
|
||
![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) |
76 changes: 76 additions & 0 deletions
76
i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md
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,76 @@ | ||
--- | ||
title: Exclusions | ||
sidebar_position: 7 | ||
--- | ||
|
||
The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. | ||
|
||
Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). | ||
|
||
:::note | ||
|
||
Each mode has its own list of exclusions. | ||
|
||
::: | ||
|
||
![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) | ||
|
||
### How to use | ||
|
||
To view all exclusion-related commands, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions -h | ||
``` | ||
|
||
To add a domain to the exclusion list of the current mode, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions add %domain_name% | ||
``` | ||
|
||
:::tip | ||
|
||
Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` | ||
|
||
Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` | ||
|
||
::: | ||
|
||
To remove a domain from the list of exclusions, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions remove %domain_name% | ||
``` | ||
|
||
To view the current exclusion list, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions show | ||
``` | ||
|
||
To remove all exclusions, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions clear | ||
``` | ||
|
||
To change the Exclusions mode, type: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions mode %mode_name% | ||
``` | ||
|
||
(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) | ||
|
||
where %mode_name% is `general` or `selective`. | ||
|
||
:::note | ||
|
||
The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: | ||
|
||
``` | ||
adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% | ||
``` | ||
|
||
::: |
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
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
Oops, something went wrong.