博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
怎么分辨linux是红帽还是Centos系统
阅读量:6391 次
发布时间:2019-06-23

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

为什么需要分辨呢?因为centos是rhel的衍生版本,虎鼠傻傻你分不清楚!,你也可以使用yum,如果是rhel则报RHN disenable错!,还是用下面的专业些的command来搞吧!

cat /etc/issue

cat /etc/redhat-release

 

Rhel6开启远程桌面报如下错!

could not open default font 'fixed'

解决方法

 

  • yum install libXfont  
  • yum install xorg-x11-xfs  
  • yum install xorg-x11-xfs-utils  
  • yum install xorg-x11-xinit  
  • yum install xorg-x11-xdm  
  • yum install xorg-x11-fonts* 

 

需要安装的组件 tigervnc-server

rpm -ivh http://mirror.centos.org/centos/6/updates/x86_64/Packages/tigervnc-server-module-1.1.0-5.el6_4.1.x86_64.rpm

rpm -ivh http://mirror.centos.org/centos/6/updates/x86_64/Packages/tigervnc-server-1.1.0-5.el6_4.1.x86_64.rpm 
yum install xrdp
编辑 /etc/sysconfig/vncserver  配置vnc用户

 

[cpp]
  1. VNCSERVERS="2:root"  
  2. VNCSERVERARGS[2]="-geometry 1366x768 -nolisten tcp -localhost"  

使用vncpasswd 设置VNC密码

 

 

[cpp]
  1. [root@RHEL6 ~]# vncpasswd   
  2. Password:  
  3. Verify:

vi /root/.vnc/xstartup

在最后一行将twm
KDE则改成startkde
GNOME则改成gnome-session

启动vncserver与xrdp

 

/etc/init.d/vncserver restart

/etc/init.d/xrdp restart

posted on
2013-12-24 09:52 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/ReleasedVersion.html

你可能感兴趣的文章
Linux软件包安装与卸载
查看>>
centos5.x安装sphinx
查看>>
3分钟搭建Ant Design Pro前端开发环境( MyClouds的前端选型)
查看>>
Scala各种用法
查看>>
Linux系统常用命令(二)
查看>>
简单的工厂模式学习
查看>>
温习如何画E-R图
查看>>
eclispe注释模板
查看>>
Thymeleaf教程 (三) 创建一个多语言的首页
查看>>
OSChina 周六乱弹 ——你们猜狗的舌头有多长
查看>>
OSChina 周日乱弹 —— 爱丽丝爱吃京酱肉丝
查看>>
2018.11月微信小程序优质开源项目
查看>>
IOS 未来几年的认知
查看>>
解决中文乱码--加密
查看>>
浅析全民社交创业梦
查看>>
Java操纵MongoDB_1(环境设置)
查看>>
C#字符串操作--获取字符或字符串的位置、数量
查看>>
php - 字符串处理
查看>>
bulk collect 以及ref cursor使用
查看>>
mysql性能优化-慢查询分析、优化索引和配置
查看>>