aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 11cd6ded6a05a3dbba30159227ee7cd5a75ef5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Minteck's Space
> Not compatible with Nginx!
## Getting `/admin` to work
* `/admin` works only on Ubuntu or Ubuntu-based systems. Ubuntu Core systems *may* work but hasn't been tested
### `sudo` file
Edit the sudoers file:
```text
$ sudo visudo
```

And add the following lines:
```text
www-data ALL=(ALL:ALL) NOPASSWD: /usr/bin/apt-get
www-data ALL=(ALL:ALL) NOPASSWD: /usr/bin/do-release-upgrade
www-data ALL=(ALL:ALL) NOPASSWD: /usr/bin/lshw
```

(replacing `www-data` by the name of the user that runs your Web server)

### Dependencies
Install the following packages:
* `lm-sensors`

To install them all at once, do:
```text
$ pkcon install lm-sensors
```