@@ -21,37 +21,26 @@ sudo useradd -m parsec
21
21
sudo passwd parsec
22
22
```
23
23
24
- Create the following Parsec directories, with good permissions.
24
+ Create the following Parsec directories, with good permissions:
25
25
26
- ` /var/lib/parsec ` for storing persistent data like the ` mappings ` folder. The service will run from
27
- here.
26
+ - ` /var/lib/parsec ` for storing persistent data like the ` mappings ` folder.
27
+ - ` /etc/parsec ` to contain the configuration file.
28
+ - ` /usr/libexec/parsec ` to contain the ` parsec ` executable binary file.
29
+ - ` /run/parsec ` to contain the socket file. The ` parsec-clients ` group needs to be created. Mutually
30
+ trusted Parsec Clients will need to be in that group.
31
+
32
+ Commands:
28
33
29
34
```
30
35
sudo mkdir /var/lib/parsec
31
36
sudo chown parsec /var/lib/parsec
32
37
sudo chmod 700 /var/lib/parsec
33
- ```
34
-
35
- ` /etc/parsec ` to contain the configuration file.
36
-
37
- ```
38
38
sudo mkdir /etc/parsec
39
39
sudo chown parsec /etc/parsec
40
40
sudo chmod 700 /etc/parsec
41
- ```
42
-
43
- ` /usr/libexec/parsec ` to contain the ` parsec ` executable binary file.
44
-
45
- ```
46
41
sudo mkdir /usr/libexec/parsec
47
42
sudo chown parsec /usr/libexec/parsec
48
43
sudo chmod 700 /usr/libexec/parsec
49
- ```
50
-
51
- ` /run/parsec ` to contain the socket file. The ` parsec-clients ` group needs to be created. Mutually
52
- trusted Parsec Clients will need to be in that group.
53
-
54
- ```
55
44
sudo groupadd parsec-clients
56
45
sudo mkdir /run/parsec
57
46
sudo chown parsec:parsec-clients /run/parsec
0 commit comments