blob: 36ed57ecc20db6a852f7fea4e42e5d631b501ec8 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Requires docker.
Run ./run.sh to get the container running.
Edit /etc/resolv.conf file:
```
nameserver 127.0.0.1
search intr majordomo.ru
nameserver 80.80.80.80
nameserver 80.80.81.81
```
In case of `nscd` usage, restart it after changes in /etc/resolv.conf file.
``` shell
$ pgrep -fa nscd
18595 /gnu/store/…-glibc-2.28/sbin/nscd -f /gnu/store/…-nscd.conf --foreground
```
E.g. on Guix system to restart nscd invoke as root user:
``` shell
# herd restart nscd
```
|