Hello Community,
I can confirm that the installation on Raspberry PI is now working again. The issues that I reported for 24.10 are not existent any more.
Installation Instruction of Lubuntu on Raspberry Pi 5
Here is how to install it:
Install Ubuntu Server 24.04 via Pi Imager
- maintain user data, wifi, etc. in advanced options
Now it also makes sense to increase the partition size of the data partition to make use of the full size of the sd card just in case it is not automatically assigned completely.
Start Pi and Log In
Update System:
sudo apt update
sudo apt upgrade
Disable Cloud Init:
sudo dpkg-reconfigure cloud-init
Disable all services (uncheck everything except “None”)
Restart the computer:
sudo reboot
Install Lubuntu
sudo apt install lubuntu-desktop
sudo reboot
Boot seems to be stuck, display manager is not starting
Switch to console 2
ALT-F2
login
Enable the display manager:
sudo systemctl set-default graphical.target
sudo reboot
Activate SDDM in Lubuntu:
sudo dpkg-reconfigure sddm
X11 not running, there must have been graphics compatibility issues
sudo apt install xserver-xorg-video-fbdev
create the following file (or dir if needed), and add the following lines
sudo nano /etc/X11/xorg.conf.d/99-fbdev.conf
Section “Device”
Identifier “Raspberry Pi FBDEV”
Driver “fbdev”
Option “fbdev” “/dev/fb0”
EndSection
Restart SDDM:
sudo systemctl restart sddm
I just noticed that the Network time server is not working:
sudo apt install chrony
Dominik
This was tested on Pi5 with 8MB but should also work for other models.