GUI 在重新启动时启用 Ubuntu 18 post 禁用

GUI enables on reboot Ubuntu 18 post disabling

我尝试使用以下命令在 Virtualbox 上的 Ubuntu 18.04.5 全新安装上禁用 UI。

运行 下面命令 sudo vi /etc/default/grub`

删除了以下行的字样:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

然后 运行 依次执行以下命令,

sudo update-grub
sudo systemctl stop gdm3.service gdm.service
sudo systemctl disable gdm3.service gdm.service

但是再次重启后,GUI 出现了。知道我可能遗漏了什么吗?

NOTE: I also tried setting runlevels multi-user.target etc. But none are working

您是否将所需目标设置为默认目标?

运行 这个命令: sudo systemctl get-default

将其指向 CLI 界面,您应该得到 multi-user.target

如果没有,将其设置为默认值并重新启动:sudo systemctl set-default multi-user.target