Hello,
I just installed CentOS Stream 8 in Synology Virtual Machine Manager. To install I used the current CentOS-Stream-8-20230429.0-x86_64-boot.iso. During the install under base environment I selected Server (without GUI), and in the same screen under Additional Software I selected Guest Agents group, which includes qemu-guest-agent package.
After the install in VM's console which I access using the web browser if I move my mouse I see a spam of messages:
kernel: psmouse serio1: VMMouse at isa0060/serio1/input0 lost sync at byte 1
kernel: psmouse serio1: VMMouse at isa0060/serio1/input0 - driver resynced.
The same spam of these messages I also see in /var/log/messages.
To attempt and fix the issue with the same solution which worked for me in CentOS 7, I added a line in /etc/default/grub with MODULE_BLACKLIST=psmouse, then ran grub2-mkconfig -o /boot/grub2.bgrub.cfg, rebooted, but it did not help in my new CentOS Stream 8 install.
cat /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto resume=/dev/mapper/vg01-lv_swap rd.lvm.lv=vg01/lv_root rd.lvm.lv=vg01/lv_swap ipv6.disable=1"
GRUB_DISABLE_RECOVERY="true"
GRUB_ENABLE_BLSCFG=true
MODULE_BLACKLIST=psmouse
Any suggestions / ideas how to get rid of this annoying spam of psmouse messages are greatly appreciated!
Regards
New CentOS Stream 8 install on Synology Virtual Machine Manager
Re: New CentOS Stream 8 install on Synology Virtual Machine Manager
What's the output from cat /proc/cmdline after adding that parameter and regenerating grub.cfg and rebooting?
CentOS 8 died a premature death at the end of 2021 - migrate to Rocky/Alma/OEL/Springdale ASAP.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Re: New CentOS Stream 8 install on Synology Virtual Machine Manager
root# cat /proc/cmdline
BOOT_IMAGE=(hd0,msdos1)/vmlinuz-4.18.0-489.el8.x86_64 root=/dev/mapper/vg01-lv_root ro crashkernel=auto resume=/dev/mapper/vg01-lv_swap rd.lvm.lv=vg01/lv_root rd.lvm.lv=vg01/lv_swap ipv6.disable=1

BOOT_IMAGE=(hd0,msdos1)/vmlinuz-4.18.0-489.el8.x86_64 root=/dev/mapper/vg01-lv_root ro crashkernel=auto resume=/dev/mapper/vg01-lv_swap rd.lvm.lv=vg01/lv_root rd.lvm.lv=vg01/lv_swap ipv6.disable=1

Re: New CentOS Stream 8 install on Synology Virtual Machine Manager
So no mention there of any sort of blacklist so I suspect that the variable you added to /etc/default/grub is either wrong or unused.
I believe the correct way to do this is by adding to the existing string in GRUB_CMDLINE_LINUX= and `man dracut.cmdline` on an el8 system says the way to do it is by using rd.driver.blacklist=<drivername>[,<drivername>,...]
I believe the correct way to do this is by adding to the existing string in GRUB_CMDLINE_LINUX= and `man dracut.cmdline` on an el8 system says the way to do it is by using rd.driver.blacklist=<drivername>[,<drivername>,...]
CentOS 8 died a premature death at the end of 2021 - migrate to Rocky/Alma/OEL/Springdale ASAP.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Re: New CentOS Stream 8 install on Synology Virtual Machine Manager
added rd.driver.blacklist=psmouse, generated config, rebooted. Did not help (
root# cat /proc/cmdline
BOOT_IMAGE=(hd0,msdos1)/vmlinuz-4.18.0-489.el8.x86_64 root=/dev/mapper/vg01-lv_root ro crashkernel=auto resume=/dev/mapper/vg01-lv_swap rd.lvm.lv=vg01/lv_root rd.lvm.lv=vg01/lv_swap rd.driver.blacklist=psmouse
Regards.
root# cat /proc/cmdline
BOOT_IMAGE=(hd0,msdos1)/vmlinuz-4.18.0-489.el8.x86_64 root=/dev/mapper/vg01-lv_root ro crashkernel=auto resume=/dev/mapper/vg01-lv_swap rd.lvm.lv=vg01/lv_root rd.lvm.lv=vg01/lv_swap rd.driver.blacklist=psmouse
Regards.
Re: New CentOS Stream 8 install on Synology Virtual Machine Manager
On el8 (Rocky in my case), psmouse is not a module, it is part of the kernel. You can still blacklist it but it's a more involved method using initcall_blacklist= and then you have to know the name of the entry point of the psmouse module. To find that out you will need to read the source of psmouse to find out what it's module_init routine is called.
On el9 psmouse _is_ a module.
On el9 psmouse _is_ a module.
CentOS 8 died a premature death at the end of 2021 - migrate to Rocky/Alma/OEL/Springdale ASAP.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Re: New CentOS Stream 8 install on Synology Virtual Machine Manager
Most likely initcall_blacklist=psmouse_init
CentOS 8 died a premature death at the end of 2021 - migrate to Rocky/Alma/OEL/Springdale ASAP.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are dead, do not use them.
Use the FAQ Luke