我想要的是

我想要的是

我想要的是

我想将一个盒子作为(通常)“服务器”(无 GUI)运行,偶尔使用 GUI,因为这样有些事情会更容易。我正在使用 Linux Mint 18 Cinnamon。我想启动到控制台而不是启动mdm,但我希望能够切换回来,因此涉及完全删除的解决方案mdm对我来说效果不佳。

我尝试过的

对于默认启动,我已编辑grub(下面的整个文件)GRUB_CMDLINE_LINUX="text"并运行sudo update-grubmdm仍然启动;然后我尝试设置mdm为手动echo manual | sudo tee /etc/init/mdm.overridemdm仍然启动。

我可以mdm手动停止sudo service mdm stop,这接近我想要的。

我的解决方案有什么问题

我最好的解决方案是像往常一样启动mdm,然后我必须mdm手动停止。我希望机器从reboot或 电源周期正常启动,除非 GUI 根本不启动(除非我告诉它,例如通过编辑grub或在菜单中选择不同的选项grub)。我所说的“正常启动”是指像tomcat启动这样的服务,我仍然可以rsh对机器和/或远程调试它。

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'


GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="text"
GRUB_CMDLINE_LINUX="text"


# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"


# Uncomment to disable graphical terminal (grub-pc only)
GRUB_TERMINAL=console


# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480


# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true


# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"


# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

答案1

sudo systemctl disable mdm  

这实际上并没有“禁用”该服务,它只是阻止它自动启动。

然后如果你想进入你的图形用户界面,你就可以

sudo systemctl start mdm

如果你想默认启动到 gui:

sudo systemctl enable mdm 

对于预系统系统,您需要删除 /etc/rc* 目录中 mdm 的符号链接。

相关内容