Open main menu

Changes

PiKVM-A4

432 bytes added, 16:00, 7 June 2023
'''Q: How to enable OLED?'''
A: In fact, the official firmware of PiKVM based on raspberry pi zero 2 w does not support OLED display. If the official firmware supports it in the future, please refer to the official instructions [https://docs.pikvm.org/ official documation]
Or refer to: https://geekworm1.com/community/forum/topic/85024/enable-oled-on-geekworm-pikvm-a4-kitSwitch root user su root #default password is root also
2. switch to writable mode
rw
3. Edit /boot/config.txt and add below code.
nano /boot/config.txt
And add below codes:
dtparam=i2c1=on
dtparam=i2c_arm=on
 
Save & exit;
 
4. Edit /etc/modules-load.d/raspberrypi.conf and add below code.
nano /etc/modules-load.d/raspberrypi.conf
Add below code:
i2c-dev
 
 
5. Install package
pacman -S i2c-tools
[[File:Pacman-i2c-tools.png|800px]]
 
If not successful, please try a few more times
 
4. Enable oled-service
systemctl enable --now kvmd-oled kvmd-oled-reboot kvmd-oled-shutdown
 
5. Reboot
reboot now
 
Or refer to: [https://geekworm.com/community/forum/topic/85024/enable-oled-on-geekworm-pikvm-a4-kit Enable oled on Geekworm PiKVM-A4 Kit]
 
Thanks teamjang Shin.
'''Q: How to enable RTC?'''