如何在启动时启动 lig​​htdm 服务

如何在启动时启动 lig​​htdm 服务

我的系统运行的是 Ubuntu 15.04,我根据 @Bruno Pereira 的回答将默认启动更改为“ text”而不是“ ”quiet splash如何在启动时禁用 X 以便系统以文本模式启动?但是我再次将默认启动项更改为quiet splashupdate-grub但由于 Ubuntu 15.04 使用,systemd我的系统无法启动到图形登录,而是卡在 Ubuntu 徽标屏幕。我必须tty1通过 ++ 进入终端CTRLALT然后在每次登录时F1手动启动 Lightdm 服务sudo service lightdm start

我该如何将我的启动更改为图形登录,即“ quiet splash”?内容sudo gedit /etc/default/grub

# 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="quiet splash"
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX="quiet splash"

# 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=1920x1080

# 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 set-default graphical.target

因为你以前用过sudo systemctl set-default multi-user.target


然后修复/etc/default/grub

这种说法是完全错误的:

GRUB_DEFAULT="quiet splash"

打开配置:

sudo nano /etc/default/grub

并替换条目

GRUB_DEFAULT="quiet splash"

GRUB_DEFAULT=0

添加条目

GRUB_CMDLINE_LINUX="quiet splash"

在那次跑步之后

sudo update-grub

  • GRUB_DEFAULT

    默认菜单项。这可能是一个数字,在这种情况下,它标识生成的菜单中从零开始计数的第 N 个条目,或菜单项的标题,或特殊字符串“已保存”。如果您想将菜单项设置为默认菜单项,使用标题可能会很有用,即使它之前的条目数量可能不定。

  • GRUB_CMDLINE_LINUX

    添加到 Linux 内核菜单项的命令行参数。

  • GRUB_CMDLINE_LINUX_DEFAULT

    除非将“GRUB_DISABLE_RECOVERY”设置为“true”,否则将为每个 Linux 内核生成两个菜单项:一个默认项和一个恢复模式项。此选项列出仅添加到默认菜单项的命令行参数,位于“GRUB_CMDLINE_LINUX”中列出的命令行参数之后。

来源

答案2

这取决于它为什么不作为默认选项启动。我不小心清除了 systemd,所以当我重新安装并启动时,我只看到 TTY 提示符。

首先,您必须启动服务,以便可以进行图形化操作:

sudo start lightdm

进入 GUI 模式后,在终端中输入以重新配置 lightdm:

sudo dpkg-reconfigure lightdm

sudo systemctl set-default graphical.target

现在我们需要更新 grub,以便 lightdm 启动默认服务

init=/lib/systemd/systemd

要默认在 systemd 下启动,请编辑 /etc/default/grub 并更改以下行:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash init=/lib/systemd/systemd"

修改任何与 grub 相关的配置文件(如 /etc/default/grub)后,需要以下命令来使更改生效。

update-grub

你可以在 ubuntu 官方 wiki 中查看所有说明这里,systemd 是一个服务管理员,因此你会发现它功能齐全

相关内容