Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一台装有 Debian8 和 GNOME 的笔记本电脑。我像小型服务器一样使用它进行开发。
有时我需要 GUI,但在很多情况下我只需要命令外壳。我想添加 GRUB 选项以在没有 xserver 和 GDM 的情况下加载。
我怎样才能做到这一点?谢谢!
您可以执行以下操作:
sudo nano /etc/default/grub
更改此行:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
至:
GRUB_CMDLINE_LINUX_DEFAULT="text"
然后更新 grub:
sudo update-grub