Ubuntu/Debian disable floppy module

If encounter error "print_req_error: I/O error, dev fd0, sector 0" on ubuntu as VMware guest, disable the floppy module.

For Ubuntu:

echo "blacklist floppy" | sudo tee /etc/modprobe.d/blacklist-floppy.confsudo rmmod floppysudo update-initramfs -u

For Debian:

echo "blacklist floppy" | sudo tee /etc/modprobe.d/blacklist-floppy.confsudo rmmod floppysudo dpkg-reconfigure initramfs-tools

Comments