Page 1 of 1
Help needed - Raspberry 4 with the newest image doesent run
Posted: Thu Nov 07, 2024 1:27 pm
by Maggus
Hi Folks,
First of all, many thanks for the big help and your efforts.
Hopefully you can help me
I got a big problem wih my raspberry 4 Version B with the actual image qlcplus_raspios_bookworm_20241101
BTW, the image qlcplus_raspios_bookworm_20240317 have the same effects
The image: qlcplus_raspios_bullseye_20230519 run without any problems
Raspi ist connected via HDMI to a Monitor
I flash the image new, bring it into my raspberry
QLC don´t come up
I logged in and use
QLC comes up
I connect the network to the raspi
QLC dont come up, only the terminal message shows up on the monitor
Then I use
and QLC comes up, even I can acces the web interface
Connect the network and reboot, QLC don´t come up. In the terminal there is only the login
When I use
Code: Select all
Maggus@Maggus:~ $ sudo qlcplus service status
qt.qpa.xcb: could not connect to display
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, xcb
Aborted
So I try to adopt the sleep time, no effect
Again new flashing, same effects
The I disconnect the monitor
Same Messages as before
I read nearly all topic arround this issues, but nothing helps me, to get the actual image running.
Please find the start.sh down here
Code: Select all
#!/usr/bin/env bash
#
# Q Light Controller Plus
# qlcplus-start.sh
#
# Copyright (c) 2024 Massimo Callegari
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0.txt
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# detect DRI card
if [ ! -f $HOME/.qlcplus/eglfs.json ]; then
mkdir -p $HOME/.qlcplus
for i in {1..5}
do
GPUDEV=`find /dev/dri/by-path -name *gpu-card*`
if [ ! -z "$GPUDEV" ]; then
GPUDEV=`readlink -f $GPUDEV`
echo '{ "device": "'$GPUDEV'" }' > $HOME/.qlcplus/eglfs.json
break
else
sleep 2
fi
done
fi
# detect HDMI plug state
QTPLATFORM="eglfs"
kmsprint -m | grep connected > /dev/null
if [ $? -eq 1 ]; then
QTPLATFORM="offscreen"
fi
# create QLC+ command line
QLCPLUS_OPTS="-platform $QTPLATFORM --nowm --web --web-auth --operate --overscan"
if [ -f $HOME/.qlcplus/autostart.qxw ]; then
QLCPLUS_OPTS="$QLCPLUS_OPTS --open $HOME/.qlcplus/autostart.qxw"
fi
# if NTP hasn't done its job already, set the date to modern age...
CURRDATE=`date +%Y`
if [ "$CURRDATE" -lt "2024" ]; then
date +%Y%m%d -s "20241101"
fi
export QT_QPA_EGLFS_PHYSICAL_WIDTH=320
export QT_QPA_EGLFS_PHYSICAL_HEIGHT=200
export QT_QPA_EGLFS_ALWAYS_SET_MODE=1
export QT_QPA_EGLFS_KMS_CONFIG=$HOME/.qlcplus/eglfs.json
/usr/bin/qlcplus $QLCPLUS_OPTS
Thanks in advance for your highly apprected help!
Best regards from Germany
Marcus
Re: Help an Raspberry 4 with the newest image
Posted: Thu Nov 07, 2024 2:59 pm
by mcallegari
Re: Help an Raspberry 4 with the newest image
Posted: Thu Nov 07, 2024 3:13 pm
by Maggus
Hi Massimo,
unfortunately no changes in the behavior
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Fri Nov 08, 2024 5:46 pm
by mcallegari
I just tested the official image on a second Raspberry Pi 4 to make sure it was working and it starts correctly.
I can see QLC+ starting on HDMI0 and/or HDMI1.
The content of $HOME/.qlcplus.eglfs.json shows "/dev/dri/card1"
Please let me know if it is the same on your device
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 10:41 am
by Maggus
Hi Massimo,
so triple check
Starting Headless
No Web Access
The content of $HOME/.qlcplus.eglfs.json shows
Starting at HDMI 0
Only Prompt
No Web Access
The content of $HOME/.qlcplus.eglfs.json shows
Starting at HDMI 1
Rainbow Screen
Only Prompt
No Web Access
The content of $HOME/.qlcplus.eglfs.json shows
Using HDMI 1
When I input:
via remote (MobaXterm)
QLC comes up in the Moba Xterm Window, even I have web acces
When I go directly via my keyboard to the Raspi, it seems that QLC starts.
But I dont see a GUI, Web Acces is possible
Using HDMI 0
No rainbow window
When I input:
via remote (MobaXterm)
QLC comes up in the Moba Xterm Window, even I have web acces
When I go directly via my keyboard to the Raspi, QLC starts.
I see the GUI, Web Access is possible
Even the Wifi configuaration is possible
When I look during the boot process, everything is green.
Regards
Marcus
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 12:27 pm
by Maggus
So again me,
I download the image again, check the checksum and flash it with the RPI Tool to my SD Card.
I only configure the Name and the password at the RPI Tool before I flash.
All Network is at DHCP
The Raspi boot on HDMI 0 and HDMI 1 until to the prompt.
No starting from QLC.
WHen I start QLC with
QLC comes up.
I check the IP Adress from the Raspi in my router and can enter the Web Access without any problems.
EDIT
Restart the raspi without any changes
QLC dont come up, no Web Access
I just checked the
is there, wIthout any changes as recommended in the link before
The result of
sudo service qlcplus status
Code: Select all
Maggus@Maggus:~ $ sudo service qlcplus status
● qlcplus.service - Q Light Controller Plus
Loaded: loaded (/lib/systemd/system/qlcplus.service; enabled; preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Sat 2024-11-09 13:36:41 CET; 2s ago
Docs: man:qlcplus(1)
Process: 892 ExecStart=/usr/sbin/qlcplus-start.sh (code=exited, status=217/USER)
Main PID: 892 (code=exited, status=217/USER)
CPU: 0
/EDIT[
Regards and thanks for the help
Marcus
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 1:26 pm
by mcallegari
Which display are you using?
A TV? A HDMI monitor?
Do you have any chance to try with another display?
However, you previous statement "Starting headless: no web access" leaves me puzzled. At least that should work.
Have you tried to boot without a display, SSH into the RPi and see if QLC+ is running?
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 1:34 pm
by Maggus
mcallegari wrote: ↑Sat Nov 09, 2024 1:26 pm
Which display are you using?
A TV? A HDMI monitor?
Both, I try with both
Do you have any chance to try with another display?
Yes already done
However, you previous statement "Starting headless: no web access" leaves me puzzled. At least that should work.
Have you tried to boot without a display, SSH into the RPi and see if QLC+ is running?
I try this, but QLC does not run
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 1:35 pm
by Maggus
Another research
according to the fact that
Main PID: 892 (code=exited,
status=217/USER)
seems that there are user problems,
(Google was my friend BTW)
I check the journal
And thee comes some messages up, which are might be the reason for the problem
Code: Select all
Nov 01 18:46:16 Maggus avahi-daemon[547]: avahi-daemon 0.8 starting up.
Nov 01 18:46:16 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:16 Maggus (start.sh)[558]: [b]qlcplus.service: Failed to determine user credentials: No such process[/b]
Nov 01 18:46:16 Maggus (start.sh)[558]: [b]qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such proces[/b]s
and
Code: Select all
01 18:46:25 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 3.
Nov 01 18:46:25 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:25 Maggus (start.sh)[797]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:25 Maggus (start.sh)[797]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:25 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:25 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:25 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 01 18:46:26 Maggus olad[786]: olad/AvahiDiscoveryAgent.cpp:236: State for OLA Server._http._tcp,_ola, group 0x558aa1a480 changed to AVAHI_ENTRY_GROUP_ESTABLISHED
Nov 01 18:46:29 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 4.
Nov 01 18:46:29 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:29 Maggus (start.sh)[798]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:29 Maggus (start.sh)[798]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:29 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:29 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:29 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 01 18:46:30 Maggus olad[786]: common/io/Serial.cpp:151: Device /dev/ttyUSB0 doesn't exist, so there's no point trying to acquire a lock
Nov 01 18:46:31 Maggus systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Nov 01 18:46:32 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 5.
Nov 01 18:46:32 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:32 Maggus (start.sh)[799]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:32 Maggus (start.sh)[799]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:32 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:32 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:32 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 01 18:46:35 Maggus olad[786]: common/io/Serial.cpp:151: Device /dev/ttyUSB0 doesn't exist, so there's no point trying to acquire a lock
Nov 01 18:46:35 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 6.
Nov 01 18:46:35 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:35 Maggus (start.sh)[800]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:35 Maggus (start.sh)[800]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:35 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:35 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:35 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 01 18:46:38 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 7.
Nov 01 18:46:38 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:38 Maggus (start.sh)[801]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:38 Maggus (start.sh)[801]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:38 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:38 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:38 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 01 18:46:40 Maggus olad[786]: common/io/Serial.cpp:151: Device /dev/ttyUSB0 doesn't exist, so there's no point trying to acquire a lock
Nov 01 18:46:42 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 8.
Nov 01 18:46:42 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:42 Maggus (start.sh)[802]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:42 Maggus (start.sh)[802]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:42 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:42 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:42 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 01 18:46:44 Maggus systemd[1]: systemd-fsckd.service: Deactivated successfully.
Nov 01 18:46:45 Maggus olad[786]: common/io/Serial.cpp:151: Device /dev/ttyUSB0 doesn't exist, so there's no point trying to acquire a lock
Nov 01 18:46:45 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 9.
Nov 01 18:46:45 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:45 Maggus (start.sh)[803]: qlcplus.service: Failed to determine user credentials: No such process
Nov 01 18:46:45 Maggus (start.sh)[803]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 01 18:46:45 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 18:46:45 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 01 18:46:45 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 09 14:24:58 Maggus systemd-timesyncd[458]: Contacted time server [2001:41d0:700:49bc::3]:123 (2.debian.pool.ntp.org).
Nov 09 14:24:58 Maggus systemd-timesyncd[458]: Initial clock synchronization to Sat 2024-11-09 14:24:58.484870 CET.
Nov 09 14:24:58 Maggus systemd[1]: Starting dpkg-db-backup.service - Daily dpkg database backup service...
Nov 09 14:24:58 Maggus systemd[1]: Starting e2scrub_all.service - Online ext4 Metadata Check for All Filesystems...
Nov 09 14:24:58 Maggus systemd[1]: Starting logrotate.service - Rotate log files...
Nov 09 14:24:58 Maggus systemd[1]: e2scrub_all.service: Deactivated successfully.
Nov 09 14:24:58 Maggus systemd[1]: Finished e2scrub_all.service - Online ext4 Metadata Check for All Filesystems.
Nov 09 14:24:58 Maggus systemd[1]: logrotate.service: Deactivated successfully.
Nov 09 14:24:58 Maggus systemd[1]: Finished logrotate.service - Rotate log files.
Nov 09 14:24:58 Maggus systemd[1]: dpkg-db-backup.service: Deactivated successfully.
Nov 09 14:24:58 Maggus systemd[1]: Finished dpkg-db-backup.service - Daily dpkg database backup service.
Nov 09 14:24:59 Maggus systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Nov 09 14:25:01 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 10.
Nov 09 14:25:01 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:01 Maggus (start.sh)[866]: qlcplus.service: Failed to determine user credentials: No such process
Nov 09 14:25:01 Maggus (start.sh)[866]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 09 14:25:01 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:01 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 09 14:25:01 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 09 14:25:02 Maggus olad[786]: common/io/Serial.cpp:151: Device /dev/ttyUSB0 doesn't exist, so there's no point trying to acquire a lock
Nov 09 14:25:04 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 11.
Nov 09 14:25:04 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:04 Maggus (start.sh)[867]: qlcplus.service: Failed to determine user credentials: No such process
Nov 09 14:25:04 Maggus (start.sh)[867]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 09 14:25:04 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:04 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 09 14:25:04 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 09 14:25:07 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 12.
Nov 09 14:25:07 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:07 Maggus (start.sh)[868]: qlcplus.service: Failed to determine user credentials: No such process
Nov 09 14:25:07 Maggus (start.sh)[868]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
Nov 09 14:25:07 Maggus systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:07 Maggus systemd[1]: qlcplus.service: Main process exited, code=exited, status=217/USER
Nov 09 14:25:07 Maggus systemd[1]: qlcplus.service: Failed with result 'exit-code'.
Nov 09 14:25:07 Maggus olad[786]: common/io/Serial.cpp:151: Device /dev/ttyUSB0 doesn't exist, so there's no point trying to acquire a lock
Nov 09 14:25:10 Maggus systemd[1]: qlcplus.service: Scheduled restart job, restart counter is at 13.
Nov 09 14:25:10 Maggus systemd[1]: Stopped qlcplus.service - Q Light Controller Plus.
Nov 09 14:25:10 Maggus (start.sh)[869]: qlcplus.service: Failed to determine user credentials: No such process
Nov 09 14:25:10 Maggus (start.sh)[869]: qlcplus.service: Failed at step USER spawning /usr/sbin/qlcplus-start.sh: No such process
I flash the image newly on the SD Card
Dont change any names and passwords and let it run
QLC works
with the name pi and the regular password.
Code: Select all
pi@raspberrypi:~ $ sudo service qlcplus status
● qlcplus.service - Q Light Controller Plus
Loaded: loaded (/lib/systemd/system/qlcplus.service; enabled; preset: enabled)
Active: active (running) since Fri 2024-11-01 17:45:39 GMT; 1 week 0 days ago
Docs: man:qlcplus(1)
Main PID: 575 (bash)
Tasks: 11 (limit: 3917)
CPU: 3.614s
CGroup: /system.slice/qlcplus.service
├─575 bash /usr/sbin/qlcplus-start.sh
└─682 /usr/bin/qlcplus -platform eglfs --nowm --web --web-auth --operate --overscan
Nov 01 17:45:39 raspberrypi systemd[1]: Started qlcplus.service - Q Light Controller Plus.
Nov 01 17:45:42 raspberrypi qlcplus-start.sh[682]: QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-pi'
Nov 01 17:45:45 raspberrypi qlcplus-start.sh[682]: error: XDG_RUNTIME_DIR is invalid or not set in the environment.
Nov 01 17:45:45 raspberrypi qlcplus-start.sh[682]: Q Light Controller Plus version 4.13.1-3
Nov 01 17:45:45 raspberrypi qlcplus-start.sh[682]: This program is licensed under the terms of the Apache 2.0 license.
Nov 01 17:45:45 raspberrypi qlcplus-start.sh[682]: Copyright (c) Heikki Junnila (hjunnila@users.sf.net)
Nov 01 17:45:45 raspberrypi qlcplus-start.sh[682]: Copyright (c) Massimo Callegari (massimocallegari@yahoo.it)
Hope this helps to find the error
Regards
Marcus
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 1:38 pm
by mcallegari
Wait, wait so the issue is that you were changing the user 'pi' password?
Or you changed the username completely?
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 2:04 pm
by Maggus
...
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sat Nov 09, 2024 2:19 pm
by Maggus
Maggus wrote: ↑Sat Nov 09, 2024 2:04 pm
mcallegari wrote: ↑Sat Nov 09, 2024 1:38 pm
Wait, wait so the issue is that you were changing the user 'pi' password?
Or you changed the username completely?
I change the username and the password at RPI
Just double check it
When I leave everything as it comes up in the RPI
QLC starts Headless / HDMI 0 / HDMI 1
When I use
QLC dont start
Even when I change the Raspberry Name and the user Name like this example
Code: Select all
Marcus@Maggus:~ $ sudo service qlcplus status
● qlcplus.service - Q Light Controller Plus
Loaded: loaded (/lib/systemd/system/qlcplus.service; enabled; preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Sat 2024-11-09 15:16:31 CET; 2s ago
Docs: man:qlcplus(1)
Process: 858 ExecStart=/usr/sbin/qlcplus-start.sh (code=exited, status=217/USER)
Main PID: 858 (code=exited, status=217/USER)
CPU: 0
QLC dont come up
Therefore maybee user rights?
Regards
Marcus
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sun Nov 10, 2024 8:19 am
by mcallegari
I will not delete this as it can be useful for future reference to other users falling into the same situation.
To be honest, as far as I remember, there should be nothing binding QLC+ to the user 'pi' so I still cannot explain why it doesn't start.
Maybe it's a systemd issue but at the moment I am working on other topics and cannot look into this.
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sun Nov 10, 2024 8:24 am
by Maggus
Hi Massimo,
the delete is only for the comment where I write "please delete me", because there was a lot of typos
So for the moment I can only use the user "pi" and wait if something is comming up.
Anyhow, thank you for your help.
Regards
Marcus
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Sun Nov 17, 2024 12:55 pm
by Maggus
One more topic in this Image.
The access data of the wifi hotspot are not saved. after switching off, all data are lost.
The Connection QLCPlus shows up.
Re: Help needed - Raspberry 4 with the newest image doesent run
Posted: Thu Nov 28, 2024 6:24 pm
by ksl
Hi, just to add that I ran into the same issue, when choosing a default username other than pi. Flashed the SD again with default user pi and all is well.