mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-28 18:08:51 +03:00
+ add "Limitations" section
parent
916e815e02
commit
f2710ae083
1 changed files with 21 additions and 1 deletions
|
@ -8,6 +8,7 @@ In order to start using AdGuard Home, you need to do a few things:
|
||||||
4. [How to update](#update)
|
4. [How to update](#update)
|
||||||
5. [Configure your devices](#configure-devices)
|
5. [Configure your devices](#configure-devices)
|
||||||
6. [Running without superuser (linux only)](#running-without-superuser)
|
6. [Running without superuser (linux only)](#running-without-superuser)
|
||||||
|
7. [Limitations](#limitations)
|
||||||
|
|
||||||
<a id="installation"></a>
|
<a id="installation"></a>
|
||||||
## Installation
|
## Installation
|
||||||
|
@ -172,3 +173,22 @@ dns:
|
||||||
You can change port 53 to anything above 1024 to avoid requiring superuser privileges.
|
You can change port 53 to anything above 1024 to avoid requiring superuser privileges.
|
||||||
|
|
||||||
If the file does not exist, create it in the same folder, type these two lines down and save.
|
If the file does not exist, create it in the same folder, type these two lines down and save.
|
||||||
|
|
||||||
|
|
||||||
|
<a id="limitations"></a>
|
||||||
|
## Limitations
|
||||||
|
|
||||||
|
### Doesn't work on some file systems
|
||||||
|
|
||||||
|
Some file systems don't support `mmap()` system call that Statistics module requires (more details here: https://github.com/AdguardTeam/AdGuardHome/issues/1188).
|
||||||
|
|
||||||
|
You can resolve this issue:
|
||||||
|
|
||||||
|
* by supplying `--work-dir DIRECTORY` arguments to `AdGuardHome` binary. This option will tell AGH to use another directory for all its files (by default it's set to `./data`).
|
||||||
|
|
||||||
|
* or you can create symbolic links pointing to another file system that supports `mmap()` (e.g. tmpfs):
|
||||||
|
|
||||||
|
```
|
||||||
|
ln -s <YOUR_AGH_PATH>/data/stats.db /tmp/stats.db
|
||||||
|
ln -s <YOUR_AGH_PATH>/data/sessions.db /tmp/sessions.db
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue