I have a computer which is running Ubuntu 16.04 x64. The computer has only a dedicated video card which I want to remove due to power saving now.
The problem is that the server won't boot without a graphics card...
I already changed
GRUB_CMDLINE_LINUX_DEFAULT=""
to
GRUB_CMDLINE_LINUX_DEFAULT="text"
but it didn't help anything...
How can I make the server boot without a graphic card?
sudo update-grub
after that change? – George Udosen Apr 04 '17 at 17:40Added
serial --unit=0 --speed=9600 --parity=no --stop=1 terminal --timeout=2 serial
to/boot/grub/menu.lst
.But it didnt help neither...
– cranckstorm Apr 04 '17 at 17:46text
config line... – George Udosen Apr 04 '17 at 17:58text
, thensudo systemctl set-default multi-user.target
to achieve this I will test this now... – George Udosen Apr 04 '17 at 18:09sudo systemctl disable display-manager.service
gives me "No such file or directory" and what you mentioned in the comment above doesn't work either :( – cranckstorm Apr 04 '17 at 18:12/etc/default/grub
to :GRUB_CMDLINE_LINUX_DEFAULT="text" GRUB_CMDLINE_LINUX="text"
, thensudo systemctl set-default multi-user.target
– George Udosen Apr 04 '17 at 18:15systemd[1]: Started Cleanup of Temporary Directories.
and hang until I press the power button to turn off the system.If I put the graphics card back in the system, it boots up just fine. So strange to have a server OS that refuses to boot without a GPU.
– dwightjl Sep 30 '17 at 18:22