Ubuntu 服务器启动时出现黑屏

Ubuntu 服务器启动时出现黑屏

我刚刚按照以下步骤将 ubuntu 桌面 14.04 转换为 ubuntu 服务器:

sudo service lightdm stop

sudo apt-get install tasksel
sudo tasksel remove ubuntu-desktop
sudo tasksel install server
sudo apt-get update
sudo apt-get install linux-server linux-image-server
sudo apt-get purge lightdm
sudo apt-get purge firefox

sudo ifconfig eth0 up   
sudo dhclient eth0

sudo apt-get upgrade

然后我安装了 Sentora。安装完成后我重新启动,屏幕黑了大约一分钟,然后左上角出现了一个下划线,持续了几秒钟,然后终端启动了。我觉得 grub 出了点问题,它仍在尝试启动 lig​​htdm,最终超时并进入终端。有人知道我该如何检查并修复这个问题吗?

答案1

修复我的接口文件解决了这个问题。

我将其设置为

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
     address 192.168.1.34
     netmask 255.255.255.0
     network 192.168.1.1
     broadcast 192.168.1.255
     gateway 192.168.1.1

eth0通过在第一行末尾添加内容,问题已得到解决。

相关内容