server/linux

ubuntu20.04 VM instanse에서 netplan apply 오류

정유현 2022. 4. 26. 10:33
728x90

OS : Ubuntu20.04 live server

VMware : Workstation 16 Pro

 

인스턴스 생성 후 네트워크 설정을 하고 netplan apply를 진행하면 다음과 같은 이유로 진행이 되지않는다.

blk_update_request: I/O error, dev fd0, sector 0

 

해결 방법 

https://askubuntu.com/questions/719058/blk-update-request-i-o-error-dev-fd0-sector-0

https://unix.stackexchange.com/questions/282845/blk-update-request-i-o-error-dev-fd0-sector-0

Your device doesn't have a floppy drive, but the floppy driver module is installed, so you have /dev/fd0, and many things will try to use it.

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

 

문제의 발생 이유는 다르지만 위와 같은 솔루션으로 해결하였다.

728x90