Applicable to:
- SolusVM
Symptoms
VM is booted successfully and the SSH connection is fine but the VNC is showing a blank screen with '/dev/vda1: clean' error. Here is a example image.
Here is the /etc/default/grub output.
# grep GRUB_CMDLINE_LINUX_DEFAULT /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Cause
Splash kernel parameter of the VM is causing the issue.
Resolution
Splash kernel parameter should be removed from /etc/default/grub file from the VM, Here are the instructions.
- Access the VM via SSH
# ssh root@10.0.0.1 -p22
- Edit the /etc/default/grub file using nano editor
# nano /etc/default/grub
-
Change the below entry
GRUB_CMDLINE_LINUX_DEFAULT="splash quiet"
to
GRUB_CMDLINE_LINUX_DEFAULT=""
-
Run this command on the VM.
# update-grub
- Reboot the VM and access the VNC.
Comments
0 comments
Please sign in to leave a comment.