在Centos6上最少设置X服务器


13

我正在尝试安装Centos6,但事实证明,我下载的DVD太小了Mb(CentOS-6.0-i386-bin-DVD.iso),无法携带DVD。因此,为了节省时间并且不再下载DVD,我下载了最小文件(CentOS-6.0-x86_64-minimal.iso)并成功进行了设置。

起初,我没有得到那蟒蛇的东西来显示gui进行安装-它仅在第4次重新安装后才显示,所以我认为安装还可以,即使您,我也没有自定义可安装软件包的可能性。好的,安装没有延迟。第一次启动时,它没有显示X服务器,只是命令行中的登录提示。好的,我登录了,然后运行了yum updateyum groupinstall "X Window System" "GNOME Desktop Environment",就像互联网建议的那样。尝试过startx,它只是闪烁并弹出一些错误(EE) SIS(0): Illegal video RAM size (262144K) detected, using BIOS-provided info,所以我从互联网上了解到SIS芯片组正在发生故障-集成gpu出了点问题-我将PCIe放入其中。重新启动,startx并没有什么-它闪烁,突然出现一些消息,然后Witing for X server to shutdownctrl+alt+F7显示闪烁的插入符,仅此而已。这是Xorg.0.log

任何人都可以建议分步教程,需要做些什么,以在最小的Centos6系统上设置GUI并在启动时将其设置为默认值,因此在启动后,将出现X服务器登录屏幕,而不是命令行中的屏幕。

Answers:


13

从我的虚拟主机的知识库中:

If CentOS has already been installed without a graphical interface, 
you can install this with the following commands:

$ yum groupinstall "X Window System" "Desktop" "Desktop Platform"

$ yum install gdm

If you would like this to be the default runlevel, you can edit 
/etc/inittab and set the default level to 5 instead of 3:

$ vi /etc/inittab

Change:
id:3:initdefault:

To:
id:5:initdefault:

这解决了4个小时的头痛。谢谢。
2016年

上面的内容不适用于CentOS7。X在安装后立即崩溃:error setting MTRR (base = 0xe000...
Niklas

0

您可以使用以下命令进行安装:

  1. cd / etc / sysconfig / network-scripts
  2. vi ifcfg-enp0按“ i”插入// NOBOOT =是按esc>:wq 3.reboot
  3. yum -y组安装“ GNOME桌面”“图形管理工具”
  4. ln -sf /lib/systemd/system/runlevel5.target/etc/systemd/system/defualt.target
  5. 再次重启!
  6. yum groupinstall“通用桌面” -y或yum groupinstall“桌面”“桌面平台”“ X窗口系统”“字体”“图形管理工具”“ Internet浏览器” -y

  7. yum groupinstall“ Office Suite和生产力” -y

  8. yum groupinstall“图形创建工具” -y
  9. yum groupinstall kde-desktop -y
  10. startx或init 5
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.