mirror of https://github.com/pikvm/pikvm.git
parent
b8fcc1d3b2
commit
239b8b3bb4
16
docs/v3.md
16
docs/v3.md
|
|
@ -34,7 +34,7 @@ If you have a kit without a metal case, you can use our free 3D printing case dr
|
|||
: ??? tip "Device with or without the 3D-printed case"
|
||||

|
||||
|
||||
!!! warning "OLED glass can crack if force is used to install it, please handle with care and rock back and forth to install."
|
||||
!!! warning "OLED glass can crack if force is used to install it, please handle with care and rock back and forth on the pins side to install."
|
||||
|
||||
|
||||
3. **Connect PiKVM** to the computer according to the diagram below:
|
||||
|
|
@ -57,17 +57,25 @@ If you have a kit without a metal case, you can use our free 3D printing case dr
|
|||
# systemctl enable --now kvmd-fan
|
||||
# ro
|
||||
```
|
||||
If you want the temperature to be displayed in Fahrenheit on the OLED, make following:
|
||||
If you want the temperature to be displayed and in Fahreneit on the OLED and you do not want to update the whole system, then you will need to do this first after going to root:
|
||||
```
|
||||
# rw
|
||||
# pacman -Syy
|
||||
# pacman -S kvmd-oled
|
||||
# systemctl enable --now kvmd-oled kvmd-oled-reboot kvmd-oled-shutdown
|
||||
```
|
||||
|
||||
If you want the temperature to be displayed in Fahrenheit on the OLED, make the following:
|
||||
```
|
||||
# mkdir -p /etc/systemd/system/kvmd-oled.service.d
|
||||
```
|
||||
Create file `/etc/systemd/system/kvmd-oled.service.d/override.conf`:
|
||||
Create file `touch or nano /etc/systemd/system/kvmd-oled.service.d/override.conf`:
|
||||
```ini
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/kvmd-oled --height=32 --clear-on-exit --fahrenheit
|
||||
```
|
||||
And run `systemctl restart kvmd-oled`. In some cases a reboot will resolve display issues.
|
||||
And run `systemctl restart kvmd-oled`. In some cases, if you still do not see Fahrenheit being displayed, reboot the pikvm.
|
||||
|
||||
6. !!! danger "Just reminding again: CHANGE THE PASSWORDS! :)"
|
||||
How to do this was written in [the "First steps" guide](first_steps.md){target=_blank}
|
||||
|
|
|
|||
Loading…
Reference in New Issue