先使用putty,用命令行来进入系统
putty{
ssh客户端}
putty.org
下载后使用
连接后可以用
安装桌面:
yum groupinstall "Desktop"
VNC连接:
命令查看是否有安装vnc,下面命令如果没有返回任何内容,说明没安装
rpm -qa|grep tigervnc
安装:(-y)表示安装过程中不用任何确认
yum install tigervnc tigervnc-server -y
1.显示系统已经安装的组件,和可以安装的组件:
#yum grouplist|grep -i "x window"
2.如果系统安装之初采用最小化安装,没有安装xwindow,那么先安装:
#yum groupinstall "X Window System"
tips:安装后会安装NetworkManager服务,此服务会和network冲突,所以如果该服务在运行中需要停止该服务,并设置开机启动项不启动
chkconfig --list 查看开机启动项
不要开机启动:
chkconfig NetworkManager off
关闭服务:
service NetworkManager stop
将vncserver设置成开机启动
chkconfig vncserver on
2,3,4,5处于on状态,说明处于开机启动状态
命令:vncserver
提示输入密码,就可以设置vncserver密码:
当忘记密码可以命令:vncpasswd修改密码
在 /root/.vnc/xstartup 文件中修改vnc的配置
tips:修改xstartup文件,把最后的twm& 删掉 加上 gnome-session &
cd /root/.vnc/
vim xstartup
然后重启vnc
service vncserver restart
shutting down vnc server:[failed] (???)
starting vnc server:no displays configured
设置vncservers文件:
vim /etc/sysconfig/vncservers
添加:
VNCSERVERS="1:root"
VNCSERVERARGS[2]="-geometry 800x600"
然后重启vnc
service vncserver restart
Shutting down VNC server: 1:root [ OK ]
Starting VNC server: 1:root
New 'iZ94s673khtZ:1 (root)' desktop is iZ94s673khtZ:1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/iZ94s673khtZ:1.log
[ OK ]
启动成功
ps -ef |grep vnc
root 9170 1 0 13:44 pts/0 00:00:00 /usr/bin/Xvnc :1 -desktop iZ94s673khtZ:1 (root) -auth /root/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /root/.vnc/passwd -rfbport 5901 -fp catalogue:/etc/X11/fontpath.d -pn
root 9178 1 0 13:44 pts/0 00:00:00 vncconfig -iconic
root 9314 7279 0 13:46 pts/0 00:00:00 grep vnc
可以看到进程
:1是前面的桌面号
查看监听的端口:
netstat -an |more
tcp 0 0 0.0.0.0:5901 0.0.0.0:* LIST
因为vnc默认端口号是5901,可以看到5901处于监听状态
至此,vnc安装配置完成
下载vnc客户端
登录:
120.24.210.x:5901
也可以:
120.24.210.x:1