gapan wrote: ↑6. Oct 2025, 07:19
This sounds like the kernel-modules package was not upgraded along with everything else. Or it was corrupted somehow? But if it was corrupted, it wouldn't have been installed. But maybe that happened and you didn't notice?
Yes the kernel-modules was corrupted, and plus the generic kernel for unknow reasons make the keyboard and mouse does not work any more with kernel versions 5.15.188 5.15.193.
i the spanish post ( original version of this post ) ->
viewtopic.php?t=8888
i post i purge the generic kernel, and files, i not use anymore and i just using the huge kernel in the version 5.15.193 and against this i compile nvidia drivers, cdemu, and the mayor part of virtualbox 6.1.50, of this last almost all compile except the « VirtualBox 6.1.50 » itself, the rest of things of VirtualBox 6.1.50 compile without problems.
in resume of the spanish post i do the follow things
Code: Select all
sudo cp /boot/grub/grub.cfg /boot/grub/grub.2025-10.09.cfg
Code: Select all
sudo su
cd /boot
ln -sf initrd.gz initrd.img #no existe el archivo « initrd.img » (que estaba en varias entradas)
rm -rf vmlinuz
rm -rf config
ln -sf config-huge-5.15.193.x64 config
rm -rf System.map
ln -sf System.map-huge-5.15.193 System.map
rm -rf vmlinuz-huge
rm -rf vmlinuz-linux
Code: Select all
grub-install --recheck --boot-directory=/boot /dev/sda
Code: Select all
grub-mkconfig -o /boot/grub/grub.cfg
Generando un fichero de configuración de grub...
Encontrado fondo de pantalla: /boot/grub/salix.png
Encontrada imagen de linux: /boot/vmlinuz-huge-5.15.193
Encontrada imagen de memoria inicial: /boot/intel-ucode.img /boot/amd-ucode.img /boot/initrd.gz
Aviso: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
hecho
i restart the entire machine, and start salix with huge linux 5.15.193
and i compile nvidia drivers
Code: Select all
export COMPAT32="yes" ; COMPAT32="yes" slpkg -s sbo --rebuild --reinstall nvidia-legacy390-{kernel,driver}
after i compile cdemu
Code: Select all
su -c "slpkg update ; slpkg -s sbo --rebuild --reinstall cdemu-daemon cdemu-client libmirage vhba-module ; ldconfig ; groupadd cdemu ; usermod -a -G cdemu $USER" root ; ldconfig
i add cdemu things during boot
Code: Select all
su -c "echo '
# CDEmu : Start cdemu daemon
if [ -x /etc/rc.d/rc.cdemud ]; then
/etc/rc.d/rc.cdemud start
fi
' >> /etc/rc.d/rc.local" root
i add cdemu things during shutdown
Code: Select all
su -c "echo '
# CDEmu : Stop cdemu daemon
if [ -x /etc/rc.d/rc.cdemud ]; then
/etc/rc.d/rc.cdemud stop
fi
' >> /etc/rc.d/rc.local_shutdown" root
i set the right permissions for that scripts
Code: Select all
su -c "chmod a+o+x /etc/rc.d/rc.local ; chmod a+o+x /etc/rc.d/rc.shutdown ; chmod a+o+x /etc/rc.d/rc.cdemud" root
i test activate the module vhba (part of cdemu)
for the kde plasma ot qt desktop env users can use :
Code: Select all
su -c "slpkg -s sbo --rebuild --reinstall kde_cdemu ; ldconfig" root
for the gtk desktop env users can use :
Code: Select all
su -c "slpkg -s sbo --rebuild --reinstall gcdemu ; ldconfig" root
finally create a desktop entry for make the cdemu service works inside the graphical session
Code: Select all
su
mkdir -p /etc/xdg/autostart
touch /etc/xdg/autostart/cdemu-daemon-start.desktop
echo '#!/usr/bin/env xdg-open
[Desktop Entry]
Exec=cdemu-daemon start
GenericName=CDEmu Daemon
Icon=/usr/share/pixmaps/cdemu-client.png
Name=CDEmu Daemon
StartupNotify=true
Terminal=false
Type=Application
X-KDE-SubstituteUID=false' | tee /etc/xdg/autostart/cdemu-daemon-start.desktop
chmod a+o+x /etc/xdg/autostart/cdemu-daemon-start.desktop
restart the entire machine, and almost all working, except the virtualbox 6.1.50 xD