问题描述
我目前正在使用非常老旧的PC设置家庭服务器。它安装了Ubuntu 11.10,但实际上无法处理GUI。我想安装服务器版本的Ubuntu,这只是命令行,但不知道如何安装。我能做什么?
最佳方法
实际上,如果您在运行GUI时遇到问题,则无需安装其他发行版,只需修改启动顺序即可防止图形界面出现并按需从命令行运行。
我现在无法访问系统,但是我相信您需要的脚本将在/etc/init.d
或/boot/grub
目录中找到。也许有人可以在我回家检查之前给您脚本的名称。
我刚发现:Starting Ubuntu without the GUI
I see three ways to do it:
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)
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
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出现。