worproject / rpi5-uefi

EDK2 firmware images for Raspberry Pi 5
https://worproject.com
243 stars 6 forks source link

Keyboard Not detected with Original Adaptor supply #4

Closed amyreza closed 3 months ago

amyreza commented 5 months ago

My keyboard is not detected when I want to press the ESC key and I am confused about what to do. I've changed 4 brands of keyboard and moved from USB 1 - 4 on Raspi 5 but it still doesn't work when I want to install Proxmox . I use the official power supply and the unit I just bought

FriendlyNGeeks commented 5 months ago

Use right arrow on keyboard from first menu and dont ask me why it works, lolz

On Sat, Jan 27, 2024, 11:07 PM amyreza @.***> wrote:

My keyboard is not detected when I want to press the ESC key and I am confused about what to do. I've changed 4 brands of keyboard and moved from USB 1 - 4 on Raspi 5 but it still doesn't work when I want to install Proxmox . I use the official power supply and the unit I just bought

— Reply to this email directly, view it on GitHub https://github.com/worproject/rpi5-uefi/issues/4, or unsubscribe https://github.com/notifications/unsubscribe-auth/AHWSKQHKOMH5ZSMJOEFQEVTYQXFGTAVCNFSM6AAAAABCN3RPD2VHI2DSMVQWIX3LMV43ASLTON2WKOZSGEYDGOJVGM2DKMI . You are receiving this because you are subscribed to this thread.Message ID: @.***>

amyreza commented 5 months ago

I've tried, it still doesn't work bro. Is there another way?

Please help

FriendlyNGeeks commented 5 months ago

first make sure you following this guide and grabbing the right image https://youtu.be/oe1_JVl63a0?si=d4FP9gVdbyKVQKGM . Next I would ask that you provide picture of which screen you are stuck on. If you are trying to get into UEFI boot order might need to be updated first using Raspbian and running sudo raspi-config > find boot and make sure sd is first or usb if your booting from usb. Also I stand corrected about side arrow that was the work around for the full pc proxmox.

amyreza commented 5 months ago

Yes. I also followed that guide. Initially, by simply extracting the RPI5 UEFI file. My keyboard cannot be detected to enter the RPI5 Boot menu

And now I have succeeded in a way Flash the SD CARD with the Ubuntu server using Raspi Imager

and replace the file on the SDCARD with this RPI5 UEFI extract and VIOLA. New keyboard works and already successfully installed proxmox .

Now a new problem arises, namely after installing Proxmox. Proxmox OS can't detect LAN and wifi. I have tried "sudo dhclient -v"

still can't find the LAN and wifi drivers.

Can you help me? I'll make a new ticket, guys

wb7odyfred commented 4 months ago

Now a new problem arises, namely after installing Proxmox. Proxmox OS can't detect LAN and wifi. I have tried "sudo dhclient -v"

sudo ifconfig genet0
sidp dhclient genet0
sudo ifconfig genet0

Other commands that maybe useful. Copied from my blog post: https://ghostbsd-arm64.blogspot.com/2024/01/january-18-2024-more-random-notes-on.html

sudo service netif restart
sudo service routing restart
ifconfig genet0
netstat -nr
sockstat -4

https://ghostbsd-arm64.blogspot.com/2024/01/january-18-2024-more-random-notes-on.html To get changes in configuration files to be accessed and loaded. ifconfig wlan0 down ; ifconfig wlan0 up by itself does NOT work. use killall dhclient ; dhclient wlan0 And possibly sudo service netif restart ifconfig wlan0 up scan should show a list of available nearby access point wifi signals. Sometimes you can see an access point, but too weak a signal to connect and transfer data.

Python application Networkmgr works with FreeBSD and with GhostBSD, creating a GUI app to connect to a wifi access point interface or a wired ethernet interface.

sudo pkg install networkmgr
sudo networkmgr &
ifconfig wlan0
sudo dhclient wlan0

Add a 4 lines to  /boot/loader.conf file
# WIFI load   
rtwn_load="YES"  
if_rtwn_usb_load="YES"  
legal_realtek_license_ack=1 

Add 2 lines to  /etc/rc.conf   file
wlands_rtwn0="wlan0"
 ifconfig_rtwn0="DHCP"  # for open wifi access point or  "WPA DHCP" for encrypted wifi access point connection
ifconfig wlan0 create rtwn0 wlandev wlan0
ifconfig wlan0 ssid FreshTomato24
dhclient wlan0

file /etc/wpa_supplicant.conf

Open network wifi access point. I recommend FreshTomato.org for router software

edit file /etc/wpa_supplicant.conf network={ ssid="FreshTomato24" key_mgmt=NONE }

WPA-DHCP example

network={ ssid="simple" psk="very secret passphrase" proto=WPA RSN priority=5 }

https://www.ccammack.com/posts/configure-a-wifi-client-on-freebsd/