当前位置: 首页>>技术教程>>正文


如何从Ubuntu桌面切换到Ubuntu服务器?

, ,

问题描述

我目前正在使用非常老旧的PC设置家庭服务器。它安装了Ubuntu 11.10,但实际上无法处理GUI。我想安装服务器版本的Ubuntu,这只是命令行,但不知道如何安装。我能做什么?

最佳方法

实际上,如果您在运行GUI时遇到问题,则无需安装其他发行版,只需修改启动顺序即可防止图形界面出现并按需从命令行运行。

我现在无法访问系统,但是我相信您需要的脚本将在/etc/init.d/boot/grub目录中找到。也许有人可以在我回家检查之前给您脚本的名称。

我刚发现:Starting Ubuntu without the GUI

I see three ways to do it:

  1. Changing the default runlevel

    You can set it at the beginnign of /etc/init/rc-sysinit.conf replace 2 by 3 and reboot. You can enable the graphical interface with telinit 2.(More about runlevels)

  2. Do not launch the graphical interface service on boot

    update-rc.d -f xdm remove 

    Quick and easy. You can re-enable the graphical interface with service xdm start or revert your changes with update-rc.d -f xdm defaults

  3. Remove packages

    apt-get remove --purge x11-common && apt-get autoremove 

    I think it suits best for a computer considered as a server. You can re-enable the graphical interface by reinstalling the packages

还有这个:Possible to install ubuntu-desktop and then boot to no GUI

关键是,如果这是您的主要问题,则可以防止GUI出现。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/9285.html,未经允许,请勿转载。