博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux xdmcp报错解决
阅读量:7114 次
发布时间:2019-06-28

本文共 1441 字,大约阅读时间需要 4 分钟。

 某台服务器频繁报出如下错误,经调查xwindows被改动,导致X窗口远程服务不能启动.报错的图示如下:

解决此报错的方法如下:

一. 调整 grub.conf 和xorg.conf 两个文件
1) Grub.conf 文件调整一处
/boot/grub/grub.conf
title Red Hat Enterprise Linux Server (2.6.18-194.el5)
root (hd0,0)
kernel /vmlinuz-2.6.18-194.el5 ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.18-194.el5.img
*********************************************************
#调整方法:去掉rhgb quiet 参数,添加nofb 参数,更改为
kernel /vmlinuz-2.6.18-194.el5 ro root=LABEL=/ nofb
*********************************************************
2) Xorg.conf 文件调整两处。
/etc/X11/xorg.conf
Section "Device"
Identifier "Videocard0"
Driver "mga"
EndSection
*********************************************************
#调整方法:将mga 显卡驱动更改为vesa,并添加参数ShadowFB。
Section "Device"
Identifier "Videocard0"
Driver "vesa"
Option "ShadowFB" "0"
EndSection
*********************************************************
需要调整的第二处
/etc/X11/xorg.conf
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
*********************************************************
#调整方法:添加参数NoMTRR。
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
Option "NoMTRR"
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
*********************************************************
二. 验证调整结果
配置文件调整完毕之后,重启服务器使配置生效,然后登录系统使用命令
#cat /var/log/Xorg.0.log | grep combining 验证,执行命令之后没有输出
wirte-combining 任何的成功和失败,表示配置成功。
 

转载地址:http://awghl.baihongyu.com/

你可能感兴趣的文章
java基础学习_常用类03_StringBuffer类、数组高级和Arrays类、Integer类和Character类_day13总结...
查看>>
Asp.net MVC Session过期异常的处理
查看>>
python ThreadPoolExecutor线程池使用
查看>>
IPTABLES 规则(Rules)
查看>>
关于URL编码
查看>>
深度学习的可解释性研究(一):让模型「说人话」
查看>>
QT5提示can not find -lGL的解决方法
查看>>
Silverlight/Windows8/WPF/WP7/HTML5周学习导读(9月17日-9月23日)
查看>>
Tap-Ahead:让移动搜索更加便捷的解决之道
查看>>
Windows Server2016 Hyper-v Cluster部署
查看>>
juniper路由器配置
查看>>
jQuery一点一滴系列教程(第三点)
查看>>
ARP解决方法/工具 真假ARP防范区别方法 ARP终极解决方案
查看>>
系统数据权限的实现方案
查看>>
华为vlan划分,单臂路由以及静态路由
查看>>
UCD 2010百度工作坊
查看>>
ssh2免密码登录
查看>>
4_move_find_into_model
查看>>
MySQL · 捉虫动态 · UK 包含 NULL 值备库延迟分析
查看>>
windows server 2012 standard Evaluation 安装试用
查看>>